Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog-entries/786.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Remove redundant `substeps="true"` option (default) from the oscillator, oscillator-overlap, partitioned-heat-condiction, and resonant-circuit tutorials. [#786](https://github.com/precice/tutorials/pull/786)
6 changes: 2 additions & 4 deletions oscillator-overlap/precice-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,12 @@
mesh="Mass-Left-Mesh"
from="Mass-Left"
to="Mass-Right"
initialize="true"
substeps="true" />
initialize="true" />
<exchange
data="Displacement-Right"
mesh="Mass-Left-Mesh"
from="Mass-Right"
to="Mass-Left"
initialize="true"
substeps="true" />
initialize="true" />
</coupling-scheme:serial-implicit>
</precice-configuration>
6 changes: 2 additions & 4 deletions oscillator/precice-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,12 @@
mesh="Mass-Left-Mesh"
from="Mass-Left"
to="Mass-Right"
initialize="true"
substeps="true" />
initialize="true" />
<exchange
data="Force-Right"
mesh="Mass-Left-Mesh"
from="Mass-Right"
to="Mass-Left"
initialize="true"
substeps="true" />
initialize="true" />
</coupling-scheme:serial-implicit>
</precice-configuration>
6 changes: 2 additions & 4 deletions partitioned-heat-conduction/precice-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,13 @@
mesh="Dirichlet-Mesh"
from="Dirichlet"
to="Neumann"
initialize="true"
substeps="true" />
initialize="true" />
<exchange
data="Temperature"
mesh="Neumann-Mesh"
from="Neumann"
to="Dirichlet"
initialize="true"
substeps="true" />
initialize="true" />
<relative-convergence-measure data="Heat-Flux" mesh="Dirichlet-Mesh" limit="1e-10" />
<relative-convergence-measure data="Temperature" mesh="Neumann-Mesh" limit="1e-10" />
<!-- <acceleration:IQN-ILS>
Expand Down
4 changes: 2 additions & 2 deletions resonant-circuit/precice-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
<max-time value="10" />
<time-window-size value="1" />
<max-iterations value="100" />
<exchange data="Current" mesh="Coil-Mesh" from="Coil" to="Capacitor" substeps="true" />
<exchange data="Voltage" mesh="Coil-Mesh" from="Capacitor" to="Coil" substeps="true" />
<exchange data="Current" mesh="Coil-Mesh" from="Coil" to="Capacitor" />
<exchange data="Voltage" mesh="Coil-Mesh" from="Capacitor" to="Coil" />
<relative-convergence-measure limit="1e-3" data="Current" mesh="Coil-Mesh" />
<relative-convergence-measure limit="1e-3" data="Voltage" mesh="Coil-Mesh" />
</coupling-scheme:serial-implicit>
Expand Down