Replies: 2 comments 2 replies
-
Are you familiar with how aerodynamic coefficients are defined? Here are a couple of definitions for some of them, and in particular how they're defined for the pitch, yaw and roll axes. And now the nomenclature mapping between the textbook symbols and the names in JSBSim. PropertyManager->Tie("metrics/Sw-sqft", this, &FGAircraft::GetWingArea, &FGAircraft::SetWingArea);
PropertyManager->Tie("metrics/bw-ft", this, &FGAircraft::GetWingSpan);
PropertyManager->Tie("metrics/cbarw-ft", this, &FGAircraft::Getcbar); So take an example from the 737 model. <function name="aero/coefficient/Cmalpha">
<description>Pitch_moment_due_to_alpha</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<property>metrics/cbarw-ft</property>
<property>aero/alpha-rad</property>
<value>-0.6</value>
</product>
</function> |
Beta Was this translation helpful? Give feedback.
1 reply
-
If you're going to try and understand existing JSBSim FDMs and want to be able to edit them you'll need to become familiar with them. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Good morning everyone,
Can someone explain to me what are 'metrics/bw-ft', 'metrics/cbarw-ft' and why the table 'metrics bw-ft' is used both for the YAW and the ROLL.
Thank U.
Beta Was this translation helpful? Give feedback.
All reactions