forked from davidscn/matrix-free-dealii-precice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheat_transfer.prm
72 lines (51 loc) · 1.76 KB
/
heat_transfer.prm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Listing of Parameters
# ---------------------
subsection Finite element system
# Displacement system polynomial order
set Polynomial degree = 2
# Gauss quadrature order
set Quadrature order = 3
end
subsection Geometry
# Dimension of the problem
set Dimension = 2
# Number of global refinements
set Global refinement = 3
# Testcase to compute
set Testcase = partitioned_heat_dirichlet
end
subsection Output
# Output folder
set Output folder = dealii-output
# Points in undeformed configuration to output unknown fields
set Output points = 0.6, 0.2
# Output solution watchpoint
set Output solution = false
# At which time to write a vtu output file
set Output tick = 0.1
end
subsection Time
# End time
set End time = 1
# Time step size
set Time step size = 0.1
end
subsection precice configuration
# Name of the coupling mesh in the precice-config.xml file
set Mesh name = dealii-mesh
# Name of the participant in the precice-config.xml file
set Participant name = dealii
# Name of the read data in the precice-config.xml file
set Read data name = Temperature
# Name of the write data in the precice-config.xml file
set Write data name = Heat-Flux
# Specification of the write data location and the data typeAvailable
# options are: values_on_dofs, values_on_quads, normal_gradients_on_quads
# and in PRECICE_DEVELOP_MODE additionally values_on_other_mesh,
# gradients_on_other_mesh
set Write data specification = values_on_dofs
# Index of the quadrature formula in MatrixFree used for initialization
set Write quadrature index = 0
# Name of the precice configuration file
set precice config-file = precice-config.xml
end