fix(backend): use coords field instead of ξ in CPU backend

Update CPU backend to use coords field from QuadraturePoint instead
of deprecated ξ field.

- Change ip.ξ to ip.coords in compute_element_stiffness
This commit is contained in:
Jukka Aho
2025-12-12 23:33:47 +02:00
parent bab3f6906c
commit 7a580e604d
+1 -1
View File
@@ -142,7 +142,7 @@ function compute_element_stiffness(element::Element{N,NIP,F,B}, time::Float64) w
# Integrate over element
for ip in ips
ξ = ip.ξ
ξ = ip.coords
w = ip.weight
# NEW API: Basis function derivatives (shape function gradients in reference coords)