Merge commit '8d83cebef638c75e56f746690399d78a572f079a' into nextRelease
This commit is contained in:
commit
b64753cb75
2 changed files with 9 additions and 9 deletions
|
@ -1,9 +1,9 @@
|
|||
#!/bin/bash
|
||||
cd ${0%/*} || exit 1 # run from this directory
|
||||
|
||||
# Clean compilation in Fluid-Structure Interaction package
|
||||
# Clean compilation in Fluid-Solid Interaction package
|
||||
(
|
||||
cd FluidStructureInteraction/src/
|
||||
cd FluidSolidInteraction/src/
|
||||
./Allwclean
|
||||
)
|
||||
|
||||
|
|
|
@ -30,17 +30,17 @@ setDestination()
|
|||
|
||||
}
|
||||
|
||||
# Install Fluid-Structure Interaction package
|
||||
if [ ! -d "FluidStructureInteraction" ]; then
|
||||
wget http://openfoamwiki.net/images/5/52/Fsi_31.tar.gz
|
||||
tar zxvf Fsi_31.tar.gz
|
||||
rm Fsi_31.tar.gz
|
||||
# Install Fluid-Solid Interaction package
|
||||
if [ ! -d "FluidSolidInteraction" ]; then
|
||||
wget https://openfoamwiki.net/images/d/d6/Fsi_40.tar.gz
|
||||
tar zxvf Fsi_40.tar.gz
|
||||
rm Fsi_40.tar.gz
|
||||
fi
|
||||
|
||||
setDestination FluidStructureInteraction
|
||||
setDestination FluidSolidInteraction
|
||||
|
||||
(
|
||||
cd FluidStructureInteraction/src
|
||||
cd FluidSolidInteraction/src
|
||||
./Allwmake
|
||||
)
|
||||
|
||||
|
|
Reference in a new issue