from abaqusConstants import *
from .AdaptivityIteration import AdaptivityIteration
from ..Job.ModelJob import ModelJob
[docs]class AdaptivityProcess:
"""The AdaptivityProcess object defines a series of jobs that will be submitted for
analysis. Abaqus performs adaptive remeshing between each job.
Attributes
----------
status: SymbolicConstant
A SymbolicConstant specifying the status of the adaptivity process. Possible values are
SUBMITTED, RUNNING, ABORTED, TERMINATED, and COMPLETED.
iterations: dict[int, AdaptivityIteration]
A repository of :py:class:`~abaqus.Adaptivity.:py:class:`~abaqus.Adaptivity.AdaptivityIteration.AdaptivityIteration`.:py:class:`~abaqus.Adaptivity.AdaptivityIteration.AdaptivityIteration`` objects specifying the :py:class:`~abaqus.Adaptivity.:py:class:`~abaqus.Adaptivity.AdaptivityIteration.AdaptivityIteration`.:py:class:`~abaqus.Adaptivity.AdaptivityIteration.AdaptivityIteration`` objects
received during running the adaptivity process.
Notes
-----
This object can be accessed by:
.. code-block:: python
import job
mdb.adaptivityProcesses[name]
"""
# A SymbolicConstant specifying the status of the adaptivity process. Possible values are
# SUBMITTED, RUNNING, ABORTED, TERMINATED, and COMPLETED.
status: SymbolicConstant = None
# A repository of AdaptivityIteration objects specifying the AdaptivityIteration objects
# received during running the adaptivity process.
iterations: dict[int, AdaptivityIteration] = dict[str, AdaptivityIteration]()
def __init__(self, name: str, job: ModelJob, maxIterations: int = 3, jobPrefix: str = ''):
"""This method creates an AdaptivityProcess object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.AdaptivityProcess
Parameters
----------
name
A String specifying the name of the Adaptivity Process.
job
A ModelJob object specifying a job to be used as the prototype for all analysis jobs run
by the adaptivity process.
maxIterations
An Int specifying the maximum number of analysis jobs that will be run by the Adaptivity
Process. Abaqus performs adaptive remeshing between each analysis. The default value is
3.
jobPrefix
A String specifying the prefix to use for jobs created by the adaptivity process. An
empty string indicates that the name of the adaptivity process should be used. The
default value is an empty string.
Returns
-------
An AdaptivityProcess object.
Raises
------
AbaqusException.
"""
pass
[docs] def submit(self, waitForCompletion: Boolean = OFF, datacheckJob: Boolean = False,
continueJob: Boolean = False):
"""This method begins the process of analysis and adaptive remeshing.
Parameters
----------
waitForCompletion
A Boolean specifying whether to interrupt the execution of a script until the end of the
adaptive remeshing process is reached.
datacheckJob
A Boolean specifying whether to run the adaptivity as a datacheck analysis. The default
value is False. The datacheckJob and continueJob arguments cannot both be True.
continueJob
A Boolean specifying whether to run the adaptivity as a continuation analysis. The
default value is False. The datacheckJob and continueJob arguments cannot both be True.
"""
pass
[docs] def setValues(self, maxIterations: int = 3, jobPrefix: str = ''):
"""This method modifies the AdaptivityProcess object.
Parameters
----------
maxIterations
An Int specifying the maximum number of analysis jobs that will be run by the Adaptivity
Process. Abaqus performs adaptive remeshing between each analysis. The default value is
3.
jobPrefix
A String specifying the prefix to use for jobs created by the adaptivity process. An
empty string indicates that the name of the adaptivity process should be used. The
default value is an empty string.
"""
pass
[docs] def AdaptivityIteration(self, iteration: int, jobName: str, modelName: str, odbPath: str, remeshingErrors: int) -> AdaptivityIteration:
"""This method creates an AdaptivityIteration object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.AdaptivityProcess
Parameters
----------
iteration
An Int specifying the sequence number for this iteration in the adaptivity process.
jobName
A String specifying the name of the job that was run for this iteration.
modelName
A String specifying the name of the model that was analyzed and remeshed in this
iteration.
odbPath
A String specifying the path to the ODB file that was created for this iteration.
remeshingErrors
An Int specifying the number of part instances which generated errors while remeshing
the model in this iteration of the adaptivity process.
Returns
-------
An AdaptivityIteration object.
"""
self.iterations[iteration] = iteration = AdaptivityIteration(iteration, jobName, modelName, odbPath,
remeshingErrors)
return iteration