Property Methods¶
Introduction¶
Property methods define material properties in a flexible and reusable way. They are used across μfem to describe quantities such as:
- Thermal conductivity
- Density
- Heat capacity
- Magnetic permeability
- Other material parameters
Property methods define how a material property depends, for example, on temperature or other variables, and provide values automatically during simulation. Material properties are typically attached to materials and consumed by the corresponding models.
Property methods exist for both:
- Scalar properties
- Tensor properties
Note, that not all property methods here are supported by each model. In addition, individual models may also provide their own specialized property methods.
Scalar Property Methods¶
Scalar property methods describe material properties represented by a single value. Typical examples include density or heat capacity. They may also be used to represent tensor properties when the material is assumed to be isotropic.
Constant¶
The material property \(y\) is uniform and independent of temperature or any other state:
Used when the property variation is negligible or a linear approximation is sufficient. The property remains constant within the region of interest.
Linear Temperature Coefficient¶
The material property \(y\) varies linearly with temperature:
where:
- \(T\) - local temperature
- \(y_0\) - property value at the reference temperature
- \(\alpha\) - temperature coefficient
- \(T_{\text{ref}}\) - reference temperature
Used when moderate temperature dependence must be captured with a simple model.
thermal_conductivity_my_material = mufem.methods.LinearTemperatureCoefficient(
reference_value=25.0,
temperature_coefficient=2.5,
reference_temperature=300.0,
)
Note that this method requires temperature to be present in the model.
Temperature Table¶
The material property \(y\) is defined by discrete data points and linearly interpolated:
Used when experimental or literature data is available or the property exhibits nonlinear behavior.
thermal_conductivity_method = mufem.methods.TemperatureTable(
temperature=[300, 400, 500, 600],
values=[40, 100, 80, 70]
)
Note that this method requires temperature to be present in the model.
Function¶
The material property \(y\) is defined by an arbitrary scalar coefficient. This allows the property to depend on space and other field variables (such as temperature, magnetic flux density, etc.)
$$ y(\mathbf{x}) = e{-x2} $$ This method is mainly used for benchmarking or for dependencies not covered by other property methods.
Note that no automatic linearization is provided, which may result in slower convergence.
Tensor Property Methods¶
Tensor property methods describe matrix-valued material properties, typically symmetric, used for anisotropic materials such as:
- Thermal conductivity
- Electrical conductivity
- Magnetic permeability
- Elasticity
Isotropic¶
An isotropic tensor is specified using a scalar property method.
Transverse (Transverse Isotropic)¶
The tensor has one value along a preferred (parallel) direction and another value in the transverse plane:
where: - \(y_\parallel\) - property along the preferred (parallel) direction - \(y_\perp\) - property along the preferred (parallel) direction
This form is common in layered materials, laminates, and strongly oriented media.
Orthotropic¶
The tensor has different values along three orthogonal directions:
This represents materials where the property:
- Is anisotropic but constant in space and temperature
- Does not depend on the solution field
- Remains fixed throughout the simulation
General Symmetric¶
A fully symmetric tensor:
This is the most general symmetric tensor and is commonly used for anisotropic but reciprocal materials
electric_conductivity_my_material = mufem.methods.SymmetricTensor(
xx=5.6e7, xy=3.0e5, xz=3.0e5,
yy=5.6e7, yz=4.0e5,
zz=1.0e4,
)
Note that any symmetric tensor can be diagonalized $$ \mathbf{Y}{\textrm{g}} = \mathbf{R} \mathbf{Y}^T $$ where: - }} \mathbf{R\(\mathbf{Y}_{\textrm{g}}\) - tensor in global coordinates - \(\mathbf{Y}_{\textrm{p}}\) - principal (orthotropic) tensor - \(\mathbf{R}\) - rotation/coordinate transform
For this reason, it is often preferable to use the orthotropic representation together with an appropriate coordinate transformation.
General (Non-Symmetric)¶
Under certain conditions, materials may be described by non-symmetric tensors (for example Hall conductivity):
This is the most general tensor form with no symmetry assumptions.