mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 13:43:10 +00:00
0d5aa45c20
* update .gitignore * #906 change all python execfile() to exec(open().read())
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
import os
|
|
|
|
exec(open("Modified_data/realtime.py").read())
|
|
#exec(open("Modified_data/Satellite.dr").read())
|
|
|
|
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 18)
|
|
|
|
scene_app_path = '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)
|