nodal_contact_friction_stress#
- PostProcessing.nodal_contact_friction_stress()#
Nodal contact friction stress of the current result.
Equivalent MAPDL command: :rtype:
ndarray
PRNSOL, CONT, SFRIC
- Returns:
numpy.ndarray
Numpy array containing the thermal nodal equivalent strain of the current result.
Examples
Thermal quivalent strain for the current result.
>>> mapdl.post_processing.nodal_contact_friction_stress() array([15488.84357602, 16434.95432337, 15683.2334295 , ..., 0. , 0. , 0. ])
Strain from result 2.
>>> mapdl.post1() >>> mapdl.set(1, 2) >>> mapdl.post_processing.nodal_contact_friction_stress() array([15488.84357602, 16434.95432337, 15683.2334295 , ..., 0. , 0. , 0. ])