mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-16 16:53:19 +00:00
style(test): Add spacing in division operator for consistency
Changes to test/test_elasticity_1d.jl: - Changed sqrt(3)/2 to sqrt(3) / 2 (added spaces around /) - Improves code readability and follows Julia style conventions - No functional change, formatting only
This commit is contained in:
@@ -26,6 +26,6 @@ detJ = element(xi, time, Val{:detJ})
|
||||
J = element(xi, time, Val{:Jacobian})
|
||||
# gradu = element("displacement", xi, time, Val{:Grad})
|
||||
@debug("1d seg2 info", xi, time, detJ, J)
|
||||
@test isapprox(detJ, sqrt(3)/2)
|
||||
@test isapprox(detJ, sqrt(3) / 2)
|
||||
# Jacobian is 3×1 (physical_dim × parametric_dim) for 1D element in 3D
|
||||
@test isapprox(J, [0.5; 0.5; 0.5]) # column vector
|
||||
|
||||
Reference in New Issue
Block a user