Source code for abaqus.StepOutput.Restart

from abaqusConstants import *


[docs]class Restart: """The Restart object defines a restart request. Notes ----- This object can be accessed by: .. code-block:: python import step mdb.models[name].steps[name].restart The corresponding analysis keywords are: - RESTART """ def __init__(self, numberIntervals: int = 0, timeMarks: Boolean = OFF, overlay: Boolean = OFF, frequency: int = 0): """This method creates a restart request. Notes ----- This function can be accessed by: .. code-block:: python mdb.models[name].steps[name].Restart Parameters ---------- numberIntervals An Int specifying the number of intervals during the step at which restart information will be written. The default value is 0. The default value is 1. timeMarks A Boolean specifying whether to use exact time marks for writing during an analysis. The default value is OFF. The default value is OFF. overlay A Boolean specifying that only one increment per step should be retained on the restart file, thus minimizing the size of the restart file. The default value is OFF. The default value is ON. frequency An Int specifying the increments at which restart information will be written. The default value is 0. The default value is 0.This argument applies only to Abaqus/Standard analyses. Returns ------- A Restart object. Raises ------ RangeError """ pass
[docs] def setValues(self): """This method modifies the Restart object. Raises ------ RangeError """ pass