Bicubic coefficients are calculated in all cells

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2015-02-26 20:54:30 -07:00
parent 52a123437c
commit 6eaea3e642
5 changed files with 153 additions and 11 deletions

View File

@@ -46,6 +46,15 @@ public:
virtual const char* what() const throw(){ return err.c_str(); }
};
class KeyError: public CoolPropBaseError
{
public:
KeyError() throw() {};
KeyError(std::string errstring) throw() {err=errstring;};
~KeyError() throw() {};
virtual const char* what() const throw(){ return err.c_str(); }
};
class AttributeError: public CoolPropBaseError
{
public: