mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
0d5aa45c20
* update .gitignore * #906 change all python execfile() to exec(open().read())
24 lines
867 B
Python
24 lines
867 B
Python
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
|
|
exec(open("Modified_data/realtime.py").read())
|
|
|
|
dyn.msd.b = 4*(2**(0.5)) - 1/2
|
|
|
|
#==========================================
|
|
# Start the display VarServer Client
|
|
#==========================================
|
|
varServerPort = trick.var_server_get_port();
|
|
MsdGui_path = "models/graphics/dist/MsdGui.jar"
|
|
|
|
if (os.path.isfile(MsdGui_path)) :
|
|
MsdGui_cmd = "java -jar " \
|
|
+ MsdGui_path \
|
|
+ " " + str(varServerPort) + " &" ;
|
|
print(MsdGui_cmd)
|
|
os.system( MsdGui_cmd);
|
|
else :
|
|
print('==================================================================================')
|
|
print('MsdGui needs to be built. Please \"cd\" into models/Graphics and type \"make\".')
|
|
print('==================================================================================')
|
|
|
|
trick.stop(300.0)
|