mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-17 17:22:10 +00:00
refactor(domains): Remove Vec{3} conversion in assemble_v2
- Changed 'ξ = Vec{3}(ip.ξ)' to 'ξ = ip.ξ' in compute_element_stiffness!
- No conversion needed since ip.ξ is now already Vec{3}
This commit is contained in:
@@ -496,7 +496,7 @@ function compute_element_stiffness!(
|
||||
|
||||
for k in 1:N, l in 1:N
|
||||
for ip in ips
|
||||
ξ = Vec{3}(ip.ξ)
|
||||
ξ = ip.ξ
|
||||
w = ip.weight
|
||||
|
||||
dN_dξ = get_basis_derivatives(topology, basis, ξ)
|
||||
|
||||
Reference in New Issue
Block a user