How to get the propeller aerodynamic coefficient ? #850
Dobid
started this conversation in
Support requests
Replies: 1 comment 1 reply
-
I don't have a definite answer, but take a look at the following code: jsbsim/src/models/propulsion/FGPropeller.cpp Lines 207 to 298 in ebb770e I wonder if, without having a proper look whether jsbsim/src/models/propulsion/FGPropeller.cpp Lines 154 to 155 in ebb770e jsbsim/src/models/propulsion/FGPropeller.cpp Lines 118 to 120 in ebb770e jsbsim/src/models/propulsion/FGPropeller.cpp Lines 103 to 104 in ebb770e |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hello !
As explained in #843, I'm trying to implement an autopilot for the x8 UAV based on a PID controller by following this book : Small Unmanned Aircrafts by Beard and McLain (here's the fdm).
In the book, in the longitudinal autopilot part, they give a set of formulas to compute PID gains for the airspeed controller :
$k_{iv} = {\omega_{nv}}^2/a_{v2}$ ; $k_{pv} = (2\xi_{v}\omega_{nv} - a_{v1})/a_{v2}$ $a_{v1}, a_{v2}$ .
Those formulas show the following coefficients :
Those are transfer function coefficients, their formulas are :

$S_{prop}$ being the area swept by the propeller and $C_{prop}$ the aerodynamical coefficient of the propeller, for more context, they appear here, when finding the formula of the thrust produced by the propeller/engine :

With
So in order to achieve my PID, I need to find a way to get or compute this value of$C_{prop}$ and I have no idea of where to look for. I checked the fdm (propulsion tag) referencing the engine's xml file and the direct thrust file.
Can someone help me find a way to compute this$C_{prop}$ value ? The x8 UAV description table gives the dimensions of the propeller, but searching the internet about a corresponding $C_{prop}$ doesn't bring anything. This $C_{prop}$ coefficient notation seems to be specific to the book I'm following and I can't link it to information I find online (UAV specs, propeller specs, fdm files...)
Thanks in advance !
Beta Was this translation helpful? Give feedback.
All reactions