Skip to content
Snippets Groups Projects
Commit d5a176a4 authored by Jean-Baptiste Bayle's avatar Jean-Baptiste Bayle
Browse files

Add initial phase for TDIR assistance tone

parent a21dc48f
No related branches found
No related tags found
1 merge request!65Implement assistance tone for ranging
...@@ -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]
) )
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment