trick/trick_sims/SIM_integ/RUN_test/input.py
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
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.
2015-03-23 16:03:14 -05:00

18 lines
536 B
Python

# new setIntegrator function to set the Integrator.
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
dyn1_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
# Setting first_step_deriv and last_step_deriv is now a
# part of IntegLoopScheduler instead of the Integrator
#dyn_integloop.integ_sched.set_last_step_deriv(True)
#dyn1_integloop.integ_sched.set_first_step_deriv(False)
# Moving a sim_object to another IntegLoop
trick.add_read(3, """
dyn_integloop.integ_sched.add_sim_object(dyn1)
""")
trick.echo_jobs_on()
trick.stop(5)