trick/trick_sims/SIM_sat2d/RUN_test/input.py
Scott Fennell 0d5aa45c20
Python3 exec open (#907)
* update .gitignore

* #906 change all python execfile() to exec(open().read())
2019-11-14 13:35:57 -06:00

27 lines
925 B
Python

exec(open("Modified_data/realtime.py").read())
exec(open("Modified_data/satellite.dr").read())
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 6)
#==========================================
# Start the Satellite Graphics Client
#==========================================
varServerPort = trick.var_server_get_port();
SatDisplay_path = "models/graphics/dist/SatDisplay.jar"
if (os.path.isfile(SatDisplay_path)) :
SatDisplay_cmd = "java -jar " \
+ SatDisplay_path \
+ " " + str(varServerPort) + " &" ;
print(SatDisplay_cmd)
os.system( SatDisplay_cmd);
else :
print('==================================================================================')
print('SatDisplay needs to be built. Please \"cd\" into ../models/graphics and type \"make\".')
print('==================================================================================')
trick.stop(5400);