From 67d367920ff005538dcb548168c486c808c2d5c3 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 17:08:23 +0300 Subject: [PATCH] docs(fields): plain headings in LocalField docstring Replace bold markdown labels on the dynamic vs quasi-static bullet sections with plain prose headings so field docs match the repository style guide. --- src/fields/local_field.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fields/local_field.jl b/src/fields/local_field.jl index 63f0459..a0af459 100644 --- a/src/fields/local_field.jl +++ b/src/fields/local_field.jl @@ -29,11 +29,11 @@ Field quantities evaluated at a single point (typically an integration point). Quasi-static is treated as a special case of dynamic where `rate = 0`. The `gradient_rate` is always computed from increments: `(∇u_new - ∇u_old)/Δt` -**Dynamic simulations:** +Dynamic simulations: - `rate` = actual time derivative (velocity `u̇`, temperature rate `Ṫ`) - `gradient_rate` = computed from increment for accuracy -**Quasi-static simulations:** +Quasi-static simulations: - `rate` = `0` (no dynamic effects) - `gradient_rate` = computed from increment (needed for rate-dependent materials)