Skip to content
Merged
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
4 changes: 2 additions & 2 deletions heat-exchanger/precice-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
from="Solid-to-Fluid-Outer" />
</participant>

<m2n:sockets connector="Fluid-Inner" acceptor="Solid" exchange-directory=".." />
<m2n:sockets acceptor="Solid" connector="Fluid-Inner" exchange-directory=".." />

<coupling-scheme:parallel-explicit>
<time-window-size value="1" />
Expand Down Expand Up @@ -129,7 +129,7 @@
initialize="yes" />
</coupling-scheme:parallel-explicit>

<m2n:sockets connector="Fluid-Outer" acceptor="Solid" exchange-directory=".." />
<m2n:sockets acceptor="Solid" connector="Fluid-Outer" exchange-directory=".." />

<coupling-scheme:parallel-explicit>
<time-window-size value="1" />
Expand Down
2 changes: 1 addition & 1 deletion tests/docker-compose.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
cd '/runs/{{ tutorial_folder }}' &&
sed -i 's|</log>|<sink type=\"file\" output=\"precice-debug.log\" filter=\"%Severity% >= debug and %Rank% = 0\" enabled=\"true\" /></log>|g' precice-config.xml &&
sed -i 's%</participant>%<export:vtu directory=\"../{{precice_output_folder}}\" /> </participant>%g' precice-config.xml &&
sed -i 's|m2n:sockets |m2n:sockets network=\"eth0\" |g' precice-config.xml &&
sed -i 's|m2n:sockets acceptor|m2n:sockets network=\"eth0\" acceptor|g' precice-config.xml &&
grep -r --include Cargo.toml '\"precice\" = \"3.2\"' -l . | xargs -r sed -i 's|\"precice\" = \"3.2\"|\"precice\" = { git = \"https://github.com/precice/rust-bindings\", rev = \"{{build_arguments.RUST_BINDINGS_REF}}\"}|g' &&
grep -r --include run.sh 'Pkg.add(\"PreCICE\")' -l . | xargs -r sed -i 's|Pkg.add(\"PreCICE\")|Pkg.add(url=\"https://github.com/precice/PreCICE.jl.git\",rev=\"{{build_arguments.JULIA_BINDINGS_REF}}\")|g' &&
echo -e '\ngit+https://github.com/precice/fmi-runner@{{build_arguments.FMI_RUNNER_REF}}' | tee -a $(grep -r --include requirements.txt 'fmiprecice' -l .) > /dev/null &&
Expand Down