Profile image

How to make a afterburner that turns on after a certain speed and throttle

135 Maver1ck  10 months ago

So say i am going mach two at 75 percent throttle, and i want the afterburner to turn on only if i am throttled at 80 percent and going mach 2.5, is that possible, if so can you make a variable so i can copy and paste

  • Log in to leave a comment
  • Profile image
    135 Maver1ck

    @LoneSpaceGaming thanks, i updated my rd-1 rammerhead jet, check it out

    9 months ago
  • Profile image

    @Maver1ck
    Set the throttle input to:
    clamp01(Throttle > [THROTTLE % 0 BEING 0% 1 BEING 100%]) * clamp01(IAS > [DESIRED SPEED])
    Everything in all caps and [] you type in to your desired throttle % and speed. You could use True Airspeed or Ground Speed instead of Indicated Airspeed, just set IAS to TAS or GS respectively.

    10 months ago
  • Profile image
    46.9k PlaneFlightX

    @Maver1ck This goes in the input section of the engine. It goes in the throttle.

    10 months ago
  • Profile image
    135 Maver1ck

    @PlaneFlightX where does this go throttle or ag

    10 months ago
  • Profile image
    135 Maver1ck

    @PlaneFlightX just noticed that funky trees is a mix of java and html mostly

    10 months ago
  • Profile image
    46.9k PlaneFlightX

    @SPAircraftOfficial @Maver1ck To further improve this code, use:
    clamp01(Throttle > 0.8 & IAS > 857.5)
    Is 1 when the conditions specified in the post are true, otherwise it is 0.

    +1 10 months ago
  • Profile image
    135 Maver1ck

    Thank you

    10 months ago
  • Profile image

    @Maver1ck in activationGroup you put IAS>[speed you want in knots I think]

    10 months ago
  • Profile image
    135 Maver1ck

    Trying to make a working ramjet is hard

    10 months ago
  • Profile image

    @Maver1ck wait let me test it, I'll tell you in a few mins what I found out

    10 months ago
  • Profile image
    135 Maver1ck

    @SPAircraftOfficial that answers that part but what about the speed part of it, is ther any way to do both

    10 months ago
  • Profile image

    With input what I know:
    Throttle>0.80 but if only with 80 percent change > to =

    +1 10 months ago