39#ifndef FGTRANSMISSION_H
40#define FGTRANSMISSION_H
48#include "input_output/FGPropertyManager.h"
120 void Calculate(
double EnginePower,
double ThrusterTorque,
double dt);
122 void SetMaxBrakePower(
double x) {MaxBrakePower=x;}
123 double GetMaxBrakePower()
const {
return MaxBrakePower;}
124 void SetEngineFriction(
double x) {EngineFriction=x;}
125 double GetEngineFriction()
const {
return EngineFriction;}
126 void SetEngineMoment(
double x) {EngineMoment=x;}
127 double GetEngineMoment()
const {
return EngineMoment;}
128 void SetThrusterMoment(
double x) {ThrusterMoment=x;}
129 double GetThrusterMoment()
const {
return ThrusterMoment;}
131 double GetFreeWheelTransmission()
const {
return FreeWheelTransmission;}
132 void SetEngineRPM(
double x) {EngineRPM=x;}
133 double GetEngineRPM() {
return EngineRPM;}
134 void SetThrusterRPM(
double x) {ThrusterRPM=x;}
135 double GetThrusterRPM() {
return ThrusterRPM;}
137 double GetBrakeCtrlNorm()
const {
return BrakeCtrlNorm;}
138 void SetBrakeCtrlNorm(
double x) {BrakeCtrlNorm=x;}
139 double GetClutchCtrlNorm()
const {
return ClutchCtrlNorm;}
140 void SetClutchCtrlNorm(
double x) {ClutchCtrlNorm=x;}
144 void Debug(
int from);
146 inline double omega_to_rpm(
double w) {
147 return w * 9.54929658551372014613302580235;
149 inline double rpm_to_omega(
double r) {
150 return r * 0.104719755119659774615421446109;
154 double FreeWheelTransmission;
156 double ThrusterMoment;
158 double EngineFriction;
160 double ClutchCtrlNorm;
161 double BrakeCtrlNorm;
162 double MaxBrakePower;
Encapsulates the JSBSim simulation executive.
First order, (low pass / lag) filter.
Utility class that handles power transmission in conjunction with FGRotor.
~FGTransmission()
Destructor for FGTransmission.