Prev Subsubsection 3.12.2.2: Traction Load Up Subsection 3.12.2: Surface Loads Subsubsection 3.12.2.4: Fluid Flux Next
3.12.2.3 Mixture Normal Traction
This section applies to biphasic, biphasic-solute, triphasic and multiphasic analyses. In a mixture of intrinsically incompressible solid and fluid constituents, the formulation adopted in FEBio implies that the total traction is a natural boundary condition (FEBio Theory Manual). If this boundary condition is not explicitly prescribed, the code automatically assumes that it is equal to zero. Therefore, boundaries of mixtures are traction-free by default.
The mixture traction is the traction vector corresponding to the mixture (or total) stress ; thus , where is the outward unit normal to the boundary surface. Since , where is the fluid pressure and is the effective stress resulting from strains in the solid matrix, it is also possible to represent the total traction as , where is the effective traction. Currently, FEBio allows the user to specify only the normal component of the traction, either (the normal component of the mixture traction) or (the normal component of the effective traction):
A mixture normal traction is defined by the surface_load element using normal_traction for the type attribute.
<surface_load type="normal_traction" surface="surface1"> <traction [lc="1"]>1.0</traction> <effective>1</effective> <linear>0</linear> </surface_load>
The traction element defines the magnitude of the traction force. The optional attribute lc defines a loadcurve that controls the time dependency of the traction force magnitude. If omitted a constant traction is applied.
The effective element defines whether the traction is applied as an effective traction or a total mixture traction.
The linear element defines whether the traction remains normal to the deformed surface or the reference surface. If set to true the traction remains normal to the reference surface. When false it defines a follower force that remains normal to the deformed surface.
The surface element defines the surface to which the traction is applied. It consists of child elements defining the individual surface facets.
Unlike the mixture and effective traction, the fluid pressure is a nodal variable (see Section 3.10.1↑). There may be common situations where the user must apply a combination of related fluid pressure and traction boundary conditions. For example, if a biphasic surface is subjected to a non-zero fluid pressure , the corresponding boundary conditions are and (or ). In FEBio, both boundary conditions must be applied. For example:
<Boundary> <prescribed bc="p" node_set="set1"> <scale lc="1">1.0</scale> </prescribed> <surface_load type="normal_traction" surface="surf1"> <traction lc="1">-1.0</traction> <effective>0</effective> <linear>0</linear> </surface_load> </Boundary> <LoadData> <loadcontroller id="1" type="loadcurve"> <points> <loadpoint>0,0</loadpoint> <loadpoint>1,2.0</loadpoint> </points> </loadcurve> </LoadData>