From 2b8825827eeb7c5a6e08e10df1d1844bb1924df4 Mon Sep 17 00:00:00 2001 From: Sai Lakhan Ekal <sai.lakhan.ekal@desy.de> Date: Tue, 9 Aug 2022 17:29:37 +0200 Subject: [PATCH] Added simulated magnitude and simulated phase in SimulateState --- Python_script/shared_simulated_state.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python_script/shared_simulated_state.py b/Python_script/shared_simulated_state.py index db0a405..1b5daf5 100644 --- a/Python_script/shared_simulated_state.py +++ b/Python_script/shared_simulated_state.py @@ -10,6 +10,8 @@ def get_simulated_state(): class SimulatedState: def __init__(self): + self.simulated_magnitude = 0.14 + self.simulated_phase = 7.2 self.simulated_time = 0 self.simulated_temperature = 25 self.simulated_humidity = 30 -- GitLab