From: Bertrand <bco...@us...> - 2016-01-31 11:13:03
|
Update of /cvsroot/jsbsim/JSBSim/src/models In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11768/src/models Modified Files: FGAccelerations.cpp Log Message: Fixed a bug that made the test TestGustReset to fail : the acceleration vUVWdot was not reset to zero and the time was reset to zero *after* the ICs were written to the output CSV file. Index: FGAccelerations.cpp =================================================================== RCS file: /cvsroot/jsbsim/JSBSim/src/models/FGAccelerations.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** FGAccelerations.cpp 9 Dec 2015 04:28:18 -0000 1.25 --- FGAccelerations.cpp 31 Jan 2016 11:13:00 -0000 1.26 *************** *** 79,82 **** --- 79,83 ---- vPQRidot.InitMatrix(); vUVWidot.InitMatrix(); + vUVWdot.InitMatrix(); vGravAccel.InitMatrix(); vBodyAccel.InitMatrix(); *************** *** 102,105 **** --- 103,107 ---- vPQRidot.InitMatrix(); vUVWidot.InitMatrix(); + vUVWdot.InitMatrix(); vGravAccel.InitMatrix(); vBodyAccel.InitMatrix(); |