cellIC
Description
A cellIC
object specifies the type of an initial
condition on a cell of a geometry. An femodel
object contains
an array of cellIC
objects in its CellIC
property.
cellIC
applies these rules for initial condition
assignments:
You can use a geometric assignment to associate the initial condition with the specified geometric regions or the entire geometry.
You must apply a results-based assignment to all geometric regions because the
results
object contains information about the entire geometry.For separate assignments to a geometric region (or the entire geometry) and the boundaries of that region, the solver uses the specified assignment on the region and chooses the assignment on the boundary as follows. The solver gives an
EdgeIC
assignment precedence over aFaceIC
assignment, even if you specify aFaceIC
assignment after anEdgeIC
assignment. The assignments in order of precedence areVertexIC
(highest precedence),EdgeIC
,FaceIC
, andCellIC
(lowest precedence).
Creation
Description
model.CellIC(
creates a CellID
) = cellIC(Name=Value)cellIC
object and sets properties using one
or more name-value arguments. This syntax assigns the specified structural, thermal, or
electromagnetic initial condition to the specified cells of the geometry stored in the
femodel
object model
. For example,
model.CellIC([1 2]) = cellIC(Temperature=25)
specifies the
temperature on cells 1 and 2.
model.CellIC = cellIC(Name=Value)
assigns the
specified initial condition to the entire geometry. For example, model.CellIC =
cellIC(Temperature = 25)
specifies the initial temperature on all cells of the
geometry.
Input Arguments
Properties
Examples
Version History
Introduced in R2023a