Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Nov 11, 2024
1 parent 57dbd20 commit 4954c71
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/seq/EmbeddedTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,16 @@ function main(
)

writevtk(
Ω, "$(path)_bulk"; append = false
Ω, "$(path)_omega"; append = false
)
writevtk(
Γ, "$(path)_boundary"; append = false
Γ, "$(path)_gamma"; append = false
)

n_∂Ω_Λ = get_subfacet_normal_vector(Λ)
n_k_Λ = get_ghost_normal_vector(Λ)
writevtk(
Λ, "$(path)_skeleton",
Λ, "$(path)_lambda",
cellfields = [
"n_∂Ω.plus" => n_∂Ω_Λ.plus,"n_∂Ω.minus" => n_∂Ω_Λ.minus,
"n_k.plus" => n_k_Λ.plus,"n_k.minus" => n_k_Λ.minus,
Expand All @@ -158,7 +158,7 @@ function main(
n_∂Ω_Σ = get_subfacet_normal_vector(Σ)
n_k_Σ = get_ghost_normal_vector(Σ)
writevtk(
Σ, "$(path)_skeleton",
Σ, "$(path)_sigma",
cellfields = [
"n_∂Ω" => n_∂Ω_Σ, "n_k" => n_k_Σ,
"n_S" => n_S_Σ, "m_k" => m_k_Σ,
Expand All @@ -170,6 +170,8 @@ function main(
end
end

#######################

D = 2
n = 10
model = generate_model(D,n)
Expand Down

0 comments on commit 4954c71

Please sign in to comment.