In [12]:
%matplotlib inline
from pycalphad import equilibrium, calculate
from pycalphad import Database, Model
import pycalphad.variables as v
import matplotlib.pyplot as plt
In [4]:
dbf = Database('2016-06-10 22:41:43.186482-ALNI-iter0.tdb')
In [6]:
res = calculate(dbf, ['AL', 'NI', 'VA'], 'AL3NI2', T=300, P=101325)
In [14]:
plt.scatter(res.X.sel(component='AL'), res.GM)
Out[14]:
In [ ]: