Solution#
- class ansys.mapdl.core.solution.Solution(mapdl)#
Collection of parameters specific to the solution.
Useful for checking the status of a solve after running
mapdl.solve()
and determining if it converged, the number of iterations to converge, etc.If the
mapdl.solution()
class is called, it activates the solution processor.Examples
Enter the solution processor (equivalent of the
Mapdl.slashsolu
command).>>> mapdl.solution() ***** MAPDL SOLUTION ROUTINE *****
Check if a solution has converged.
>>> mapdl.solution.converged True
Get the cumulative number of iterations.
>>> mapdl.solution.n_cmit 1.0
Methods
Attributes
Convergence indicator.
Current convergence value.
Current segment convergence value.
Descent parameter.
Displacement convergence value.
Fluid flow convergence value.
Force convergence value.
Heat flow convergence value.
Magnetic flux convergence value.
Moment convergence value.
Maximum creep ratio.
Maximum degree of freedom value.
Maximum plastic strain increment.
Number of iterations in the PCG and symmetric JCG (non-complex version) solvers.
Cumulative number of iterations.
Cumulative number of load steps.
Number of substeps.
Number of equilibrium iterations.
Pressure convergence value.
Response eigenvalue for 1st order systems.
Response frequency for 2nd order systems.
Rotation convergence value.
Scalar magnetic potential convergence value.
Temperature convergence value.
Time step size.
Vector magnetic potential convergence value.
Velocity convergence value.
Voltage convergence value.