Skip to content

Commit

Permalink
Add initial working version
Browse files Browse the repository at this point in the history
  • Loading branch information
David Schneider committed Oct 26, 2022
1 parent 7f7fb20 commit 66994f5
Show file tree
Hide file tree
Showing 5 changed files with 388 additions and 150 deletions.
6 changes: 3 additions & 3 deletions examples/partitioned-heat-conduction/dirichlet.prm
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# ---------------------
subsection Finite element system
# Displacement system polynomial order
set Polynomial degree = 2
set Polynomial degree = 1

# Gauss quadrature order
set Quadrature order = 3
set Quadrature order = 2
end


Expand All @@ -14,7 +14,7 @@ subsection Geometry
set Dimension = 2

# Number of global refinements
set Global refinement = 3
set Global refinement = 4

# Testcase to compute
set Testcase = partitioned_heat_dirichlet
Expand Down
6 changes: 3 additions & 3 deletions examples/partitioned-heat-conduction/neumann.prm
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# ---------------------
subsection Finite element system
# Displacement system polynomial order
set Polynomial degree = 2
set Polynomial degree = 1

# Gauss quadrature order
set Quadrature order = 3
set Quadrature order = 2
end


Expand All @@ -14,7 +14,7 @@ subsection Geometry
set Dimension = 2

# Number of global refinements
set Global refinement = 3
set Global refinement = 4

# Testcase to compute
set Testcase = partitioned_heat_neumann
Expand Down
4 changes: 2 additions & 2 deletions examples/partitioned-heat-conduction/precice-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
from="Neumann"
to="Dirichlet"
initialize="true" />
<absolute-convergence-measure data="Heat-Flux" mesh="Dirichlet-write" limit="1e-10" />
<absolute-convergence-measure data="Temperature" mesh="Neumann-write" limit="1e-10" />
<absolute-convergence-measure data="Heat-Flux" mesh="Dirichlet-write" limit="1e-8" />
<absolute-convergence-measure data="Temperature" mesh="Neumann-write" limit="1e-8" />
<acceleration:aitken>
<data mesh="Neumann-write" name="Temperature" />
<initial-relaxation value="0.5" />
Expand Down
Loading

0 comments on commit 66994f5

Please sign in to comment.