lssolve#
- Mapdl.lssolve(lsmin='', lsmax='', lsinc='', **kwargs)#
Reads and solves multiple load steps.
APDL Command: LSSOLVE
- Parameters:
- lsmin, lsmax, lsinc
Range of load step files to be read and solved, from
lsmintolsmaxin steps oflsinc.lsmaxdefaults tolsmin, andlsincdefaults to 1. Iflsminis blank, a brief command description is displayed. The load step files are assumed to be named Jobname.Sn, where n is a number assigned by thelswritecommand (01--09, 10, 11, etc.). On systems with a 3-character limit on the extension, the "S" is dropped for numbers > 99.
Notes
lssolveinvokes an ANSYS macro to read and solve multiple load steps. The macro loops through a series of load step files written by the LSWRITE command. The macro file called bylssolveis called LSSOLVE.MAC.lssolvecannot be used with the birth-death option.lssolveis not supported for cyclic symmetry analyses.lssolvedoes not support restarts.Examples
Write the load and load step option data to a file and solve it. In this case, write the second load step.
>>> mapdl.lswrite(2) >>> mapdl.lssolve(1, 2)