Augmentation Method 0 #743
Replies: 3 comments 8 replies
-
Throttle-pos-norm is a value in the normalized range, 0.0 to 1.0, so it
will never get to 75.
…On Mon, 2022-10-17 at 08:06 -0700, papygreg wrote:
Hi folks !
I have tried to tie the augmentation method 0 to the FCS using the
following lines :
<!-- engine 1 augmentation --> <switch
name="names/throttle/augmentation"> <default value="0"/> <test
logic="AND" value="1"> fcs/throttle-pos-norm ge 75
propulsion/engine/n2 ge 84 /engines/engine/running == 1 </test>
<output>/engines/engine/augmentation</output> </switch> <!-- engine 2
augmentation --> <switch name="names/throttle1/augmentation">
<default value="0"/> <test logic="AND" value="1"> fcs/throttle-pos-
norm ge 75 propulsion/engine[1]/n2 ge 84 /engines/engine[1]/running
== 1 </test> <output>/engines/engine[1]/augmentation</output>
</switch>
Unfortunnatly nothing happens. I think I use a wrong path but i am
unable to find the correct one.
Is anyone familiar with this issue ?
many thanks !
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this
thread.Message ID: <JSBSim-Team/jsbsim/repo-
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
You haven't specified which engine you're using or shown the relevant snippet from your engine file around the augmentation method. jsbsim/src/models/propulsion/FGTurbine.h Lines 133 to 139 in f13d015 So depending on the augmentation method specified the FGTurbine code could be updating it on each time step. jsbsim/src/models/propulsion/FGTurbine.cpp Lines 231 to 252 in f13d015 So the first thing to confirm is what augmentation method you have specified in your engine file. You have mentioned in your original post that you're trying to use augmentation method 0, but seeing is believing 😉 |
Beta Was this translation helpful? Give feedback.
-
The T-38 model in the aircraft repository is an example of how to use
augmentation method 2. In this case the throttle command (0.0-1.0) is
multiplied by 2 using a pure_gain FCS element. So the value is now
mapped to the throttle position in the range 0.0-2.0. The turbine
model will now treat the range 0.0-1.0 as unaugmented, and the range
1.0-2.0 as augmented.
You can change the multiplier value in step one above to alter the
proportion of your physical throttle range that will be allotted for
afterburner use.
|
Beta Was this translation helpful? Give feedback.
-
Hi folks !
I have tried to tie the augmentation method 0 to the FCS using the following lines :
Unfortunnatly nothing happens. I think I use a wrong path but i am unable to find the correct one.
Is anyone familiar with this issue ?
many thanks !
Beta Was this translation helpful? Give feedback.
All reactions