Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/models/FGAuxiliary.h
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,16 @@ class JSBSIM_API FGAuxiliary : public FGModel {

void SetAeroPQR(const FGColumnVector3& tt) { vAeroPQR = tt; }

// External-injection setters for a host that owns the state integration
// (propagation and ground reactions) and provides the derived quantities
// Auxiliary would otherwise compute from the propagation it no longer runs:
// the alpha/beta rates and the body-axis load factors.
void Setadot(double v) { adot = v; }
void Setbdot(double v) { bdot = v; }
void SetNx(double v) { Nx = v; }
void SetNy(double v) { Ny = v; }
void SetNz(double v) { Nz = v; }

struct Inputs {
double Pressure;
double Density;
Expand Down
Loading