get name of assigned material using Python

I have a model with some plate element (e.g. tunnel lining). In dfiferent phases, different materials are assigned to this plate element. Using python, how could I determine, what material was assigned to plate element in a specified phase? I've tried the following command,

MaterialName = g_o.getresults(phasename, g_o.ResultTypes.Plate.Name, 'node') 

Basically, I would like to collect internal forces in plate element, but only in phases, where specific materials were assigned.