1function nm = name(tp)
2% NAME  Get the name of the phase.
3% nm = name(tp)
4% :param tp:
5%     Instance of class :mat:func:`ThermoPhase` (or another
6%     object that derives from ThermoPhase)
7% :return:
8%     String name of the input phase
9%
10
11nm = phase_get(thermo_hndl(tp), 42);
12