mirror of
https://github.com/nasa/trick.git
synced 2024-12-30 09:58:53 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
18 lines
476 B
Python
18 lines
476 B
Python
|
|
# This one of several ways to include files from the input file
|
|
execfile("Modified_data/auto_test.dr")
|
|
execfile("Modified_data/data_record.dr")
|
|
|
|
#my_integ_loop.integ_sched.integ_ptr = trick.getIntegrator( trick.Runge_Kutta_2, 4, 1.0);
|
|
my_integ_loop.getIntegrator(trick.Runge_Kutta_2, 4)
|
|
|
|
# Set the freeze frame rate
|
|
trick.exec_set_freeze_frame(0.10)
|
|
|
|
read = 55.0
|
|
trick.add_read(read, "trick.ball_print(ball.state)")
|
|
|
|
# Set the stop time
|
|
trick.exec_set_terminate_time(300.0)
|
|
|