From 52aa9b278a4cc4dd9e9a47f75ee45bc9265168ca Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Bayle <j2b.bayle@gmail.com>
Date: Mon, 16 May 2022 19:33:38 +0200
Subject: [PATCH] Add clock jitter noise to TCB timer deviations

---
 lisainstrument/instrument.py | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/lisainstrument/instrument.py b/lisainstrument/instrument.py
index a7ab46f..e566590 100755
--- a/lisainstrument/instrument.py
+++ b/lisainstrument/instrument.py
@@ -808,12 +808,9 @@ class Instrument:
         ## Timer deviations from TCB
 
         self.tcb_timer_deviations = \
-            self.clock_offsets + \
-            self.clock_freqoffsets * self.telemetry_t + \
-            self.clock_freqlindrifts * self.telemetry_t**2 / 2 + \
-            self.clock_freqquaddrifts * self.telemetry_t**3 / 3 + \
-            self.tps_proper_time_deviations + \
-            self.tcb_sync_noises
+            self.local_timer_deviations \
+            + self.tps_proper_time_deviations \
+            + self.tcb_sync_noises
 
         ## TDIR tone
 
-- 
GitLab