mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-26 11:51:31 +00:00
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:
+1
-1
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user