Hello there,
I have the following input on a hinge - rate(RollAngle)
but i only wish it to happen after a certain velocity, anyone may assist me in this one? Cheers
Hello there,
I have the following input on a hinge - rate(RollAngle)
but i only wish it to happen after a certain velocity, anyone may assist me in this one? Cheers
@edensk @Avro683Lancaster @SnoWFLakE0s Thank you all for sharing your knowledge, both solutions work 100%.
@Avro683Lancaster
.
You can, use only logic to handle operations, but it makes the code far simpler if you just use selection by calculation, using 0 and 1 instead of false / true (-1, 1).
@edensk
clamp01()
shouldn't be necessary when using boolean operators, I would instead suggestAirspeed>X ? rate(RollAngle) : 0
rate(RollAngle) * clamp01(IAS>x)
x
is the speed above which it activates.