2
3
4
5
6
7
8
9
10
11
12
13
14
15
17
18
19
20
22#ifndef TRIAD_GUIDANCE_H
23#define TRIAD_GUIDANCE_H
25#include "core/macros.h"
26#include "architecture/Tasks.h"
27#include "six_dof_dynamics/Frame.hpp"
28#include "six_dof_dynamics/MRP.hpp"
33
34
35
36
37
38
39
40
41
72 TriadGuidance() :
Task() {}
73 TriadGuidance(
Task &pnt,
int schedule_slot=0,
const std::string &m_name=
"triad_guidance")
74 :
Task(pnt
, schedule_slot
, m_name
) {}
75 TriadGuidance(
Executive &e,
int schedule_slot=0,
const std::string &m_name=
"triad_guidance")
DataIO(GraphTreeObject *data_parent, std::string data_name, T initial_value)
Constructor for the DataIO object.
Definition DataIO.hpp:134
Central control mechanism to run simulations and software.
Definition Executive.h:43
This is the base implementation of the task class.
Definition Tasks.h:68
Task()
Default constructor for the task object for simplicity. Note: Masks some functionality and should not...
Definition Tasks.cpp:21
Task(Task &pnt, int slot, const std::string &m_name="Unnamed")
Task-based constructor for the task. Auto-assigns executive.
Definition Tasks.cpp:47
Task(Executive &executive, int slot, const std::string &m_name="Unnamed")
Executive-based constructor for the task.
Definition Tasks.cpp:62
Triad method guidance.
Definition TriadGuidance.h:42
int execute()
Function to execute the task. All math and calculations should be here.
Definition TriadGuidance.cpp:23
#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 QuaternionD
Definition macros.h:78
#define START_OUTPUTS
Definition macros.h:88
#define END_INPUTS
Definition macros.h:94
#define START_INPUTS
Definition macros.h:92
clockwerk::DataIO< Quaternion< double > > quat_body_ref
Definition TriadGuidance.h:67