29 Commits

Author SHA1 Message Date
Ian Bell
3ba232d8a2 Bump revision for REFPROP headers 2016-01-06 23:47:31 -07:00
Jorrit Wronski
900ffb0d9d Changed the limits for the range check in update_DmolarT_direct, updated REFPROP-headers 2015-11-28 17:54:43 +01:00
Jorrit Wronski
001eb42364 Updated REFPROP headers 2015-11-15 13:12:43 +01:00
Ian Bell
b26f640459 Bump REFPROP headers revision 2015-11-14 20:32:33 -07:00
Ian Bell
111371df98 Implement fugacity through low-level interface; closes #699 2015-06-30 22:04:08 -06:00
Ian Bell
ae66a3f042 update REFPROP headers 2015-05-05 20:50:54 -06:00
Ian Bell
877223753f Use the new REFPROP header; closes #647 2015-05-05 20:41:46 -06:00
Ian Bell
36a07e72dc Try bumping Eigen revision, maybe this will help with #608? 2015-04-21 18:33:45 -06:00
Ian Bell
b5fc75cee6 Bumped IF97 revision to fix some static variable definitions 2015-04-03 23:08:35 -06:00
Ian Bell
a4816540c0 Bump IF97 revision 2015-04-03 21:32:06 -06:00
Ian Bell
a28bb4ab31 Bump for braces in IF97 2015-04-01 08:42:09 -06:00
Ian Bell
7cab68ae27 Bump IF97 revision again
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2015-04-01 08:34:58 -06:00
Ian Bell
f580caba77 Update IF97 commit 2015-04-01 00:16:54 -06:00
Ian Bell
48fe5b972f Implemented IF97 backend; closes #567 2015-03-31 23:57:25 -06:00
Ian Bell
be6136aefa Bump revision for REFPROP headers 2015-03-31 23:04:25 -06:00
Ian Bell
25e32863cf Bump revision for REFPROP-headers 2015-03-26 19:40:21 -06:00
Ian Bell
8381859326 Commit Catch submodule
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2015-02-26 10:02:17 -07:00
Ian Bell
8a1ce06f62 Writing to single-phase tabular tables works now using msgpack-c
Packed data can be read back into python using something like

``` python
import json
import msgpack
import numpy as np
import matplotlib.pyplot as plt

with open(r'C:\Users\Belli\Documents\Code\coolprop-v5-new\dev\codelite\Debug\single_phase.bin','rb') as fp:
    i, matrices = msgpack.load(fp)
    T,h,p,rho = np.array(matrices['T']), np.array(matrices['hmolar']), np.array(matrices['p']), np.array(matrices['rhomolar'])
    T[np.logical_or(np.isnan(T),np.isinf(T))] = np.nan
    rho[np.logical_or(np.isnan(rho),np.isinf(rho))] = np.nan
    h[np.logical_or(np.isnan(h),np.isinf(h))] = np.nan
    p[np.logical_or(np.isnan(p),np.isinf(p))] = np.nan

    plt.scatter(T, np.log(p), c = rho, linewidths = 0)
    plt.show()
```
2015-02-21 17:34:27 -07:00
Ian Bell
399b046832 Add mathematica external and first cut at CMake integration
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2014-12-31 21:40:24 -05:00
Ian Bell
132b0ab5dd Fix RPVersion function call again
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2014-12-19 17:20:36 -06:00
Ian Bell
f7edca335f Revert Eigen submodule due to bug.
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2014-12-19 16:05:58 -06:00
Jorrit Wronski
fd7a5a7bf0 Updated the external submodules 2014-12-18 11:35:42 +01:00
Jorrit Wronski
a1d2a2a9be Added the external REFPROP header and removed the constants from the cpp file, replaced tabs with 4 spaces 2014-12-18 11:28:23 +01:00
Ian Bell
7b17d579b6 Updated eigen submodule
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2014-08-26 15:05:42 +02:00
Ian Bell
df17eaf6cc python wrapper builds with vs2008 (fixed bug in Eigen)
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2014-08-03 11:37:17 +02:00
jowr
3b6173bf83 Updated externals 2014-08-01 16:42:13 +02:00
Ian Bell
01cf51b979 Updated Catch submodule
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2014-06-26 01:33:22 +02:00
Ian Bell
62448d8357 Uppercase eigen external folder
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
2014-06-26 01:30:48 +02:00
Ian bell
7099c5b8fb Added updated nice wrapper for EES
Signed-off-by: Ian bell <ian.h.bell@gmail.com>
2014-05-15 22:16:39 +02:00