Repairing tutorial cases on windows.

This commit is contained in:
Robert Keser 2017-04-19 14:18:57 +02:00
parent 64eed6d825
commit 8607f3d224
2 changed files with 12 additions and 7 deletions

View file

@ -10,11 +10,11 @@ runApplication snappyHexMesh -overwrite
runApplication splitMeshRegions -cellZones
# copy fields
cp 0/* 0.001/bottomAir/
cp 0/* 0.001/heater/
cp 0/* 0.001/leftSolid/
cp 0/* 0.001/rightSolid/
cp 0/* 0.001/topAir/
cp 0/* 0.001/bottomAir
cp 0/* 0.001/heater
cp 0/* 0.001/leftSolid
cp 0/* 0.001/rightSolid
cp 0/* 0.001/topAir
# remove fluid fields from solid regions (important for post-processing)
for i in heater leftSolid rightSolid
@ -25,7 +25,7 @@ done
# remove solid fields from fluid regions (important for post-processing)
for i in bottomAir topAir
do
rm -f 0*/$i/{cp,K,rho}
rm -f 0*/$i/{cp,Kappa,rho}
done
for i in bottomAir topAir heater leftSolid rightSolid

View file

@ -15,7 +15,12 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libcompressibleTurbulenceModel.so" "libcompressibleRASModels.so");
libs
(
"libcompressibleTurbulenceModel.so"
"libcompressibleRASModels.so"
"liblduSolvers.so"
);
application snappyHexMesh;