File tree 12 files changed +55
-122
lines changed
multiple-perpendicular-flaps
perpendicular-flap/solid-dealii
turek-hron-fsi3/solid-dealii
12 files changed +55
-122
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ subsection Time
11
11
12
12
# Write results every x timesteps
13
13
set Output interval = 10
14
+
15
+ # Output folder
16
+ set Output folder = dealii-output
14
17
end
15
18
16
19
subsection Discretization
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ../../tools/run-dealii.sh
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ subsection Time
11
11
12
12
# Write results every x timesteps
13
13
set Output interval = 10
14
+
15
+ # Output folder
16
+ set Output folder = dealii-output
14
17
end
15
18
16
19
subsection Discretization
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ../../tools/run-dealii.sh
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ subsection Time
11
11
12
12
# Write results every x timesteps
13
13
set Output interval = 10
14
+
15
+ # Output folder
16
+ set Output folder = dealii-output
14
17
end
15
18
16
19
subsection Discretization
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ../../tools/run-dealii.sh
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ clean_dealii() {
57
57
(
58
58
cd " $1 "
59
59
echo " --- Cleaning up deal.II case in $( pwd) "
60
- rm -fv ./dealii_output/solution- * .vtk . /solution-* .vtk
60
+ rm -fv ./dealii-output /solution-* .vtk
61
61
clean_precice_logs .
62
62
)
63
63
}
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e -u
3
+
4
+ EXE=" "
5
+
6
+ for i in " $@ "
7
+ do
8
+ case $i in
9
+ -e=* |--exec=* )
10
+ EXE=" ${i#* =} "
11
+ shift # past argument=value
12
+ ;;
13
+ * )
14
+ # unknown option
15
+ ;;
16
+ esac
17
+ done
18
+
19
+ # If the executable has been defined
20
+ if [ -n " ${EXE} " ]; then
21
+ " ${EXE} " parameters.prm
22
+ exit 0;
23
+ fi
24
+
25
+ EXE=" elasticity"
26
+ # If it is in the global path
27
+ if [ -n " $( command -v " ${EXE} " ) " ]; then
28
+ " ${EXE} " parameters.prm
29
+ exit 0;
30
+ fi
31
+
32
+ # If it has been copied to the local directory
33
+ if test -f " elasticity" ; then
34
+ ./" ${EXE} " parameters.prm
35
+ else
36
+ echo " Unable to find the executable ${EXE} . Either specify the executable explicitly (-e=/path/to/elasticity) or make it discoverable at runtime (e.g. export PATH)"
37
+ fi
Original file line number Diff line number Diff line change @@ -11,11 +11,14 @@ subsection Time
11
11
12
12
# Write results every x timesteps
13
13
set Output interval = 100
14
+
15
+ # Output folder
16
+ set Output folder = dealii-output
14
17
end
15
18
16
19
subsection Discretization
17
20
# Polynomial degree of the FE system
18
- set Polynomial degree = 4
21
+ set Polynomial degree = 1
19
22
end
20
23
21
24
subsection System properties
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ../../tools/run-dealii.sh
You can’t perform that action at this time.
0 commit comments