Skip to content

Commit f1765d6

Browse files
committed
Update some default settings
1 parent 4323c25 commit f1765d6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

sim-ops-lib/so/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class Scenario:
5555
begin: str = ''
5656
end: str = ''
5757
tle: str = ''
58-
time_step: int = 5
58+
time_step: int = 1
5959
running: bool = False
6060
ground_station: GroundStation = None
6161
gs_initial_state: Any = None

sim-ops-lib/so/ground_station.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class GroundStationState:
3030
sweep_done: bool = False
3131
data_proxy: str = 'ESOC-1'
3232
mode: TTCModes = TTCModes.SHBR
33-
power_ul: float = 30.0
33+
power_ul: float = 50.0
3434
position: list[float] = field(default_factory=list)
3535

3636
# book-keeping

sim-ops-lib/so/spacecraft.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ class SpacecraftState:
5454
pl_gps_status: Status = Status.off
5555
pl_gps_pos: list[Status] = field(default_factory=lambda: [0.0, 0.0, 0.0])
5656
pl_camera_status: Status = Status.off
57-
pl_camera_config: str = 'VNIR'
57+
pl_camera_config: str = 'LE'
5858
pl_sdr_status: Status = Status.off
59-
pl_sdr_config: str = 'IoT'
59+
pl_sdr_config: str = 'BCN'
6060

6161
# book-keeping
6262
gs_carrier_ul = Status.off
@@ -335,9 +335,9 @@ def _update_memory(self, _state: SpacecraftState, gs_state, ts: float):
335335
if _state.dhs_mem_dump_enabled is True:
336336
_mod = 0.1
337337
if _state.ttc_mode == TTCModes.XLBR:
338-
_mod = 0.2
338+
_mod = 1.1
339339
if _state.ttc_mode == TTCModes.XHBR:
340-
_mod = 0.4
340+
_mod = 1.8
341341
_mod -= 0.0001 # memory fills with basic TM
342342
if _state.pl_camera_status == Status.on:
343343
_mod -= 0.001 # memory fills with Camera data

0 commit comments

Comments
 (0)