From dc75fa8feaf21f435fa4c5b198de25fa4cf8cb51 Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Fri, 25 Jul 2014 11:06:28 -0400 Subject: [PATCH] Fixed typo in CoolProp.cpp Signed-off-by: Ian Bell --- src/CoolProp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CoolProp.cpp b/src/CoolProp.cpp index 2bb7509d..233cd0f4 100644 --- a/src/CoolProp.cpp +++ b/src/CoolProp.cpp @@ -784,7 +784,7 @@ std::string get_BibTeXKey(std::string Ref, std::string key) else if (!key.compare("VISCOSITY")){ return HEOS.get_components()[0]->transport.BibTeX_viscosity; } else if (!key.compare("CONDUCTIVITY")){ return HEOS.get_components()[0]->transport.BibTeX_conductivity; } else if (!key.compare("ECS_LENNARD_JONES")){ throw NotImplementedError(); } - else if (!key.compare("ECS_VISCSOSITY_FITS")){ throw NotImplementedError(); } + else if (!key.compare("ECS_VISCOSITY_FITS")){ throw NotImplementedError(); } else if (!key.compare("ECS_CONDUCTIVITY_FITS")){ throw NotImplementedError(); } else if (!key.compare("SURFACE_TENSION")){ return HEOS.get_components()[0]->ancillaries.surface_tension.BibTeX;} else{ return "Bad key";}