2015-02-26 15:02:31 +00:00
|
|
|
/************************TRICK HEADER*************************
|
|
|
|
PURPOSE:
|
|
|
|
(This S_define is used with RUN_integ input file)
|
|
|
|
LIBRARY DEPENDENCIES:
|
|
|
|
(
|
|
|
|
(cannon/gravity/src/cannon_init.c)
|
2016-11-17 22:04:07 +00:00
|
|
|
(cannon/gravity/src/cannon_numeric.c)
|
2015-02-26 15:02:31 +00:00
|
|
|
(cannon/gravity/src/cannon_ec_integ.c)
|
|
|
|
)
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
|
2016-11-01 23:16:26 +00:00
|
|
|
##include "cannon/gravity/include/cannon_eulercromer.h"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
class CannonSimObject : public Trick::SimObject {
|
|
|
|
|
|
|
|
public:
|
|
|
|
CANNON cannon ;
|
|
|
|
|
|
|
|
CannonSimObject() {
|
|
|
|
("default_data") cannon_default_data( &cannon ) ;
|
|
|
|
|
|
|
|
("initialization") cannon_init( &cannon ) ;
|
|
|
|
|
|
|
|
("derivative") cannon_deriv( &cannon ) ;
|
|
|
|
("integration") trick_ret = cannon_ec_integ( &cannon ) ;
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
// Instantiations
|
|
|
|
CannonSimObject dyn ;
|
|
|
|
|
|
|
|
IntegLoop dyn_integloop (0.01) dyn;
|