16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-09-01 10:29:18 +02:00

Kilka bajerów od youBy:

Nowy kran hamulca dla en57al: MHZ_EN57.
Wybór trybu pracy hamulca dla tego kranu: Cntrl. BrakeOpModes='PN' (bom_PS+bom_PN) 'PNEPMED' (bom_PS+bom_PN+bom_EP+bom_MED)
Deklaracja przekaźnika nadnapięciowego. Power: OverVoltProt (bool) W taborze bez nie będzie wywalać szybkiego przy rekuperacji do sekcji.
Deklaracja hamulca postojowego Cntrl. SBD (bool)
Drobne poprawki w hamulcach.
This commit is contained in:
antonisauren
2016-05-18 22:48:58 +02:00
parent c3430f5e94
commit bda3b7d177
6 changed files with 4167 additions and 3910 deletions

View File

@@ -154,6 +154,7 @@ struct TCurrentCollector
double CSW;
double MinV;
double MaxV;
double OVP;
double InsetV;
double MinPress;
double MaxPress;
@@ -432,6 +433,7 @@ public:
Byte Lights[2][16];
bool ScndInMain;
bool MBrake;
double StopBrakeDecc;
TSecuritySystem SecuritySystem;
TScheme RList[65];
int RlistSize;
@@ -565,6 +567,8 @@ public:
bool EmergencyBrakeFlag;
Byte BrakeDelayFlag;
Byte BrakeDelays;
Byte BrakeOpModeFlag;
Byte BrakeOpModes;
bool DynamicBrakeFlag;
double LimPipePress;
double ActFlowSpeed;
@@ -883,6 +887,10 @@ static const Shortint eimv_Pmax = 0x11;
static const Shortint eimv_Fzad = 0x12;
static const Shortint eimv_Imax = 0x13;
static const Shortint eimv_Fful = 0x14;
static const Shortint bom_PS = 0x1;
static const Shortint bom_PN = 0x2;
static const Shortint bom_EP = 0x4;
static const Shortint bom_MED = 0x8;
extern PACKAGE double __fastcall Distance(const TLocation &Loc1, const TLocation &Loc2, const TDimension
&Dim1, const TDimension &Dim2);