2
3
4
5
6
7
8
9
10
11
12
13
14
15
17
18
19
20
22#ifndef MODELS_SUPPORT_LVLH_FRAME_MODEL_H
23#define MODELS_SUPPORT_LVLH_FRAME_MODEL_H
25#include "core/macros.h"
26#include "simulation/Model.h"
27#include "six_dof_dynamics/Frame.hpp"
28#include "utils/frameutils.hpp"
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
79 LvlhFrameManagerModel();
80 LvlhFrameManagerModel(
Model &pnt,
const std::string &m_name=
"lvlh_frame_manager");
81 LvlhFrameManagerModel(
SimulationExecutive &e,
const std::string &m_name=
"lvlh_frame_manager");
82 LvlhFrameManagerModel(
Model &pnt,
int schedule_slot,
const std::string &m_name=
"lvlh_frame_manager");
83 LvlhFrameManagerModel(
SimulationExecutive &e,
int schedule_slot,
const std::string &m_name=
"lvlh_frame_manager");
84 virtual ~LvlhFrameManagerModel() {}
DataIO(GraphTreeObject *data_parent, std::string data_name, T initial_value)
Constructor for the DataIO object.
Definition DataIO.hpp:134
Frame(const std::string &name, Frame< T > *par=nullptr, bool free=false)
Constructor for the frame object.
Definition Frame.hpp:294
LVLV Frame Manager Model.
Definition LvlhFrameManagerModel.h:51
int start()
Function to perform task startup activities (step once after creation)
Definition LvlhFrameManagerModel.cpp:44
clockwerk::DCM< double > _lvlh_attitude__r
Temporary variable to hold lvlh attitude.
Definition LvlhFrameManagerModel.h:93
clockwerk::Frame< double > _lvlh_frame
This is the actual LVLH frame.
Definition LvlhFrameManagerModel.h:90
clockwerk::CartesianVector< double, 3 > _lvlh_ang_vel__lvlh
Temporary variable to hold LVLH angular velociyt in lvlh frame.
Definition LvlhFrameManagerModel.h:96
int execute()
Function to execute the task. All math and calculations should be here.
Definition LvlhFrameManagerModel.cpp:69
Base model class for derived implementation.
Definition Model.h:56
Implementation of the executive class for simulation.
Definition SimulationExecutive.h:63
#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 DCMD
Definition macros.h:70
#define START_OUTPUTS
Definition macros.h:88
#define FrameD
Definition macros.h:64
#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< clockwerk::Frame< double > * > lvlh_frame_ptr
Definition LvlhFrameManagerModel.h:75
clockwerk::DataIO< clockwerk::Frame< double > * > target_frame_ptr
Definition LvlhFrameManagerModel.h:59
clockwerk::DataIO< clockwerk::Frame< double > * > planet_frame_ptr
Definition LvlhFrameManagerModel.h:57