I was wondering how to make it so that when my plane touches down, some air brakes deploy automatically at any throttle below say 25% percent. Any help is appreciated, thanks in advance!
I was wondering how to make it so that when my plane touches down, some air brakes deploy automatically at any throttle below say 25% percent. Any help is appreciated, thanks in advance!
Ok, thanks. I’ll mess around w/ it and I’ll let u know how it goes@TheFlightGuySP
@AerospaceGuy36 You could try: (AltitudeAgl= whatever your elevation above the ground is while on the ground)&(Throttle<0.25).
This may or may not work.
Ok, thanks! I don’t know much about funkytrees so how would I write the 2 functions together?@TheFlightGuySP
@AerospaceGuy36 No. You could mess around with AltitudeAgl data to see what happens. (AltitudeAgl= whatever your elevation above the ground is while on the ground)
Thanks, does the clamp function make it to where they only deploy on the ground?
@TheFlightGuySP
You could try clamp(Throttle, 0, 0.25) or Throttle<0.25.
Edit: this works for the throttle portion of the code, not the touchdown.