-
Notifications
You must be signed in to change notification settings - Fork 3
/
precice-config.xml
44 lines (32 loc) · 1.26 KB
/
precice-config.xml
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
<?xml version="1.0"?>
<precice-configuration>
<log>
<sink filter= "%Severity% > debug and %Rank% = 0" format="---[precice] %ColorizedSeverity% %Message%" enabled="true" />
</log>
<solver-interface dimensions="2">
<data:scalar name="Gc"/>
<mesh name="Corrosion-Mesh">
<use-data name="Gc"/>
</mesh>
<mesh name="BrittleFracture-Mesh">
<use-data name="Gc"/>
</mesh>
<participant name="Corrosion">
<use-mesh name="Corrosion-Mesh" provide="yes"/>
<write-data name="Gc" mesh="Corrosion-Mesh"/>
</participant>
<participant name="BrittleFracture">
<use-mesh name="Corrosion-Mesh" from="Corrosion"/>
<use-mesh name="BrittleFracture-Mesh" provide="yes"/>
<mapping:nearest-neighbor direction="read" from="Corrosion-Mesh" to="BrittleFracture-Mesh" constraint="consistent"/>
<read-data name="Gc" mesh="BrittleFracture-Mesh"/>
</participant>
<m2n:sockets from="Corrosion" to="BrittleFracture" />
<coupling-scheme:serial-explicit>
<time-window-size value="1.0"/>
<max-time value="1"/>
<participants first="Corrosion" second="BrittleFracture"/>
<exchange data="Gc" mesh="Corrosion-Mesh" from="Corrosion" to="BrittleFracture"/>
</coupling-scheme:serial-explicit>
</solver-interface>
</precice-configuration>