I updated my Julia packages today, and now, CoolProp doesn't work!
julia> using Clapeyron
julia> SingleFluid("water")
MultiParameter Equation of state for water:
Polynomial power terms: 7
Exponential terms: 44
Gaussian bell-shaped terms: 3
Non Analytic terms: 2
julia> using CoolProp
julia> SingleFluid("water")
ERROR: Coolprop: Buffer is too small; must be at least 210123 characters in size....
Here is what happens if I uninstall CoolProp v0.2.2 and install CoolProp v0.2.1:
julia> using Clapeyron
julia> SingleFluid("water")
MultiParameter Equation of state for water:
Polynomial power terms: 7
Exponential terms: 44
Gaussian bell-shaped terms: 3
Non Analytic terms: 2
julia> using CoolProp
julia> SingleFluid("water")
MultiParameter Equation of state for water:
Polynomial power terms: 7
Exponential terms: 44
Gaussian bell-shaped terms: 3
Non Analytic terms: 2
I updated my Julia packages today, and now,
CoolPropdoesn't work!Here is what happens if I uninstall
CoolProp v0.2.2and installCoolProp v0.2.1: