Profile image

Funky Tree help needed!

32.3k CRJ900Pilot  4.4 years ago

How does one make VTOL a "yes or no" input, where any VTOL position other than neutral counts as a single output? In other words, how can you make VTOL behave like an activation group?

  • Log in to leave a comment
  • Profile image
    76.9k MrCOPTY

    round(VTOL)

    3 months ago
  • Profile image
    49.3k PlaneFlightX

    I'd just say clamp01(VTOL != 0). If you wanted a boolean, just remove the clamp01().

    2.6 years ago
  • Profile image
    2,639 switdog08

    @CRJ900Pilot
    It depends on at what position of VTOL you want something to come on, but this would be the expression:
    VTOL=X
    With X being what position you want something activated.
    Or, If you want something to be activated when VTOL is past a certain position, it would be this:
    VTOL>X
    or this
    VTOL<X
    With X being what position it has to go past. You use the one with the less than sign if the number it has to reach/be past is negative.

    +1 4.2 years ago
  • Profile image
    2,639 switdog08

    You should remake your CRJ900

    4.3 years ago
  • Profile image
    5,997 JakeS

    "Funky tree"
    Wat

    4.4 years ago
  • Profile image
    19.7k DerVito

    clamp01(VTOL<x) , x∈[0;1]
    or
    clamp01(VTOL>x) , x∈[0;1]

    4.4 years ago
  • Profile image

    How about the following ?
    (VTOL=0?0:1)
    or
    (VTOL>0?1:0)
    or
    (VTOL<0?1:0)

    +7 4.4 years ago