mirror of
https://github.com/nasa/trick.git
synced 2024-12-26 08:11:07 +00:00
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
import math
|
|
exec(open("Modified_data/realtime.py").read())
|
|
|
|
crewModule.dyn.position[0] = 0.0;
|
|
crewModule.dyn.position[1] = 0.0;
|
|
crewModule.dyn.position[2] = 3.0;
|
|
|
|
crewModule.dyn.mass_vehicle = 9300.0;
|
|
# crewModule.dyn.mass_vehicle = 20000.0;
|
|
|
|
xrot = math.radians(60.0);
|
|
crewModule.dyn.R[0][0] = 1.000000;
|
|
crewModule.dyn.R[0][1] = 0.000000;
|
|
crewModule.dyn.R[0][2] = 0.000000;
|
|
crewModule.dyn.R[1][0] = 0.000000;
|
|
crewModule.dyn.R[1][1] = math.cos(xrot);
|
|
crewModule.dyn.R[1][2] = -math.sin(xrot);
|
|
crewModule.dyn.R[2][0] = 0.000000;
|
|
crewModule.dyn.R[2][1] = math.sin(xrot);
|
|
crewModule.dyn.R[2][2] = math.cos(xrot);
|
|
|
|
# ==========================================
|
|
# Start the CM Display Graphics Client
|
|
#==========================================
|
|
varServerPort = trick.var_server_get_port();
|
|
CMDisplay_path = "models/CrewModuleGraphics/build/CrewModuleDisplay.jar"
|
|
|
|
if (os.path.isfile(CMDisplay_path)) :
|
|
CMDisplay_cmd = "java -jar " \
|
|
+ CMDisplay_path \
|
|
+ " " + str(varServerPort) + " &" ;
|
|
print(CMDisplay_cmd)
|
|
os.system( CMDisplay_cmd);
|
|
else :
|
|
print('==================================================================================')
|
|
print('CrewModuleDisplay needs to be built. Please \"cd\" into ../models/CrewModuleGraphics and type \"make\".')
|
|
print('==================================================================================')
|