Source code for abaqus.Session.MemoryReductionOptions
from abaqusConstants import *
[docs]class MemoryReductionOptions:
"""The MemoryReductionOptions object controls the default settings that Abaqus/CAE uses for
running in reduced memory mode. The MemoryReductionOptions object has no constructor.
Abaqus creates the *MemoryReductionOptions* member when a session is started.
Notes
-----
This object can be accessed by:
.. code-block:: python
session.memoryReductionOptions
"""
[docs] def setValues(self, reducedMemoryMode: Boolean = ON, percentThreshold: float = 75):
"""This method modifies the MemoryReductionOptions object.
Parameters
----------
reducedMemoryMode
A Boolean specifying whether Abaqus/CAE should run in reduced memory mode. The default
value is ON.
percentThreshold
A Float specifying the percent of *kernelMemoryLimit* at which the reduced memory mode
starts. The default value is 75.0.
"""
pass