diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs index fd7d038a70df89e9535fd5e2c2e6e33942b62f4d..d6fa80ae44d4a5fdfc254e75c4c079cef967d21d 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs @@ -575,7 +575,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl var tStar = tStarPrev + PreviousState.dt; dynFullPowerCalculated = stationaryFullLoadPower * (pt1.IsEqual(0) ? 1 : 1 - Math.Exp((-tStar / pt1).Value())); } catch (VectoException e) { - Log.Warn("PT1 calculation failed (dryRun: {0}): {1}", dryRun, e.Message); + if (dryRun) { + Log.Info("PT1 calculation failed (dryRun: {0}): {1}", dryRun, e.Message); + } else { + Log.Warn("PT1 calculation failed (dryRun: {0}): {1}", dryRun, e.Message); + } + if (dryRun) { dynFullPowerCalculated = stationaryFullLoadPower; } else {