Two examples of sequential workflows are shown.
The first example is a sequentially coupled moisture-stress analysis, which is an example of a
sequentially coupled multiphysics analysis. A typical sequentially coupled moisture-stress
analysis consists of two Abaqus/Standard runs: a mass diffusion analysis and a subsequent stress analysis. Normalized
concentrations are stored in the output database file for the mass diffusion analysis and
read into the subsequent stress analysis as a predefined field. An example problem is shown
in Reading scalar nodal output from the output database into field variables.
The following template shows the input for the mass diffusion analysis
massdiffusion2d.inp
:
HEADING
…
ELEMENT, TYPE=DC2D4
(Choose the mass diffusion element type)
…
STEP
MASS DIFFUSION
…
Apply loads and boundary conditions
…
** Write all normalized concentrations to the output
** database file, massdiffusion2d.odb
OUTPUT, FIELD
NODE OUTPUT
NNC
END STEP
The following template shows the input for the subsequent
static structural analysis:
HEADING
…
ELEMENT, TYPE=CPE4R
(Choose the continuum element type compatible with the mass diffusion element type used)
…
MATERIAL
EXPANSION, FIELD=1
(Define field expansion for field 1 so that the normalized concentration causes volumetric
strain in the stress analysis)
…
STEP
STATIC
…
Apply structural loads and boundary conditions
…
FIELD, FILE=massdiffusion2d.odb
, OUTPUT VARIABLE=NNC, VARIABLE=1
Read in all normalized concentrations from the output database file into field variable 1
…
END STEP
The second example shows a template for including a known pore fluid pressure field as a
predefined field variable in a static or in an explicit dynamic step.
HEADING
…
ELEMENT, TYPE=element_type
(Choose the appropriate type of continuum element to carry out the stress analysis)
…
MATERIAL
PORE FLUID PRESSURE, FIELD=n
Associate pore fluid pressure field with the predefined field variable n
…
STEP
STATIC (or DYNAMIC, EXPLICIT)
…
Apply structural loads and boundary conditions
…
FIELD, VARIABLE=n
Read in known pore fluid pressure field into predefined field variable n
…
END STEP