Skip to content
Snippets Groups Projects
Commit 67540322 authored by Mattijs Janssens's avatar Mattijs Janssens
Browse files

Inserted interDyMFoam testcase into testloop

parent 035ec285
Branches
Tags
No related merge requests found
#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="damBreakWithObstacle"
tutorialPath=`dirname $0`/..
. $tutorialPath/CleanFunctions
for case in $cases
do
cleanCase $case
done
#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="damBreakWithObstacle"
tutorialPath=`dirname $0`/..
. $tutorialPath/RunFunctions
. $tutorialPath/CleanFunctions
for case in $cases
do
runApplication blockMesh $case
runApplication setSet $case -batch createObstacle.setSet
runApplication subsetMesh $case c0 -patch walls
runApplication setFields $case -latestTime
runApplication $application $case
done
......@@ -24,7 +24,7 @@ FoamFile
application interFoam;
startFrom startTime;
startFrom latestTime;
startTime 0;
......
......@@ -25,7 +25,8 @@ FoamFile
numberOfSubdomains 4;
method simple;
//method metis;
method hierarchical;
simpleCoeffs
{
......@@ -35,21 +36,13 @@ simpleCoeffs
hierarchicalCoeffs
{
n (1 1 1);
n (2 2 1);
delta 0.001;
order xyz;
}
metisCoeffs
{
processorWeights
(
1
1
1
1
);
}
{}
manualCoeffs
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment