Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
LISA Instrument
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LISA Simulation
LISA Instrument
Commits
3ad3da16
Commit
3ad3da16
authored
4 years ago
by
Jean-Baptiste Bayle
Browse files
Options
Downloads
Plain Diff
Merge branch '12-compute-total-frequency-before-filtering' into 'master'
Resolve "Compute total frequency before filtering" Closes
#12
See merge request
!14
parents
7e7c807a
97328cbe
No related branches found
No related tags found
1 merge request
!14
Resolve "Compute total frequency before filtering"
Pipeline
#106573
passed
4 years ago
Stage: test
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lisainstrument/instrument.py
+38
-27
38 additions, 27 deletions
lisainstrument/instrument.py
with
38 additions
and
27 deletions
lisainstrument/instrument.py
+
38
−
27
View file @
3ad3da16
...
...
@@ -688,14 +688,41 @@ class Instrument:
/
(
1
+
self
.
clock_noise_offsets
[
mosa
[
0
]])
**
2
,
mosa
[
0
])
)
## Total frequencies
logging
.
info
(
"
Computing inter-spacecraft beatnote total frequencies
"
)
self
.
the_isc_carriers
=
ForEachMOSA
(
lambda
mosa
:
self
.
the_isc_carrier_offsets
[
mosa
]
+
self
.
the_isc_carrier_fluctuations
[
mosa
]
)
self
.
the_isc_usbs
=
ForEachMOSA
(
lambda
mosa
:
self
.
the_isc_usb_offsets
[
mosa
]
+
self
.
the_isc_usb_fluctuations
[
mosa
]
)
logging
.
info
(
"
Computing test-mass beatnote total frequencies
"
)
self
.
the_tm_carriers
=
ForEachMOSA
(
lambda
mosa
:
self
.
the_tm_carrier_offsets
[
mosa
]
+
self
.
the_tm_carrier_fluctuations
[
mosa
]
)
self
.
the_tm_usbs
=
ForEachMOSA
(
lambda
mosa
:
self
.
the_tm_usb_offsets
[
mosa
]
+
self
.
the_tm_usb_fluctuations
[
mosa
]
)
logging
.
info
(
"
Computing reference beatnote total frequencies
"
)
self
.
the_ref_carriers
=
ForEachMOSA
(
lambda
mosa
:
self
.
the_ref_carrier_offsets
[
mosa
]
+
self
.
the_ref_carrier_fluctuations
[
mosa
]
)
self
.
the_ref_usbs
=
ForEachMOSA
(
lambda
mosa
:
self
.
the_ref_usb_offsets
[
mosa
]
+
self
.
the_ref_usb_fluctuations
[
mosa
]
)
## Antialiasing filtering
logging
.
info
(
"
Filtering inter-spacecraft beatnotes
"
)
self
.
filtered_isc_carrier_offsets
=
self
.
the_isc_carrier_offsets
.
transformed
(
self
.
aafilter
)
self
.
filtered_isc_carrier_fluctuations
=
self
.
the_isc_carrier_fluctuations
.
transformed
(
self
.
aafilter
)
self
.
filtered_isc_carriers
=
self
.
the_isc_carriers
.
transformed
(
self
.
aafilter
)
self
.
filtered_isc_usb_offsets
=
self
.
the_isc_usb_offsets
.
transformed
(
self
.
aafilter
)
self
.
filtered_isc_usb_fluctuations
=
self
.
the_isc_usb_fluctuations
.
transformed
(
self
.
aafilter
)
self
.
filtered_isc_usbs
=
self
.
the_isc_usbs
.
transformed
(
self
.
aafilter
)
logging
.
info
(
"
Filtering measured pseudo-ranges
"
)
self
.
filtered_mprs
=
self
.
the_mprs
.
transformed
(
self
.
aafilter
)
...
...
@@ -703,22 +730,28 @@ class Instrument:
logging
.
info
(
"
Filtering test-mass beatnotes
"
)
self
.
filtered_tm_carrier_offsets
=
self
.
the_tm_carrier_offsets
.
transformed
(
self
.
aafilter
)
self
.
filtered_tm_carrier_fluctuations
=
self
.
the_tm_carrier_fluctuations
.
transformed
(
self
.
aafilter
)
self
.
filtered_tm_carriers
=
self
.
the_tm_carriers
.
transformed
(
self
.
aafilter
)
self
.
filtered_tm_usb_offsets
=
self
.
the_tm_usb_offsets
.
transformed
(
self
.
aafilter
)
self
.
filtered_tm_usb_fluctuations
=
self
.
the_tm_usb_fluctuations
.
transformed
(
self
.
aafilter
)
self
.
filtered_tm_usbs
=
self
.
the_tm_usbs
.
transformed
(
self
.
aafilter
)
logging
.
info
(
"
Filtering reference beatnotes
"
)
self
.
filtered_ref_carrier_offsets
=
self
.
the_ref_carrier_offsets
.
transformed
(
self
.
aafilter
)
self
.
filtered_ref_carrier_fluctuations
=
self
.
the_ref_carrier_fluctuations
.
transformed
(
self
.
aafilter
)
self
.
filtered_ref_carriers
=
self
.
the_ref_carriers
.
transformed
(
self
.
aafilter
)
self
.
filtered_ref_usb_offsets
=
self
.
the_ref_usb_offsets
.
transformed
(
self
.
aafilter
)
self
.
filtered_ref_usb_fluctuations
=
self
.
the_ref_usb_fluctuations
.
transformed
(
self
.
aafilter
)
self
.
filtered_ref_usbs
=
self
.
the_ref_usbs
.
transformed
(
self
.
aafilter
)
## Downsampling filtering
logging
.
info
(
"
Downsampling inter-spacecraft beatnotes
"
)
self
.
isc_carrier_offsets
=
self
.
filtered_isc_carrier_offsets
.
transformed
(
self
.
downsampled
)
self
.
isc_carrier_fluctuations
=
self
.
filtered_isc_carrier_fluctuations
.
transformed
(
self
.
downsampled
)
self
.
isc_carriers
=
self
.
filtered_isc_carriers
.
transformed
(
self
.
downsampled
)
self
.
isc_usb_offsets
=
self
.
filtered_isc_usb_offsets
.
transformed
(
self
.
downsampled
)
self
.
isc_usb_fluctuations
=
self
.
filtered_isc_usb_fluctuations
.
transformed
(
self
.
downsampled
)
self
.
isc_usbs
=
self
.
filtered_isc_usbs
.
transformed
(
self
.
downsampled
)
logging
.
info
(
"
Filtering and downsampling measured pseudo-ranges
"
)
self
.
mprs
=
self
.
filtered_mprs
.
transformed
(
self
.
downsampled
)
...
...
@@ -726,40 +759,18 @@ class Instrument:
logging
.
info
(
"
Filtering and downsampling test-mass beatnotes
"
)
self
.
tm_carrier_offsets
=
self
.
filtered_tm_carrier_offsets
.
transformed
(
self
.
downsampled
)
self
.
tm_carrier_fluctuations
=
self
.
filtered_tm_carrier_fluctuations
.
transformed
(
self
.
downsampled
)
self
.
tm_carriers
=
self
.
filtered_tm_carriers
.
transformed
(
self
.
downsampled
)
self
.
tm_usb_offsets
=
self
.
filtered_tm_usb_offsets
.
transformed
(
self
.
downsampled
)
self
.
tm_usb_fluctuations
=
self
.
filtered_tm_usb_fluctuations
.
transformed
(
self
.
downsampled
)
self
.
tm_usbs
=
self
.
filtered_tm_usbs
.
transformed
(
self
.
downsampled
)
logging
.
info
(
"
Filtering and downsampling reference beatnotes
"
)
self
.
ref_carrier_offsets
=
self
.
filtered_ref_carrier_offsets
.
transformed
(
self
.
downsampled
)
self
.
ref_carrier_fluctuations
=
self
.
filtered_ref_carrier_fluctuations
.
transformed
(
self
.
downsampled
)
self
.
ref_carriers
=
self
.
filtered_ref_carriers
.
transformed
(
self
.
downsampled
)
self
.
ref_usb_offsets
=
self
.
filtered_ref_usb_offsets
.
transformed
(
self
.
downsampled
)
self
.
ref_usb_fluctuations
=
self
.
filtered_ref_usb_fluctuations
.
transformed
(
self
.
downsampled
)
## Total frequencies
logging
.
info
(
"
Computing inter-spacecraft beatnote total frequencies
"
)
self
.
isc_carriers
=
ForEachMOSA
(
lambda
mosa
:
self
.
isc_carrier_offsets
[
mosa
]
+
self
.
isc_carrier_fluctuations
[
mosa
]
)
self
.
isc_usbs
=
ForEachMOSA
(
lambda
mosa
:
self
.
isc_usb_offsets
[
mosa
]
+
self
.
isc_usb_fluctuations
[
mosa
]
)
logging
.
info
(
"
Computing test-mass beatnote total frequencies
"
)
self
.
tm_carriers
=
ForEachMOSA
(
lambda
mosa
:
self
.
tm_carrier_offsets
[
mosa
]
+
self
.
tm_carrier_fluctuations
[
mosa
]
)
self
.
tm_usbs
=
ForEachMOSA
(
lambda
mosa
:
self
.
tm_usb_offsets
[
mosa
]
+
self
.
tm_usb_fluctuations
[
mosa
]
)
logging
.
info
(
"
Computing reference beatnote total frequencies
"
)
self
.
ref_carriers
=
ForEachMOSA
(
lambda
mosa
:
self
.
ref_carrier_offsets
[
mosa
]
+
self
.
ref_carrier_fluctuations
[
mosa
]
)
self
.
ref_usbs
=
ForEachMOSA
(
lambda
mosa
:
self
.
ref_usb_offsets
[
mosa
]
+
self
.
ref_usb_fluctuations
[
mosa
]
)
self
.
ref_usbs
=
self
.
filtered_ref_usbs
.
transformed
(
self
.
downsampled
)
## Closing simulation
logging
.
info
(
"
Simulation complete
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment