2
3
4
5
6
7
8
9
10
11
12
13
14
15
17
18
19
20
22#ifndef MODELS_STATES_ORBITAL_ELEMENTS_SENSOR_MODEL_H
23#define MODELS_STATES_ORBITAL_ELEMENTS_SENSOR_MODEL_H
25#include "core/macros.h"
26#include "simulation/Model.h"
27#include "six_dof_dynamics/Frame.hpp"
28#include "utils/frameutils.hpp"
29#include "utils/planetdefaults.h"
34
35
36
37
38
45
46 SIGNAL(
mu,
double, clockwerk::earth_wgs84.mu)
76 OrbitalElementsSensorModel();
77 OrbitalElementsSensorModel(
Model &pnt,
const std::string &m_name=
"orbital_elements");
78 OrbitalElementsSensorModel(
SimulationExecutive &e,
const std::string &m_name=
"orbital_elements");
79 OrbitalElementsSensorModel(
Model &pnt,
int schedule_slot,
const std::string &m_name=
"orbital_elements");
80 OrbitalElementsSensorModel(
SimulationExecutive &e,
int schedule_slot,
const std::string &m_name=
"orbital_elements");
81 virtual ~OrbitalElementsSensorModel() {}
Base model class for derived implementation.
Definition Model.h:56
Orbital elements sensor model.
Definition OrbitalElementsSensorModel.h:39
int execute()
Function to execute the task. All math and calculations should be here.
Definition OrbitalElementsSensorModel.cpp:33
Implementation of the executive class for simulation.
Definition SimulationExecutive.h:63
#define CartesianVector6D
Definition macros.h:58
#define SIGNAL(NAME, TYPE, INITIAL_VALUE)
Definition macros.h:87
#define START_PARAMS
Definition macros.h:96
#define CartesianVector3D
Definition macros.h:54
#define END_OUTPUTS
Definition macros.h:90
#define END_PARAMS
Definition macros.h:98
#define START_OUTPUTS
Definition macros.h:88
#define END_INPUTS
Definition macros.h:94
#define START_INPUTS
Definition macros.h:92
Class to propagate CR3BP dynamics in characteristic units.
Definition ConfigurationWriter.cpp:18
clockwerk::DataIO< double > e
Definition OrbitalElementsSensorModel.h:64
clockwerk::DataIO< double > a
Definition OrbitalElementsSensorModel.h:62
clockwerk::DataIO< double > RAAN
Definition OrbitalElementsSensorModel.h:68
clockwerk::DataIO< double > i
Definition OrbitalElementsSensorModel.h:66
clockwerk::DataIO< double > f
Definition OrbitalElementsSensorModel.h:72
clockwerk::DataIO< double > w
Definition OrbitalElementsSensorModel.h:70
clockwerk::DataIO< double > mu
Definition OrbitalElementsSensorModel.h:46