3d mortar tests

This commit is contained in:
Jukka Aho
2015-12-17 20:44:35 +02:00
parent 80f021e16b
commit 731d450fcd
3 changed files with 402 additions and 293 deletions
+3 -4
View File
@@ -244,8 +244,7 @@ end
global const med_elmap = Dict{Symbol, Vector{Int}}(
:HE8 => [4, 8, 7, 3, 1, 5, 6, 2],
:QU4 => [4, 3, 2, 1],
:SE2 => [2, 1]
:TE4 => [2, 3, 4, 1]
)
function get_connectivity(med::MEDFile, elsets, mesh_name)
@@ -270,8 +269,8 @@ function get_connectivity(med::MEDFile, elsets, mesh_name)
if haskey(med_elmap, eltype)
elco = elco[med_elmap[eltype]]
else
warn("no element mapping info found for element type $eltype")
warn("consider this as a warning: element may have french nodal ordering")
#warn("no element mapping info found for element type $eltype")
#warn("consider this as a warning: element may have french nodal ordering")
end
d[element_ids[i]] = (eltype, elset, elco)
end