Repairing tutorial cases on windows.
This commit is contained in:
parent
64eed6d825
commit
8607f3d224
2 changed files with 12 additions and 7 deletions
|
@ -10,11 +10,11 @@ runApplication snappyHexMesh -overwrite
|
||||||
runApplication splitMeshRegions -cellZones
|
runApplication splitMeshRegions -cellZones
|
||||||
|
|
||||||
# copy fields
|
# copy fields
|
||||||
cp 0/* 0.001/bottomAir/
|
cp 0/* 0.001/bottomAir
|
||||||
cp 0/* 0.001/heater/
|
cp 0/* 0.001/heater
|
||||||
cp 0/* 0.001/leftSolid/
|
cp 0/* 0.001/leftSolid
|
||||||
cp 0/* 0.001/rightSolid/
|
cp 0/* 0.001/rightSolid
|
||||||
cp 0/* 0.001/topAir/
|
cp 0/* 0.001/topAir
|
||||||
|
|
||||||
# remove fluid fields from solid regions (important for post-processing)
|
# remove fluid fields from solid regions (important for post-processing)
|
||||||
for i in heater leftSolid rightSolid
|
for i in heater leftSolid rightSolid
|
||||||
|
@ -25,7 +25,7 @@ done
|
||||||
# remove solid fields from fluid regions (important for post-processing)
|
# remove solid fields from fluid regions (important for post-processing)
|
||||||
for i in bottomAir topAir
|
for i in bottomAir topAir
|
||||||
do
|
do
|
||||||
rm -f 0*/$i/{cp,K,rho}
|
rm -f 0*/$i/{cp,Kappa,rho}
|
||||||
done
|
done
|
||||||
|
|
||||||
for i in bottomAir topAir heater leftSolid rightSolid
|
for i in bottomAir topAir heater leftSolid rightSolid
|
||||||
|
|
|
@ -15,7 +15,12 @@ FoamFile
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
libs ("libcompressibleTurbulenceModel.so" "libcompressibleRASModels.so");
|
libs
|
||||||
|
(
|
||||||
|
"libcompressibleTurbulenceModel.so"
|
||||||
|
"libcompressibleRASModels.so"
|
||||||
|
"liblduSolvers.so"
|
||||||
|
);
|
||||||
|
|
||||||
application snappyHexMesh;
|
application snappyHexMesh;
|
||||||
|
|
||||||
|
|
Reference in a new issue