... | ... | @@ -132,11 +132,33 @@ graph TD |
|
|
graph TD
|
|
|
PSD1[PSD1]-->CalcDeltaSigma(Compute delta sigma cut)
|
|
|
PSD2[PSD2]-->CalcDeltaSigma
|
|
|
CSD[CSD]-->CalcDeltaSigmaCut(Compute Y of f,t)
|
|
|
CSD[CSD]-->CalcDeltaSigmaCut
|
|
|
ORF(ORF)-->CalcDeltaSigmaCut
|
|
|
CalcDeltaSigmaCut-->DeltaSigmaCut[Delta Sigma Cut]
|
|
|
style CalcDeltaSigmaCut fill:#ffb,stroke:#bbb
|
|
|
```
|
|
|
We also want this module to
|
|
|
* Construct a notch list
|
|
|
* Verify notch list was applied correctly
|
|
|
* Be flexible so that we can implement other kinds of cuts
|
|
|
|
|
|
|
|
|
### Simulate data
|
|
|
|
|
|
```mermaid
|
|
|
graph TD
|
|
|
SignalParams((Signal Parameters))-->SimulateData(Simulate data)
|
|
|
NoiseParams((Noise Parameters))-->SimulateData(Simulate data)
|
|
|
SimulateData-->[Simulated data]
|
|
|
style SimulateData fill:#ffb,stroke:#bbb
|
|
|
```
|
|
|
|
|
|
### Statistical checks
|
|
|
|
|
|
```mermaid
|
|
|
graph TD
|
|
|
YFT[Y(f,t)]-->StatisticalChecks(Statistical Checks)
|
|
|
sigmaFT[sigmaFT]-->StatisticalChecks(Statistical Checks)
|
|
|
StatisticalChecks-->Web[Web page with results]
|
|
|
style StatisticalChecks fill:#ffb,stroke:#bbb
|
|
|
``` |
|
|
\ No newline at end of file |