Profile image

Funky Tree help needed!

32.3k CRJ900Pilot  3.8 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
    46.4k PlaneFlightX

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

    2.0 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 3.7 years ago
  • Profile image
    2,639 switdog08

    You should remake your CRJ900

    3.7 years ago
  • Profile image
    5,982 JakeS

    "Funky tree"
    Wat

    3.8 years ago
  • Profile image
    19.6k DerVito

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

    3.8 years ago
  • Profile image

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

    +7 3.8 years ago