Skip to content

Commit b764585

Browse files
committed
Automatic merge of T1.5.1-687-gd279e384a and 10 pull requests
- Pull request #570 at c59c788: Experimental glTF 2.0 support with PBR lighting - Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters - Pull request #865 at 67014b7: Dispatcher window improvements - Pull request #874 at f8dbeab: Dynamic brake controller refactoring - Pull request #875 at 43bf33e: Bug fix for https://bugs.launchpad.net/or/+bug/2036346 Player train switching doesn't work with 3D cabs - Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder - Pull request #878 at 279e244: Implement Polach Adhesion - Pull request #882 at d8a1c4d: Blueprint/train car operations UI window - Pull request #883 at edcc2dd: SwitchPanel disconnect/connect handling - Pull request #885 at c81447b: feat: Add notifications to Menu
12 parents f870e00 + d279e38 + c59c788 + d00beb9 + 67014b7 + f8dbeab + 43bf33e + f92de76 + 279e244 + d8a1c4d + edcc2dd + c81447b commit b764585

File tree

1 file changed

+0
-23
lines changed
  • Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/PowerTransmissions

1 file changed

+0
-23
lines changed

Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/PowerTransmissions/Axle.cs

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -972,29 +972,6 @@ public virtual void Update(float timeSpan)
972972
TrainSpeedMpS = 10 / 3.6f;
973973
Polach.Update();
974974
axleStaticForceN = AxleWeightN * SlipCharacteristics(0);
975-
976-
/*
977-
double[] spd = new double[50];
978-
double[] adh = new double[50];
979-
for (int i = 0; i < spd.Length; i++)
980-
{
981-
spd[i] = i / (float)spd.Length;
982-
adh[i] = SlipCharacteristics(spd[i]);
983-
}
984-
for (int i = 0; i < spd.Length; i++)
985-
{
986-
Console.Write(spd[i]);
987-
Console.Write(" ");
988-
}
989-
Console.WriteLine("");
990-
Console.WriteLine("");
991-
for (int i = 0; i < spd.Length; i++)
992-
{
993-
Console.Write(adh[i]);
994-
Console.Write(" ");
995-
}
996-
Console.WriteLine("");
997-
*/
998975
}
999976

1000977
motor?.Update(timeSpan);

0 commit comments

Comments
 (0)