mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 06:03:10 +00:00
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
import os
|
|
|
|
execfile("Modified_data/realtime.py")
|
|
#execfile("Modified_data/Satellite.dr")
|
|
|
|
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 18)
|
|
|
|
scene_app_path = os.environ['TRICK_HOME'] + '/trick_models/Satellite/graphics/Scene'
|
|
if os.path.exists(scene_app_path):
|
|
dyn.sat_graph_comm.syscmd = scene_app_path + ' &'
|
|
else:
|
|
dyn.sat_graph_comm.syscmd = '';
|
|
sys.stderr.write(scene_app_path + ' not found. It probably needs to be complied.\n')
|
|
sys.exit(1)
|
|
|
|
# Fire Thrusters at the given times.
|
|
read = 10
|
|
trick.add_read(read,"""dyn.satellite.thruster_T1.on = True""")
|
|
|
|
read = 20
|
|
trick.add_read(read,"""dyn.satellite.thruster_T1.on = False""")
|
|
trick.add_read(read,"""dyn.satellite.thruster_T3.on = True""")
|
|
|
|
read = 30
|
|
trick.add_read(read,"""dyn.satellite.thruster_T3.on = False""")
|
|
|
|
read = 50
|
|
trick.add_read(read,"""dyn.satellite.thruster_T3.on = True""")
|
|
|
|
read = 60
|
|
trick.add_read(read,"""dyn.satellite.thruster_T3.on = False""")
|
|
trick.add_read(read,"""dyn.satellite.thruster_T1.on = True""")
|
|
|
|
read = 70
|
|
trick.add_read(read,"""dyn.satellite.thruster_T1.on = False""")
|
|
|
|
trick.stop(5400)
|