]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/FGRocket.h
Removed FGMatrix.* because it is no longer used by JSBSim.
[flightgear.git] / src / FDM / JSBSim / FGRocket.h
index c99446c55e35864c3c20a33e1eb2b356405b6c98..dd54ae2a07144762d9c1c84df4341979ff47e52b 100644 (file)
@@ -116,15 +116,20 @@ public:
       coefficient times the chamber pressure.
       @param pe nozzle exit pressure
       @return thrust coefficient times chamber pressure */
-  float Calculate(float pe);
+  double Calculate(double pe);
+  
+  /** Gets the chamber pressure.
+      @return chamber pressure in psf. */
+  double GetChamberPressure(void) {return PC;}
 
 private:
-  float SHR;
-  float maxPC;
-  float propEff;
-  float kFactor;
-  float Variance;
-  void Debug(void);
+  double SHR;
+  double maxPC;
+  double propEff;
+  double kFactor;
+  double Variance;
+  double PC;
+  void Debug(int from);
 };
 
 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%