MOOSE generated documentation [skip ci]

This commit is contained in:
Applevangelist
2023-02-16 16:41:56 +00:00
parent 36abf8f448
commit d517e8a78d
31 changed files with 1879 additions and 906 deletions

View File

@@ -3271,6 +3271,18 @@ If the DCS Unit object does not exist or is nil, the CLIENT methods will return
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).FlareYellow">CLIENT:FlareYellow()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Signal a yellow flare at the position of the POSITIONABLE.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).GetAirspeedIndicated">CLIENT:GetAirspeedIndicated(oatcorr)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns the indicated airspeed (IAS).</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).GetAirspeedTrue">CLIENT:GetAirspeedTrue()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns the true airspeed (TAS).</p>
</td>
</tr>
<tr class="w3-border">
@@ -3343,6 +3355,12 @@ If the DCS Unit object does not exist or is nil, the CLIENT methods will return
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).GetDCSObject">CLIENT:GetDCSObject()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns the DCS object.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).GetGroundSpeed">CLIENT:GetGroundSpeed()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns the horizonal speed relative to eath's surface.</p>
</td>
</tr>
<tr class="w3-border">
@@ -17750,6 +17768,86 @@ Ship:Destroy( false ) -- Don't generate an event upon destruction.
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).GetAirspeedIndicated" ><strong>CLIENT:GetAirspeedIndicated(oatcorr)</strong></a></h2>
</div>
<p>Returns the indicated airspeed (IAS).</p>
<p>The IAS is calculated from the TAS under the approximation that TAS increases by ~2% with every 1000 feet altitude ASL.</p>
<div id= "#Functions##GetAirspeedIndicated" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
<h2><strong>Defined in:</strong></h2>
<div class="w3-margin-left">
<p><a href="Wrapper.Positionable.html##(POSITIONABLE)">Wrapper.Positionable#POSITIONABLE</a></p>
</div>
<h2><strong>Parameter:</strong></h2>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>oatcorr</strong></strong>
</p>
</div>
<div class="w3-half">
<p>(Optional) Outside air temperature (OAT) correction factor. Default 0.017 (=1.7%).</p>
</div>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p>#number:</p>
</div>
<div class="w3-half">
<p>IAS in m/s. Returns 0 if the POSITIONABLE does not exist.</p>
</div>
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).GetAirspeedTrue" ><strong>CLIENT:GetAirspeedTrue()</strong></a></h2>
</div>
<p>Returns the true airspeed (TAS).</p>
<p>This is calculated from the current velocity minus wind in 3D.</p>
<div id= "#Functions##GetAirspeedTrue" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
<h2><strong>Defined in:</strong></h2>
<div class="w3-margin-left">
<p><a href="Wrapper.Positionable.html##(POSITIONABLE)">Wrapper.Positionable#POSITIONABLE</a></p>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p>#number:</p>
</div>
<div class="w3-half">
<p>TAS in m/s. Returns 0 if the POSITIONABLE does not exist.</p>
</div>
</div>
</div>
</div>
</div>
@@ -18173,6 +18271,39 @@ preferred as it will return a fresh new COORDINATE and thus avoid potentially un
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).GetGroundSpeed" ><strong>CLIENT:GetGroundSpeed()</strong></a></h2>
</div>
<p>Returns the horizonal speed relative to eath's surface.</p>
<p>The vertical component of the velocity vector is projected out (set to zero).</p>
<div id= "#Functions##GetGroundSpeed" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
<h2><strong>Defined in:</strong></h2>
<div class="w3-margin-left">
<p><a href="Wrapper.Positionable.html##(POSITIONABLE)">Wrapper.Positionable#POSITIONABLE</a></p>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p>#number:</p>
</div>
<div class="w3-half">
<p>Ground speed in m/s. Returns 0 if the POSITIONABLE does not exist.</p>
</div>
</div>
</div>
</div>
</div>