Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux-preCICE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
dumux-appl
dumux-preCICE
Commits
b3270d91
Commit
b3270d91
authored
5 years ago
by
Alexander Jaust
Browse files
Options
Downloads
Patches
Plain Diff
fixed precice configuration
parent
f795d623
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
appl/conjugateheattransfer/iterative/precice-config-serial-implicit.xml
+27
-19
27 additions, 19 deletions
...heattransfer/iterative/precice-config-serial-implicit.xml
with
27 additions
and
19 deletions
appl/conjugateheattransfer/iterative/precice-config-serial-implicit.xml
+
27
−
19
View file @
b3270d91
...
...
@@ -2,7 +2,7 @@
<precice-configuration>
<log>
<sink
type=
"stream"
output=
"stdout"
filter=
"(%Severity% > debug) or (%Severity% >= trace and %Module% contains SolverInterfaceImpl)"
enabled=
"
tru
e"
/>
<sink
type=
"stream"
output=
"stdout"
filter=
"(%Severity% > debug) or (%Severity% >= trace and %Module% contains SolverInterfaceImpl)"
enabled=
"
fals
e"
/>
<sink
type=
"stream"
output=
"stdout"
enabled=
"false"
/>
</log>
...
...
@@ -25,20 +25,26 @@
<use-mesh
name=
"FreeFlowMesh"
provide=
"yes"
/>
<use-mesh
name=
"SolidEnergyMesh"
from=
"SolidEnergy"
/>
<write-data
name=
"Temperature"
mesh=
"FreeFlowMesh"
/>
<read-data
name=
"Heat-Flux"
mesh=
"FreeFlowMesh"
/>
<read-data
name=
"Temperature"
mesh=
"FreeFlowMesh"
/>
<write-data
name=
"Heat-Flux"
mesh=
"FreeFlowMesh"
/>
<mapping:nearest-neighbor
direction=
"read"
from=
"SolidEnergyMesh"
to=
"FreeFlowMesh"
constraint=
"consistent"
/>
<mapping:nearest-neighbor
direction=
"write"
from=
"FreeFlowMesh"
to=
"SolidEnergyMesh"
constraint=
"consistent"
/>
</participant>
<participant
name=
"SolidEnergy"
>
<use-mesh
name=
"SolidEnergyMesh"
provide=
"yes"
/>
<use-mesh
name=
"FreeFlowMesh"
from=
"FreeFlow"
/>
<read-data
name=
"Heat-Flux"
mesh=
"SolidEnergyMesh"
/>
<write-data
name=
"Temperature"
mesh=
"SolidEnergyMesh"
/>
<!--
<read-data name="Temperature" mesh="SolidEnergyMesh"/>
<write-data name="Heat-Flux" mesh="SolidEnergyMesh"/>
-->
<mapping:nearest-neighbor
direction=
"write"
from=
"SolidEnergyMesh"
to=
"FreeFlowMesh"
constraint=
"consistent"
/>
<mapping:nearest-neighbor
direction=
"read"
from=
"FreeFlowMesh"
to=
"SolidEnergyMesh"
constraint=
"consistent"
/>
<!--
<mapping:nearest-projection direction="read" from="FreeFlowMesh" to="SolidEnergyMesh" constraint="consistent"/>
-->
...
...
@@ -50,25 +56,26 @@
<coupling-scheme:serial-implicit>
<max-time
value=
"
1
"
/>
<max-time
value=
"
20
"
/>
<timestep-length
value=
"1"
/>
<max-iterations
value=
"3"
/>
<max-iterations
value=
"120"
/>
<!--
<participants
first=
"FreeFlow"
second=
"SolidEnergy"
/>
-->
<!--
<participants first="SolidEnergy" second="FreeFlow"/>
-->
<exchange
data=
"Temperature"
mesh=
"FreeFlowMesh"
from=
"SolidEnergy"
to=
"FreeFlow"
initialize=
"false"
/>
<exchange
data=
"Heat-Flux"
mesh=
"FreeFlowMesh"
from=
"FreeFlow"
to=
"SolidEnergy"
initialize=
"false"
/>
<exchange
data=
"Temperature"
mesh=
"SolidEnergyMesh"
from=
"SolidEnergy"
to=
"FreeFlow"
initialize=
"true"
/>
<exchange
data=
"Heat-Flux"
mesh=
"SolidEnergyMesh"
from=
"FreeFlow"
to=
"SolidEnergy"
initialize=
"false"
/>
<!--
<relative-convergence-measure limit="1.0e-6" data="Temperature" mesh="FreeFlowMesh"/>
-->
<relative-convergence-measure
limit=
"1.0e-6"
data=
"Heat-Flux"
mesh=
"FreeFlowMesh"
/>
<relative-convergence-measure
limit=
"1.0e-5"
data=
"Heat-Flux"
mesh=
"SolidEnergyMesh"
/>
<relative-convergence-measure
limit=
"1.0e-5"
data=
"Temperature"
mesh=
"SolidEnergyMesh"
/>
<!--
...
...
@@ -78,13 +85,14 @@
<extrapolation-order
value=
"0"
/>
<!--
<post-processing:IQN-ILS>
<data mesh="
FreeFlow
Mesh" name="Temperature" />
<initial-relaxation value="
1.00
" />
<max-used-iterations value="
80
" />
<timesteps-reused value="
1
0" />
<filter type="QR
1
" limit="1e-3" />
<data mesh="
SolidEnergy
Mesh" name="Temperature" />
<initial-relaxation value="
0.1
" />
<max-used-iterations value="
9
" />
<timesteps-reused value="
2
0" />
<filter type="QR
2
" limit="1e-3" />
</post-processing:IQN-ILS>
-->
</coupling-scheme:serial-implicit>
</solver-interface>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment