]> git.mxchange.org Git - flightgear.git/blobdiff - LaRCsim/navion_engine.c
Working on incorporating the LaRCsim flight model.
[flightgear.git] / LaRCsim / navion_engine.c
index eebc849ebbf9f6e1c202029c4a13d5bae0387f53..2110275ea4b23463c887b14fbc58b409b2f7a1ae 100644 (file)
@@ -71,8 +71,10 @@ void engine( SCALAR dt, int init )
     if (init || sim_control_.sim_type != cockpit) 
        Throttle[3] = Throttle_pct;
 
-    F_X_engine = Throttle[3]*813.4/0.2;
-    F_Z_engine = Throttle[3]*11.36/0.2;
+    /* F_X_engine = Throttle[3]*813.4/0.2; */  /* original code */
+    /* F_Z_engine = Throttle[3]*11.36/0.2; */  /* original code */
+    F_X_engine = Throttle[3]*813.4/0.85;
+    F_Z_engine = Throttle[3]*11.36/0.85;
 
     Throttle_pct = Throttle[3];
 }