mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 14:32:24 +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
536 B
Python
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)
|