From 2214ab4eb08701d5d13da6f1d777ca10fcab2d4e Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Wed, 25 Jul 2012 15:36:40 +0100 Subject: [PATCH] TPT: Correct freezing temperature for SLTW (-21.1 C) 06d2d5267e --- src/simulation/elements/ICEI.cpp | 2 +- src/simulation/elements/SLTW.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simulation/elements/ICEI.cpp b/src/simulation/elements/ICEI.cpp index c1d4e544d..fd5dc635a 100644 --- a/src/simulation/elements/ICEI.cpp +++ b/src/simulation/elements/ICEI.cpp @@ -39,7 +39,7 @@ Element_ICEI::Element_ICEI() HighPressureTransition = PT_SNOW; LowTemperature = ITL; LowTemperatureTransition = NT; - HighTemperature = 233.0f; + HighTemperature = 252.05f; HighTemperatureTransition = ST; Update = &Element_ICEI::update; diff --git a/src/simulation/elements/SLTW.cpp b/src/simulation/elements/SLTW.cpp index 3dad33c7c..7afdc26c3 100644 --- a/src/simulation/elements/SLTW.cpp +++ b/src/simulation/elements/SLTW.cpp @@ -37,7 +37,7 @@ Element_SLTW::Element_SLTW() LowPressureTransition = NT; HighPressure = IPH; HighPressureTransition = NT; - LowTemperature = 233.0f; + LowTemperature = 252.05f; LowTemperatureTransition = PT_ICEI; HighTemperature = 383.0f; HighTemperatureTransition = ST;