@TheFlightGuySP I adjusted the values still cant do cobra. But its okay i really appreciated your effort to help and also this is my first time building a plane with artificial stability so yeah it may take some practice.
@Red920 Did you disable Activate8?
If it doesn't cobra regardless, then try adjusting the values.
If it still doesn't work, then I'm out of ideas. Sorry.
@Red920 And probably do the same for the Roll input as well.
The * symbols are multiplying the AoA limiter by the Pitch/Roll control inputs, meaning that if you aren't giving any input the limiter won't work.
@TheFlightGuySP sorry i have a very small brain. After i put the Pitch-(PitchRate*0.01) and it worked, it stopped the wobbling but the AoA limiter also stopped working making plane doing cobra unintentionally.
here's the code.
@TheFlightGuySP im going to have a look at your builds to get some ideas for my AoA limiter.
@TheFlightGuySP I adjusted the values still cant do cobra. But its okay i really appreciated your effort to help and also this is my first time building a plane with artificial stability so yeah it may take some practice.
@Red920 Did you disable Activate8?
If it doesn't cobra regardless, then try adjusting the values.
If it still doesn't work, then I'm out of ideas. Sorry.
@TheFlightGuySP i cant cobra
@Red920 The code below is based on what I normally use. You may need to modify some of the values for your own needs.
@Red920 Hmm. Alright, let me rewrite the code:
See if this works.
@TheFlightGuySP the AoA limiter worked but the wobbling is back :)
Pitch-(PitchRate*0.01) + (AngleOfAttack/(Activate8=true ? 2000 : 20)) - Roll * 0.1
@Red920 And probably do the same for the
Roll
input as well.The
*
symbols are multiplying the AoA limiter by the Pitch/Roll control inputs, meaning that if you aren't giving any input the limiter won't work.@Red920 Try using a
+
instead of a*
between the AoA limiter and the PitchRate limiter.@TheFlightGuySP sorry i have a very small brain. After i put the
Pitch-(PitchRate*0.01)
and it worked, it stopped the wobbling but the AoA limiter also stopped working making plane doing cobra unintentionally.here's the code.
Pitch-(PitchRate*0.01) * (AngleOfAttack/(Activate1=true ? 20 : 2000)) * Roll * 0.1
@Red920 No worries, your English is fine :)
@TheFlightGuySP I never tried putting PitchRate on rotators to my builds. But i will try (sorry about my english).
Did you put a Pitch-(PitchRate*0.01) on it?
That usually fixes wobbling for me.