-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllwclean
More file actions
executable file
·23 lines (19 loc) · 838 Bytes
/
Allwclean
File metadata and controls
executable file
·23 lines (19 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Clean cases
(cd 3x3LinReg/NNBased/pythonNNBasePlateHole/ && ./Allclean)
(cd 3x3LinReg/Theoretical/solids4foamPlateHole/ && ./Allclean)
(cd 3x3NN/NNBased/pythonNNBasePlateHole/ && ./Allclean)
(cd 3x3NN/Theoretical/solids4foamPlateHole/ && ./Allclean)
(cd 6x6LinReg/NNBased/pythonNNBasePlateHole/ && ./Allclean)
(cd 6x6LinReg/Theoretical/solids4foamPlateHole/ && ./Allclean)
(cd 6x6NN/NNBased/pythonNNBasePlateHole/ && ./Allclean)
(cd 6x6NN/Theoretical/solids4foamPlateHole/ && ./Allclean)
# Clean solvers
wclean src/solvers/pySolids4Foam
wclean src/solvers/pythonSolids4Foam
# Clean utilities
wclean src/utilities/fieldsManipulator
# Clean libraries
wclean src/libraries/pythonPalLinearElastic
#------------------------------------------------------------------------------