- Symulator MaSzyna -

MaSzyna International => EU07 Simulator English forum => Wątek zaczęty przez: manolollr w 06 Stycznia 2017, 23:34:22

Tytuł: Electric brake in EP09 locomotive
Wiadomość wysłana przez: manolollr w 06 Stycznia 2017, 23:34:22
EP09 have electric brake. How does it work? Is it implemented in the game?

I know how to use electric brake in ET42, but EP09 doesn't work in the same way.

Thank you.
Tytuł: Odp: Electric brake in EP09 locomotive
Wiadomość wysłana przez: Stele w 06 Stycznia 2017, 23:45:20
It's implemented and dependend of presure in brake cylinder.
Here's part of the code:
if (DynamicBrakeType=dbrake_automatic) then
   begin
    if (((Hamulec as TLSt).GetEDBCP<0.25)and(Vadd<1))or(BrakePress>2.1) then
      DynamicBrakeFlag:=false
    else if (BrakePress>0.25) and ((Hamulec as TLSt).GetEDBCP>0.25) then
      DynamicBrakeFlag:=true;
    DynamicBrakeFlag:=DynamicBrakeFlag and ConverterFlag;   
   end;
So you have to have converter on and have preassure in brake cylinder over 0.25 bar caused by continous brake.
Tytuł: Odp: Electric brake in EP09 locomotive
Wiadomość wysłana przez: manolollr w 06 Stycznia 2017, 23:55:54
OK.

Thanks a lot for this super fast responses.