Skip to content

Commit 380cf61

Browse files
committed
Automatic merge of T1.6-186-g21d9ada29 and 9 pull requests
- Pull request #1082 at a0547a3: Allow variable water level in glass gauge - Pull request #1057 at 85bde8e: Switchable brake system - Pull request #1122 at 73c47b4: Wagon Size and Centering Controls - Pull request #1124 at e241a0d: Built-in PBL2 brake controller - Pull request #1128 at b6c197f: Particle Emitter Overhaul - Pull request #1169 at 906f204: Revise TrainCar.SetUpWheels to Better Handle Unusual Rolling Stock - Pull request #1175 at d28315e: Make Data Logger interval configurable - Pull request #1176 at 4cd961b: Remove Implicit Requirement for Engine Name to Come After "Engine (" - Pull request #1178 at 015769e: Fix Diesel RPM Rate of Change
11 parents a40c8b7 + 21d9ada + a0547a3 + 85bde8e + 73c47b4 + e241a0d + b6c197f + 906f204 + d28315e + 4cd961b + 015769e commit 380cf61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Orts.Simulation/Simulation/RollingStocks/MSTSSteamLocomotive.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2739,7 +2739,7 @@ private float CalculateLiveSteamInjectorDefaultSize( int injectorNumber, float F
27392739
var NozzleCorrectionFactor = (float)Math.Pow(i / refNozzleSize, 2);
27402740
float TestInjectorFlowRateLBperH = NozzleCorrectionFactor * LiveSteamInjectorMaximaWaterDeliveryLBatPSIandF.Get(FeedwaterTemperature, pressureCorrectionFactor * MaxBoilerPressurePSI);
27412741

2742-
if (TestInjectorFlowRateLBperH >= 0.75f * MaxBoilerOutputLBpH)
2742+
if (TestInjectorFlowRateLBperH >= MaxBoilerOutputLBpH)
27432743
{
27442744
ActualInjectorNozzleSizeMM = i;
27452745
if (Simulator.Settings.VerboseConfigurationMessages)

0 commit comments

Comments
 (0)