ansys.mapdl.core.Mapdl.sucalc#
- Mapdl.sucalc(rsetname='', lab1='', oper='', lab2='', fact1='', fact2='', const='', **kwargs)#
Create new result data by operating on two existing result data sets on a given surface.
Mechanical APDL Command: SUCALC
- Parameters:
- rsetname
str
Eight character name for new result data.
- lab1
str
First result data upon which to operate.
- oper
str
Mathematical operation to perform.
ADD
- (lab1
+lab2
+const
)SUB
- (lab1
-lab2
+const
)MULT
- (lab1
*lab2
+const
)DIV
- (lab1
/lab2
+const
)EXP
- (lab1
^fact1
+lab2
^fact2
+const
)COS
- (cos (lab1
) +const
)SIN
- (sin (lab1
) +const
)ACOS
- (acos (lab1
) +const
)ASIN
- (asin (lab1
) +const
)ATAN
- (atan (lab1
) +const
)ATA2
- (atan2 (lab1
/lab2
) +const
)LOG
- (log (lab1
) +const
)ABS
- (abs (lab1
) +const
)ZERO
- (0 +const
)
- lab2
str
Second result data upon which to operate.
- fact1
str
First scaling factor (for EXP option only).
- fact2
str
Second scaling factor (for EXP option only).
- const
str
Constant added to the values in the resulting data.
- rsetname