mirror of
https://github.com/nasa/trick.git
synced 2025-01-25 05:46:58 +00:00
13 lines
448 B
Python
13 lines
448 B
Python
|
|
# $Id: input.py 757 2010-06-22 18:40:57Z wwoodard $
|
|
|
|
execfile("Modified_data/data_record.dr")
|
|
|
|
|
|
ball2.state.input.mass = trick.sim_services.attach_units("kg" , 10.0)
|
|
ball2.state.input.speed = trick.sim_services.attach_units("m/s" , 3.5)
|
|
ball2.state.input.elevation = trick.sim_services.attach_units("d" , 30.0) ;
|
|
ball2.state.input.position[0] = trick.sim_services.attach_units("m" , [5.0 , 5.0])
|
|
|
|
trick.sim_services.exec_set_terminate_time(300.0)
|