mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +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.
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
/************************TRICK HEADER*************************
|
|
PURPOSE:
|
|
(Lists out the other object files that are not included from C++ headers)
|
|
LIBRARY DEPENDENCIES:
|
|
(
|
|
)
|
|
*************************************************************/
|
|
#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 "Satellite/include/Satellite.hh"
|
|
##include "Satellite/include/SatGraphicsComm.hh"
|
|
|
|
class OrbitSimObject : public Trick::SimObject {
|
|
public:
|
|
SatGraphicsComm sat_graph_comm;
|
|
Planet planet ;
|
|
Satellite satellite ;
|
|
|
|
OrbitSimObject() {
|
|
|
|
("initialization") sat_graph_comm.connect() ;
|
|
("initialization") satellite.initialize( &planet) ;
|
|
("initialization") sat_graph_comm.send_packet( &satellite) ;
|
|
|
|
("derivative") satellite.compute_state_deriv() ;
|
|
("integration") trick_ret = satellite.compute_state() ;
|
|
|
|
(0.1, "scheduled") satellite.print_state() ;
|
|
(0.1, "scheduled") sat_graph_comm.send_packet( &satellite) ;
|
|
|
|
}
|
|
};
|
|
|
|
OrbitSimObject dyn ;
|
|
|
|
IntegLoop dyn_integloop (0.1) dyn;
|