forked from petebachant/SOWFA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Allwmake
executable file
·98 lines (82 loc) · 2.1 KB
/
Allwmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/bin/bash
echo "Building with OpenFOAM-"$OPENFOAM_VERSION
version=${WM_PROJECT_VERSION:0:1}
variant=${WM_PROJECT_VERSION:2:1}
dir=2.0-and-lower
if [ $version -lt 2 ]
then
dir=2.0-and-lower
elif [ $version -eq 2 ] && [ $variant -le 0 ]
then
dir=2.0-and-lower
elif [ $version -eq 2 ] && [ $variant -ge 1 ] && [ $variant -le 2 ]
then
dir=2.1-2.2
elif [ $version -eq 2 ] && [ $variant -ge 3 ]
then
dir=2.3-and-higher
fi
echo $dir
cd src/openfast/bin
make 2>&1 | tee compile-openfast.log
./libmake 2>&1 | tee compile-openfast-link.log
cd ../../../
cd src/fastturb
wmake libso 2>&1 | tee compile-fastturb.log
cd ../../
cd src/finiteVolume
wmake libso 2>&1 | tee compile-finiteVolume.log
cd ../../
cd src/turbulenceModels/incompressible/LES/
cd GenEddyViscABL
rm GenEddyViscABL.H
rm GenEddyViscABL.C
ln -s $dir/GenEddyViscABL.H ./
ln -s $dir/GenEddyViscABL.C ./
cd ../
wmake libso 2>&1 | tee compile-LES.log
cd ../../../../
cd src/turbineModels
wmake libso 2>&1 | tee compile-turbineModels.log
cd ../../
cd applications/solvers/incompressible/windEnergy/pisoFoamTurbine
rm pisoFoamTurbine.C
ln -s $dir/pisoFoamTurbine.C ./
wmake
cd ../../../../../
# cd applications/solvers/incompressible/windEnergy/pisoFoamTurbine.ADM
# rm pisoFoamTurbine.C
# ln -s $dir/pisoFoamTurbine.C
# wmake
# cd ../../../../../
# cd applications/solvers/incompressible/windEnergy/turbineTestHarness
# wmake
# cd ../../../../../
# cd applications/utilities/setFieldsABL
# wmake
# cd ../../../
# cd applications/solvers/incompressible/windEnergy/ABLSolver
# rm pEqn.H
# rm ABLSolver.C
# ln -s $dir/pEqn.H ./
# ln -s $dir/ABLSolver.C ./
# wmake
# cd ../../../../../
# cd applications/solvers/incompressible/windEnergy/ABLTerrainSolver
# rm pEqn.H
# rm ABLTerrainSolver.C
# ln -s $dir/pEqn.H ./
# ln -s $dir/ABLTerrainSolver.C ./
# wmake
# cd ../../../../../
# cd applications/solvers/incompressible/windEnergy/windPlantSolver
# rm pEqn.H
# rm windPlantSolver.C
# ln -s $dir/pEqn.H ./
# ln -s $dir/windPlantSolver.C ./
# wmake
# cd ../../../../../
#
# cd applications/solvers/incompressible/windEnergy/windPlantSolverFAST
# wmake
# cd ../../../../../