mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
ee2f824550
* Disable unneeded SimObjects from default_trick_sys.sm in Trick example sims. * Take out unit test disable. Add some S_defines I forgot.
31 lines
942 B
Plaintext
31 lines
942 B
Plaintext
/************************************************************
|
|
PURPOSE:
|
|
( Simulation of Pool Table. )
|
|
LIBRARY DEPENDENCIES:
|
|
((pool_table/src/pool_table.cpp))
|
|
*************************************************************/
|
|
#define TRICK_NO_MONTE_CARLO
|
|
#define TRICK_NO_MASTERSLAVE
|
|
#define TRICK_NO_INSTRUMENTATION
|
|
#define TRICK_NO_REALTIMEINJECTOR
|
|
#define TRICK_NO_ZEROCONF
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
##include "pool_table/include/pool_table.hh"
|
|
|
|
class PoolTableSimObject : public Trick::SimObject {
|
|
public:
|
|
PoolTable table;
|
|
|
|
PoolTableSimObject() {
|
|
("default_data") table.default_data() ;
|
|
("initialization") table.state_init() ;
|
|
("derivative") table.state_deriv() ;
|
|
("integration") trick_ret = table.state_integ() ;
|
|
("dynamic_event") table.collision() ;
|
|
}
|
|
};
|
|
|
|
PoolTableSimObject dyn;
|
|
IntegLoop dyn_integloop(0.001) dyn;
|