mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-10 13:17:42 +00:00
19 lines
360 B
Julia
19 lines
360 B
Julia
# This file is a part of JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
|
|
function test(a)
|
|
return a*2
|
|
end
|
|
|
|
|
|
function C2D4(xx)
|
|
theta = 1
|
|
chi = xx[1]
|
|
eta = xx[2]
|
|
return = [(1 - chi) * (1 - eta),
|
|
chi * (1 - eta),
|
|
chi * eta,
|
|
(1 - chi) * eta]
|
|
end
|
|
|