From: Bertrand <bco...@us...> - 2017-03-22 21:27:50
|
Update of /cvsroot/jsbsim/JSBSim/src/models/propulsion In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv4935/src/models/propulsion Modified Files: FGPropeller.cpp Log Message: Removed the addition of the induced/inflow velocity since its effect is already accounted for in the tables C_THRUST and C_POWER build by aeromatic++ or javaprop. Index: FGPropeller.cpp =================================================================== RCS file: /cvsroot/jsbsim/JSBSim/src/models/propulsion/FGPropeller.cpp,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -r1.60 -r1.61 *** FGPropeller.cpp 3 Mar 2017 23:00:39 -0000 1.60 --- FGPropeller.cpp 22 Mar 2017 21:27:47 -0000 1.61 *************** *** 212,216 **** double omega, PowerAvailable; ! double Vel = localAeroVel(eU) + Vinduced; double rho = in.Density; double RPS = RPM/60.0; --- 212,216 ---- double omega, PowerAvailable; ! double Vel = localAeroVel(eU); double rho = in.Density; double RPS = RPM/60.0; |