mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-31 08:16:23 +00:00
16 lines
236 B
Julia
16 lines
236 B
Julia
function test(a)
|
|
return a*2
|
|
end
|
|
|
|
|
|
function C2D4(xx)
|
|
θ = 1
|
|
chi = xx[1]
|
|
eta = xx[2]
|
|
return = [(1 - chi) * (1 - eta),
|
|
chi * (1 - eta),
|
|
chi * eta,
|
|
(1 - chi) * eta]
|
|
end
|
|
|