Materials
This section provides a practical overview of the material models available in COMFOR. For detailed theoretical background and mathematical formulations, refer to the Theory section.
Available material models#
Common parameters for all materials#
Every material block requires these base parameters regardless of the underlying constitutive law.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
type |
String | Yes | - | Material model keyword. |
density |
Float | Yes | - | Mass density (\(\rho\)). |
damping |
Float | No | 0.0 |
Mass proportional Rayleigh damping. |
Elastic models#
Elastic materials in COMFOR use the Saint-Venant-Kirchhoff law, which is suitable for small strains but allows for large rotations.
Parameters#
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
young |
Float | Yes | - | Young's modulus (\(E\)). |
poisson |
Float | Yes | - | Poisson's ratio (\(\nu\)). |
Examples#
Hyperelastic models#
Hyperelastic models are designed for materials undergoing finite strains (large deformations), such as rubbers or soft membranes.
Parameters (Ogden)#
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
potential |
String | Yes | - | Must be set to OGDEN. |
mu |
Array | Yes | - | List of shear moduli \(\mu_i\). |
alpha |
Array | Yes | - | List of dimensionless exponents \(\alpha_i\). |
Note
The mu and alpha arrays must have the same number of elements. Each pair defines one term of the strain energy potential.
Examples#
Composite#
Designed for anisotropic textile materials (e.g., woven composites). Requires orientation parameters for warp/weft directions and stiffness coefficients.
Parameters#
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
warp_orientation |
Array | Yes | - | Initial warp fiber unit vector \([x, y, z]\). |
weft_orientation |
Array | Yes | - | Initial weft fiber unit vector \([x, y, z]\). |
k_elong_warp |
Array | Yes | - | Coefficients for warp elongation stiffness. |
k_elong_weft |
Array | Yes | - | Coefficients for weft elongation stiffness. |
k_shear |
Array | Yes | - | Coefficients for in-plane shear stiffness. |
k_bend_warp |
Array | No | [0.0] |
Optional coefficients for warp bending. |
k_bend_weft |
Array | No | [0.0] |
Optional coefficients for weft bending. |
k_bend_twist |
Array | No | [0.0] |
Optional coefficients for twisting stiffness. |
Examples#
Choose a material model#
- Use Elastic for small strain applications (e.g., tools).
- Use Hyperelastic for finite strain for isotropic materials (e.g., rubber, membranes).
- Use Textile Composite for anisotropic woven materials.
For advanced use cases, refer to the Theory section.