补充材料5:输出共晶点计算输出曲线的数据

共晶点的计算脚本为 example4_eutectic.py,默认输出曲线而不输出数据。

输出摩尔比、温度数据的设置

    diffs = comp1_fracs[0] - comp1_fracs[1]

后面加一行,变为:

    diffs = comp1_fracs[0] - comp1_fracs[1]
    print(comp1_fracs[0],comp1_fracs[1],temps)

则在输出图谱的同时,显示对应的数据:

说明