From 66f250b29deb6eaf3c5e6605574af474bdda943e Mon Sep 17 00:00:00 2001 From: jacob1 Date: Thu, 20 Jun 2013 23:01:41 -0400 Subject: [PATCH] fix PTCT melting temperature, seems to have been broken in 525f87fd6be3e716 , fixes #108 --- src/simulation/elements/PTCT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulation/elements/PTCT.cpp b/src/simulation/elements/PTCT.cpp index e78c45366..89262088f 100644 --- a/src/simulation/elements/PTCT.cpp +++ b/src/simulation/elements/PTCT.cpp @@ -39,7 +39,7 @@ Element_PTCT::Element_PTCT() HighPressureTransition = NT; LowTemperature = ITL; LowTemperatureTransition = NT; - HighTemperature = 1414.0f; + HighTemperature = 1687.0f; HighTemperatureTransition = PT_LAVA; Update = &Element_PTCT::update;