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
d5a176a4
Commit
d5a176a4
authored
3 years ago
by
Jean-Baptiste Bayle
Browse files
Options
Downloads
Patches
Plain Diff
Add initial phase for TDIR assistance tone
parent
a21dc48f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!65
Implement assistance tone for ranging
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lisainstrument/instrument.py
+7
-3
7 additions, 3 deletions
lisainstrument/instrument.py
with
7 additions
and
3 deletions
lisainstrument/instrument.py
+
7
−
3
View file @
d5a176a4
...
@@ -112,7 +112,8 @@ class Instrument:
...
@@ -112,7 +112,8 @@ class Instrument:
on each MOSA [s/sqrt(Hz)], or
'
default
'
for a default set of levels with a factor
on each MOSA [s/sqrt(Hz)], or
'
default
'
for a default set of levels with a factor
10 higher on right-sided MOSAs to account for the frequency distribution system
10 higher on right-sided MOSAs to account for the frequency distribution system
modulation_freqs: dictionary of modulation frequencies [Hz], or
'
default
'
modulation_freqs: dictionary of modulation frequencies [Hz], or
'
default
'
tdir_tone: tuple (amplitude [Hz], frequency [Hz]) for TDIR assistance tone, or None
tdir_tone: 3-tuple (amplitude [Hz], frequency [Hz], initial phase [rad]) of dictionaries
for parameters of TDIR assistance tone, or None
clock_asds: dictionary of clock noise amplitude spectral densities
clock_asds: dictionary of clock noise amplitude spectral densities
clock_offsets: dictionary of clock offsets
clock_offsets: dictionary of clock offsets
clock_freqoffsets: dictionary of clock frequency offsets [s^-1], or
'
default
'
clock_freqoffsets: dictionary of clock frequency offsets [s^-1], or
'
default
'
...
@@ -200,11 +201,13 @@ class Instrument:
...
@@ -200,11 +201,13 @@ class Instrument:
if
tdir_tone
is
not
None
:
if
tdir_tone
is
not
None
:
self
.
tdir_tone_amplitudes
=
ForEachMOSA
(
tdir_tone
[
0
])
self
.
tdir_tone_amplitudes
=
ForEachMOSA
(
tdir_tone
[
0
])
self
.
tdir_tone_frequencies
=
ForEachMOSA
(
tdir_tone
[
1
])
self
.
tdir_tone_frequencies
=
ForEachMOSA
(
tdir_tone
[
1
])
logger
.
debug
(
"
Using assistance tone for TDIR (amplitude=%s, frequency=%s)
"
,
self
.
tdir_tone_initial_phases
=
ForEachMOSA
(
tdir_tone
[
2
])
self
.
tdir_tone_amplitudes
,
self
.
tdir_tone_frequencies
)
logger
.
debug
(
"
Using assistance tone for TDIR (amplitude=%s, frequency=%s, initial phase=%s)
"
,
self
.
tdir_tone_amplitudes
,
self
.
tdir_tone_frequencies
,
self
.
tdir_tone_initial_phases
)
else
:
else
:
self
.
tdir_tone_amplitudes
=
ForEachMOSA
(
0
)
self
.
tdir_tone_amplitudes
=
ForEachMOSA
(
0
)
self
.
tdir_tone_frequencies
=
ForEachMOSA
(
0
)
self
.
tdir_tone_frequencies
=
ForEachMOSA
(
0
)
self
.
tdir_tone_initial_phases
=
ForEachMOSA
(
0
)
# Clocks
# Clocks
self
.
clock_asds
=
ForEachSC
(
clock_asds
)
self
.
clock_asds
=
ForEachSC
(
clock_asds
)
...
@@ -596,6 +599,7 @@ class Instrument:
...
@@ -596,6 +599,7 @@ class Instrument:
else
self
.
tdir_tone_amplitudes
[
mosa
]
*
numpy
.
sin
(
else
self
.
tdir_tone_amplitudes
[
mosa
]
*
numpy
.
sin
(
2
*
numpy
.
pi
*
self
.
tdir_tone_frequencies
[
mosa
]
2
*
numpy
.
pi
*
self
.
tdir_tone_frequencies
[
mosa
]
*
(
self
.
physics_t
+
self
.
local_timer_deviations
[
mosa
[
0
]])
*
(
self
.
physics_t
+
self
.
local_timer_deviations
[
mosa
[
0
]])
+
self
.
tdir_tone_initial_phases
[
mosa
]
)
)
)
)
...
...
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