Source code for abaqus.Odb.ScratchOdb
from .Odb import Odb
[docs]class ScratchOdb:
"""A scratch output database is associated with an open output database and is used to
store session-related, non-persistent objects, such as Step, Frame and FieldOutput
objects. Abaqus creates a scratch output database when needed for these non-persistent
objects during an Abaqus/CAE session. Abaqus deletes the scratch output database when
the associated output database is closed.
Notes
-----
This object can be accessed by:
.. code-block:: python
import odbAccess
session.scratchOdbs[name]
"""
def __init__(self, odb: Odb):
"""This method creates a new ScratchOdb object.
Notes
-----
This function can be accessed by:
.. code-block:: python
session.ScratchOdb
Parameters
----------
odb
An Odb object specifying the output database with which to associate.
Returns
-------
A ScratchOdb object.
"""
pass