Update of /cvsroot/jsbsim/JSBSim/utils/aeromatic++/Systems
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv15415/Systems
Modified Files:
Controls.cpp
Log Message:
Remove the roll tendency when starting the ground loop: The reynolds numbers based Roll moment due to beta was trying to get the aircraft into a stall even with weight on wheels
Index: Controls.cpp
===================================================================
RCS file: /cvsroot/jsbsim/JSBSim/utils/aeromatic++/Systems/Controls.cpp,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -r1.50 -r1.51
*** Controls.cpp 24 Nov 2016 09:59:34 -0000 1.50
--- Controls.cpp 30 May 2017 07:41:11 -0000 1.51
***************
*** 659,662 ****
--- 659,665 ----
file << " <property>aero/beta-rad</property>" << std::endl;
+ if (_aircraft->_Clbeta.size() > 1) {
+ file << " <property>fcs/gear-no-wow</property>" << std::endl;
+ }
file << _print_vector(_aircraft->_Clbeta);
|