You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dedispersion.md
+18-13Lines changed: 18 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The signal is spread over a wide frequency range.
10
10
- If space was an empty vacuum, all the signals would
11
11
travel at the same speed, but due to free electrons
12
12
different frequencies travel at slightly different speeds
13
-
(dispersion).
13
+
(dispersion), this can be corrected by performing dedispersion.
14
14
15
15
## 7.2 Dedisperse
16
16
@@ -20,7 +20,9 @@ This method performs dedispersion on the filterbank data.
20
20
21
21
| Parameters | Description |
22
22
|---|---|
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 |
24
26
| DM | Dispersion measure (cm<sup>-3</sup> pc) |
25
27
26
28
### 7.2.2 Returns
@@ -37,7 +39,9 @@ This method finds the dispersion measure.
37
39
38
40
| Parameters | Description |
39
41
|---|---|
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 |
41
45
42
46
### 7.3.2 Returns
43
47
@@ -47,39 +51,40 @@ This method finds the dispersion measure.
47
51
48
52
## 7.4 find_line
49
53
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.
51
55
52
56
### 7.4.1 Parameters
53
57
54
58
| Parameters | Description |
55
59
|---|---|
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|
60
64
61
65
### 7.4.2 Returns
62
66
63
67
| Variable | Description |
64
68
|---|---|
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|
67
71
68
72
## 7.5 find_estimation_intensity
69
73
70
-
This method finds the average intensity for top x intensities.
74
+
This method finds the average intensity for the highest x intensities.
71
75
The `average_intensity` is considered a requirement for intensities to be considered a pulsar.
72
76
73
77
### 7.5.1 Parameters
74
78
75
79
| Parameters | Description |
76
80
|---|---|
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 |
78
83
79
84
### 7.5.2 Returns
80
85
81
86
| Variable | Description |
82
87
|---|---|
83
-
| average_intensity |The avarage intesity|
88
+
| average_intensity |Estimation of the minimum intensity for an intensity to be considered a pulsar|
0 commit comments