Skip to content

Commit 7e76ab0

Browse files
Add changelog entry for PR precice#829
1 parent 7ae8b8a commit 7e76ab0

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

changelog-entries/829.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Parallelized pull-request system tests via a GitHub Actions matrix over `release_test_shard_1` and `release_test_shard_2` [#829](https://github.com/precice/tutorials/pull/829)

heat-exchanger/download-meshes.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env sh
2+
3+
echo "This tutorial is based on a case prepared with SimScale."
4+
echo "Since the mesh files are several MB large, we don't store them in the Git repository."
5+
echo "This script downloads and extracts the missing files."
6+
echo ""
7+
8+
echo "Downloading the Solid case..."
9+
wget -nv -O - https://syncandshare.lrz.de/dl/fi3c9Xt5UzBc5hJvXzsLBHXn/Solid.tar.gz | tar -xzv
10+
mv ./Solid/* solid-calculix
11+
rm -r ./Solid
12+
sed -i 's/Solid/\./g' solid-calculix/solid.inp
13+
14+
echo "Downloading and extracting the Inner-Fluid mesh..."
15+
wget -nv -O - https://syncandshare.lrz.de/dl/fiNsYGC1DKzgio4jS5NhsXg7/polyMesh.org.tar.gz | tar -xzv -C fluid-inner-openfoam/constant
16+
mv fluid-inner-openfoam/constant/polyMesh.org fluid-inner-openfoam/constant/polyMesh
17+
18+
echo "Downloading and extracting the Outer-Fluid mesh..."
19+
wget -nv -O - https://syncandshare.lrz.de/dl/fiEZRQ8rcVWRkoyZvANim1R1/polyMesh.org.tar.gz | tar -xzv -C fluid-outer-openfoam/constant
20+
mv fluid-outer-openfoam/constant/polyMesh.org fluid-outer-openfoam/constant/polyMesh
21+
22+
echo "Completed."

0 commit comments

Comments
 (0)