Skip to content

Commit 554a294

Browse files
authored
Merge pull request #55 from AUAS-Pulsar/dedisp_docs
Changes
2 parents 5f08b29 + 7773aa6 commit 554a294

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

docs/dedispersion.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The signal is spread over a wide frequency range.
1010
- If space was an empty vacuum, all the signals would
1111
travel at the same speed, but due to free electrons
1212
different frequencies travel at slightly different speeds
13-
(dispersion).
13+
(dispersion), this can be corrected by performing dedispersion.
1414

1515
## 7.2 Dedisperse
1616

@@ -20,7 +20,9 @@ This method performs dedispersion on the filterbank data.
2020

2121
| Parameters | Description |
2222
|---|---|
23-
| Samples | Array or sequence containing the data to be plotted. |
23+
| Samples | Array or sequence containing the intensities to be dedispersed. |
24+
| highest_x | Specifies the amount of intensities that are used for estimating the minimum pulsar intensity |
25+
| max_delay | Specifies the maximum allowed amount of samples between the currently considered pulsar signal and the next pulsar signal |
2426
| DM | Dispersion measure (cm<sup>-3</sup> pc) |
2527

2628
### 7.2.2 Returns
@@ -37,7 +39,9 @@ This method finds the dispersion measure.
3739

3840
| Parameters | Description |
3941
|---|---|
40-
| Samples | 1-D array or sequence. Array or sequence containing the data to be plotted. |
42+
| Samples | Array or sequence containing the intensities to be dedispersed. |
43+
| pulsar_intensity | Estimation of the minimum intensity for an intensity to be considered a pulsar |
44+
| max_delay | Specifies the maximum allowed amount of samples between the currently considered pulsar signal and the next pulsar signal |
4145

4246
### 7.3.2 Returns
4347

@@ -47,39 +51,40 @@ This method finds the dispersion measure.
4751

4852
## 7.4 find_line
4953

50-
This method finds a line starting from the sample index given in the parameters. This will stop if there isn't a intensity within the max_delay higher than the average_intensity.
54+
This method will attempt to find a continuous signal starting from the sample index given in the parameters. This method will stop if there isn't an intensity found within the max_delay higher than the pulsar_intensity.
5155

5256
### 7.4.1 Parameters
5357

5458
| Parameters | Description |
5559
|---|---|
56-
| Samples | 1-D array or sequence. Array or sequence containing the data to be plotted. |
57-
| start_sample_index | The start sample index |
58-
| max_delay | The max delay of the recieved signal |
59-
| average_intensity | The average intensity |
60+
| Samples | Array or sequence containing the intensities to be dedispered. |
61+
| start_sample_index | The index from which this method will continue to attempt and find a continuous pulsar signal |
62+
| max_delay | Specifies the maximum allowed amount of samples between the currently considered pulsar signal and the next pulsar signal |
63+
| pulsar_intensity | Estimation of the minimum intensity for an intensity to be considered a pulsar |
6064

6165
### 7.4.2 Returns
6266

6367
| Variable | Description |
6468
|---|---|
65-
| start_sample_index | The first frequency |
66-
| previous_sample_index | The higher frequency |
69+
| start_sample_index | The first frequency of the continuous signal found |
70+
| previous_index | The last frequency of the continuous signal found |
6771

6872
## 7.5 find_estimation_intensity
6973

70-
This method finds the average intensity for top x intensities.
74+
This method finds the average intensity for the highest x intensities.
7175
The `average_intensity` is considered a requirement for intensities to be considered a pulsar.
7276

7377
### 7.5.1 Parameters
7478

7579
| Parameters | Description |
7680
|---|---|
77-
| Samples | Array or sequence containing the data to be plotted. |
81+
| Samples | Array or sequence containing the intensities to be dedispersed. |
82+
| max_delay | Specifies the maximum allowed amount of samples between the currently considered pulsar signal and the next pulsar signal |
7883

7984
### 7.5.2 Returns
8085

8186
| Variable | Description |
8287
|---|---|
83-
| average_intensity | The avarage intesity |
88+
| average_intensity | Estimation of the minimum intensity for an intensity to be considered a pulsar |
8489

8590
[Back to table of contents](../README.md)

0 commit comments

Comments
 (0)