/dports/games/openbve/OpenBVE-1.8.2.1/source/TrainManager/Brake/AirBrake/ |
H A D | ElectromagneticStraightAirBrake.cs | 255 if (p + Tolerance < straightAirPipe.CurrentPressure) in Update() 257 double r = emergencyHandle.Actual ? straightAirPipe.EmergencyRate : straightAirPipe.ReleaseRate; in Update() 258 double d = straightAirPipe.CurrentPressure - p; in Update() 262 straightAirPipe.CurrentPressure -= r; in Update() 264 else if (p > straightAirPipe.CurrentPressure + Tolerance) in Update() 266 double r = straightAirPipe.ServiceRate; in Update() 267 double d = p - straightAirPipe.CurrentPressure; in Update() 271 straightAirPipe.CurrentPressure += r; in Update()
|
H A D | ElectricCommandBrake.cs | 148 straightAirPipe.CurrentPressure = pp; in Update()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/TrainManager/Brake/ |
H A D | CarBrake.cs | 34 public StraightAirPipe straightAirPipe; field in TrainManager.BrakeSystems.CarBrake
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/ObjectViewer/Trains/ |
H A D | NearestTrainStatus.cs | 63 car.CarBrake.straightAirPipe.CurrentPressure = StraightAirPipePressure * 1000.0; in Apply()
|
H A D | NearestTrain.cs | 83 …train.Cars[i].CarBrake.straightAirPipe = new StraightAirPipe(Status.StraightAirPipePressure * 1000… in CreateDummyTrain()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/OpenBVE/System/ |
H A D | Scripting.cs | 286 public static double straightAirPipe(TrainBase Train, int CarIndex) in straightAirPipe() method in OpenBve.Scripting.Train 293 return Train.Cars[CarIndex].CarBrake.straightAirPipe.CurrentPressure; in straightAirPipe()
|
/dports/games/openbve/OpenBVE-1.8.2.1/documentation/Examples/JR 113 Series 3D Cab/Train/113-1000atccab-3D/ |
H A D | panel.animated | 116 rotatezfunction = -2.44346095279206 + straightAirPipe * 0.00000488692190558412
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/Plugins/Train.OpenBve/Train/XML/ |
H A D | TrainXmlParser.BrakeNode.cs | 245 …Train.Cars[Car].CarBrake.straightAirPipe = new StraightAirPipe(straightAirPipeServiceRate, straigh… in ParseBrakeNode()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/Plugins/Train.OpenBve/Train/ |
H A D | TrainDatParser.cs | 1207 Train.Cars[i].CarBrake.straightAirPipe = new StraightAirPipe(300000.0, 400000.0, 200000.0); in Parse() 1238 …Train.Cars[i].CarBrake.straightAirPipe.CurrentPressure = Train.Cars[i].CarBrake.brakeCylinder.Serv… in Parse() 1265 Train.Cars[i].CarBrake.straightAirPipe.CurrentPressure = 0.0; in Parse() 1290 Train.Cars[i].CarBrake.straightAirPipe.CurrentPressure = 0.0; in Parse()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/TrainManager/SafetySystems/Plugin/ |
H A D | Plugin.cs | 129 …double sapPressure = this.Train.Cars[this.Train.DriverCar].CarBrake.straightAirPipe.CurrentPressur… in UpdatePlugin()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/RouteViewer/ |
H A D | FunctionScripts.cs | 953 Function.Stack[s] = Train.Cars[CarIndex].CarBrake.straightAirPipe.CurrentPressure; in ExecuteFunctionScript() 965 Function.Stack[s - 1] = Train.Cars[j].CarBrake.straightAirPipe.CurrentPressure; in ExecuteFunctionScript()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/ObjectViewer/ |
H A D | FunctionScripts.cs | 958 Function.Stack[s] = Train.Cars[CarIndex].CarBrake.straightAirPipe.CurrentPressure; in ExecuteFunctionScript() 970 Function.Stack[s - 1] = Train.Cars[j].CarBrake.straightAirPipe.CurrentPressure; in ExecuteFunctionScript()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/OpenBVE/Game/ObjectManager/AnimatedObjects/ |
H A D | FunctionScripts.cs | 1123 Function.Stack[s] = Train.Cars[CarIndex].CarBrake.straightAirPipe.CurrentPressure; in ExecuteFunctionScript() 1135 Function.Stack[s - 1] = Train.Cars[j].CarBrake.straightAirPipe.CurrentPressure; in ExecuteFunctionScript()
|
/dports/games/openbve/OpenBVE-1.8.2.1/source/OpenBVE/Graphics/Renderers/ |
H A D | Overlays.Debug.cs | 369 double p = TrainManager.PlayerTrain.Cars[i].CarBrake.straightAirPipe.CurrentPressure; in RenderBrakeSystemDebug()
|