>I'd be interested to know what drives Axx, Ayy, Azz.
The value Axx, for instance, is updated from src/Cockpit/cockpit.cxx in
function get_Ax(). Here is get_Ax:
float get_Ax ( void )
{
float Ax = current_aircraft.fdm_state->get_V_dot_north();
return Ax;
}
V_dot_north is set in src/FDM/flight.hxx in this function:
inline void _set_Accels_Local( double north, double east, double down )
{
v_dot_local_v[0] = north;
v_dot_local_v[1] = east;
v_dot_local_v[2] = down;
}
The JSBSim interface, /src/FDM/JSBSim/JSBSim.cxx never calls
_set_Accels_local() in
the function copy_from_JSBSim().
Dave
_______________________________________________
Flightgear-devel mailing list
[email protected]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d