Profile image

Braking system for land vehilces

327k SpiritusRaptor  1.8 years ago

Hi,

Does anyone know a good braking system for land vehicles apart from using a piston?

I've tried using PID on the engine and it almost works, but can't seem to bring the vehicle to a complete dead stop...

SR

  • Log in to leave a comment
  • Profile image

    Thanks, I’ll give it a try
    @Skill707

    1.8 years ago
  • Profile image
    2,106 Skill707

    i did it https://www.simpleplanes.com/a/Ot7v8L/Hand-brake-demo

    1.8 years ago
  • Profile image
    2,106 Skill707

    try to use 2 jet engines, and this FT code
    PID(0, Speed, 1, 0, 1)
    var Speed = GS * 3.6 * MoveDir
    var MoveDir = abs(AngleOfSlip) < 90
    or
    var MoveDir = (FLrpm - FRrpm + RLrpm - RRrpm)>0
    FRrmp - RPM of wheels.

    1.8 years ago