]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/FGRocket.h
Latest JSBSim changes, including a kludge from Tony to keep the
[flightgear.git] / src / FDM / JSBSim / FGRocket.h
index db4c2700fac3c550e3bc7ec47d128407fd5e15f5..dd54ae2a07144762d9c1c84df4341979ff47e52b 100644 (file)
@@ -116,20 +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. */
-  float GetChamberPressure(void) {return PC;}
+  double GetChamberPressure(void) {return PC;}
 
 private:
-  float SHR;
-  float maxPC;
-  float propEff;
-  float kFactor;
-  float Variance;
-  float PC;
-  void Debug(void);
+  double SHR;
+  double maxPC;
+  double propEff;
+  double kFactor;
+  double Variance;
+  double PC;
+  void Debug(int from);
 };
 
 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%