I am trying the thermo library in python and want to calculate composition of 'milk of lime' and water however when I run the code below:
from thermo.chemical import Mixture
mix = Mixture(['water', 'Ca(OH)2'], Vfls=[.6, .4], T=300, P=1E5)
print(mix.Cp)
I get following error
TypeError: unsupported operand type(s) for /: 'float' and 'NoneType'
When I looked into thermo data it seems like some of the properties for 'Ca(OH)2' is None, am I assuming something wrong in water and 'Ca(OH)2' can be a mixture?