Anyone have a nice GPL foil texture lying around. I made this one in a couple seconds in GIMP from the existing texture which had some structure to it.

Question: Is it possible to tell in AutoLaunch.nas to throttle up up to 106 % after bucket by some command lines ? ( didn't find the shortcut in fdm/jbsim)
Try setting
/fdm/jsbsim/systems/throttle/throttle-mode
to 1 - this should map to 106%
<switch name="systems/throttle/throttle-factor">
<default value="1.0"/>
<test value="1.09">
systems/throttle/throttle-mode == 1
</test>
<test value="1.06">
systems/throttle/throttle-mode == 2
</test>
<test value="1.04">
systems/throttle/throttle-mode == 3
</test>
</switch>
I'd appreciate if the people running the development branch could test whether the normal rendezvous stuff still works as expected (I don't expect any breakage, but who knows...)
if ((getprop("/fdm/jsbsim/velocities/vtrue-fps") > 571.0))
{
setprop("/fdm/jsbsim/systems/ap/launch/pitch-target", 69.4);
setprop("/fdm/jsbsim/systems/ap/launch/pitch-max-rate-norm", 0.04);
}
if ((getprop("/fdm/jsbsim/velocities/vtrue-fps") > 678.0))
{
setprop("/fdm/jsbsim/systems/ap/launch/pitch-target", 68.6);
setprop("/fdm/jsbsim/systems/ap/launch/pitch-max-rate-norm", 0.04);
}
if ((getprop("/fdm/jsbsim/velocities/vtrue-fps") > 747.0))
{
setprop("/fdm/jsbsim/systems/ap/launch/pitch-target", 67.8);
setprop("/fdm/jsbsim/systems/ap/launch/pitch-max-rate-norm", 0.04);
}
if ((getprop("/fdm/jsbsim/velocities/vtrue-fps") > 846.0))
{
setprop("/fdm/jsbsim/systems/ap/launch/pitch-target", 66.2);
setprop("/fdm/jsbsim/systems/ap/launch/pitch-max-rate-norm", 0.04);
}
etc
if (getprop("/fdm/jsbsim/velocities/vtrue-fps") > 120.0)
I changed it directly in the Throttle.xml
On that matter, I was wondering if it was possible to set a Flight path target at MECO instead of Hdot
FPA from that property
Users browsing this forum: No registered users and 1 guest