From 0bf815b2917018f5e0798db25526167ebad1a6da Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Mon, 18 Oct 2021 16:50:49 -0400
Subject: [PATCH] More debugging of REFPROP setup

---
 src/sat_Z_accuracy.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/sat_Z_accuracy.cpp b/src/sat_Z_accuracy.cpp
index 1a2efc4..837a921 100644
--- a/src/sat_Z_accuracy.cpp
+++ b/src/sat_Z_accuracy.cpp
@@ -53,13 +53,13 @@ int REFPROP_setup() {
     // Load the shared library and set up the fluid
     std::string err;
     bool loaded_REFPROP = load_REFPROP(err, path, DLL_name);
-    //printf("Loaded refprop: %s @ address %zu\n", loaded_REFPROP ? "true" : "false", REFPROP_address());
+    printf("Loaded refprop: %s @ address %zu\n", loaded_REFPROP ? "true" : "false", REFPROP_address());
     if (!loaded_REFPROP) { throw std::invalid_argument("Bad load of REFPROP"); }
     SETPATHdll(const_cast<char*>(path.c_str()), 400);
     int ierr = 0, nc = 1;
-    char herr[255], hfld[10000] = "PROPANE", hhmx[255] = "HMX.BNC", href[4] = "DEF";
+    char herr[256], hfld[10000] = "PROPANE", hhmx[255] = "HMX.BNC", href[4] = "DEF";
     SETUPdll(nc, hfld, hhmx, href, ierr, herr, 10000, 255, 3, 255);
-    if (ierr != 0) { throw std::invalid_argument("Bad load of REFPROP"); }
+    if (ierr != 0) { throw std::invalid_argument("Bad setup of REFPROP: "+std::string(herr)); }
 }
 
 struct REFPROP_sat_output {
-- 
GitLab