jsbsim.js
Version:
JSBSim flight dynamics model ported to JavaScript
28 lines (20 loc) • 773 B
text/xml
<!-- This system determines the state of the Boundary Layer Control (BLC)
system. The aerodynamic effects of BLC are set in the aircraft
configuration file <aerodynamics> section, not here. In order for
the switch to work properly the number of engine rpm tests should
match the number of engines installed!
-->
<system name="BLC">
<property>systems/BLC/active</property>
<channel name="Boundary Layer Control">
<switch name="systems/BLC/switch">
<default value="0"/>
<test logic="AND" value="1">
fcs/flap-pos-norm gt 0.31
propulsion/engine[0]/n2 gt 75.0
</test>
<output>systems/BLC/active</output>
</switch>
</channel>
</system>