Parameteranpassungen an neuen Motor

This commit is contained in:
2023-05-20 20:37:47 +02:00
parent fe94db4e88
commit 326c805793

View File

@@ -26,13 +26,13 @@ Locomotive locomotiveTaurus(5, 22, 116, 180, regler1);
Locomotive locomotive2043(6, 25, 129, 160, regler1);
*/
Locomotive locomotiveTaurus(2.2, 22, 53, 43, regler1);
Locomotive locomotive2043(2.2, 25, 75, 63, regler1);
Locomotive locomotive2043(1.8, 25, 77, 55, regler1);
Fahrt fahrt[] = {
Fahrt(locomotiveTaurus, 135, motorForward, gleis1, 1.9, bahnhof2, 9.0),
Fahrt(locomotiveTaurus, 125, motorBackward, gleis1, 1.8, bahnhof1, 8.2) ,
Fahrt(locomotive2043, 150, motorForward, gleis2, 2.2, bahnhof2, 9.0),
Fahrt(locomotive2043, 165, motorBackward, gleis2, 2.0, bahnhof1, 8.6)
Fahrt(locomotiveTaurus, 135, motorForward, gleis1, 1.8, bahnhof2, 9.0),
Fahrt(locomotiveTaurus, 120, motorBackward, gleis1, 1.8, bahnhof1, 8.2) ,
Fahrt(locomotive2043, 135, motorForward, gleis2, 1.2, bahnhof2, 9.0),
Fahrt(locomotive2043, 150, motorBackward, gleis2, 1.2, bahnhof1, 8.7)
};
int _currentFahrt;