docs(physics): cross-link strain extraction helpers

Note that `extract_strain` consumes an existing displacement gradient, with
`compute_strain` covering the assembly path from nodal DOFs.
This commit is contained in:
Jukka Aho
2026-05-09 18:15:45 +03:00
parent 3ada6aa07d
commit d1716ab969
+3
View File
@@ -25,6 +25,9 @@ Extract strain tensor from displacement gradient.
# Returns
- `ε`: Strain tensor (symmetric)
See also [`compute_strain`](@ref), which first assembles `∇u` from nodal
values and physical basis derivatives.
# Examples
```julia
∇u = Tensor{2,3}((1.0, 0.1, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.0))