In [1]:
%cat 0Source_Citation.txt
In [2]:
%matplotlib inline
# %matplotlib notebook # for interactive
For high dpi displays.
In [3]:
%config InlineBackend.figure_format = 'retina'
This example compares pressure calculated from pytheos
and original publication for the platinum scale by Yokoo 2009.
In [4]:
import matplotlib.pyplot as plt
import numpy as np
from uncertainties import unumpy as unp
import pytheos as eos
In [5]:
eta = np.linspace(1., 0.60, 21)
print(eta)
In [6]:
yokoo_pt = eos.platinum.Yokoo2009()
In [7]:
yokoo_pt.print_equations()
In [8]:
yokoo_pt.print_equations()
In [9]:
yokoo_pt.print_parameters()
In [10]:
v0 = 60.37930856339099
In [11]:
yokoo_pt.three_r
Out[11]:
In [12]:
v = v0 * (eta)
temp = 3000.
In [13]:
p = yokoo_pt.cal_p(v, temp * np.ones_like(v))
In [14]:
print('for T = ', temp)
for eta_i, p_i in zip(eta, p):
print("{0: .3f} {1: .2f}".format(eta_i, p_i))
It is alarming that even 300 K isotherm does not match with table value. The difference is 1%.
In [15]:
v = yokoo_pt.cal_v(p, temp * np.ones_like(p), min_strain=0.6)
print(1.-(v/v0))
In [ ]: