Merge remote branch 'remotes/origin/feature/overlapGgi'
Conflicts: src/decompositionMethods/metisDecomp/Make/options src/decompositionMethods/parMetisDecomp/Make/options src/decompositionMethods/scotchDecomp/Make/options src/dynamicMesh/meshMotion/mesquiteMotionSolver/Make/options src/fvAgglomerationMethods/MGridGenGamgAgglomeration/Make/options
This commit is contained in:
commit
0778c0393f
30 changed files with 666 additions and 495 deletions
2
Allwmake
2
Allwmake
|
@ -14,7 +14,7 @@ fi
|
||||||
|
|
||||||
# build ThirdParty sources
|
# build ThirdParty sources
|
||||||
#( cd $WM_THIRD_PARTY_DIR && ./Allwmake )
|
#( cd $WM_THIRD_PARTY_DIR && ./Allwmake )
|
||||||
( cd $WM_THIRD_PARTY_DIR && ./AllMake )
|
# ( cd $WM_THIRD_PARTY_DIR && ./AllMake )
|
||||||
|
|
||||||
# We make sure the ThirdParty packages environment variables are up-to-date
|
# We make sure the ThirdParty packages environment variables are up-to-date
|
||||||
# before compiling the rest of OpenFOAM
|
# before compiling the rest of OpenFOAM
|
||||||
|
|
|
@ -104,9 +104,9 @@ echo "run $args" > $PWD/gdbCommands
|
||||||
echo "where" >> $PWD/gdbCommands
|
echo "where" >> $PWD/gdbCommands
|
||||||
echo "Constructed gdb initialization file $PWD/gdbCommands"
|
echo "Constructed gdb initialization file $PWD/gdbCommands"
|
||||||
|
|
||||||
$ECHO "Choose running method: 0)normal 1)gdb+xterm 2)gdb 3)log 4)log+xterm 5)xterm+valgrind: \c"
|
$ECHO "Choose running method: 0)normal 1)gdb+xterm 2)gdb 3)log 4)log+xterm 5)xterm+valgrind 6)nemiver: \c"
|
||||||
read method
|
read method
|
||||||
if [ "$method" -ne 0 -a "$method" -ne 1 -a "$method" -ne 2 -a "$method" -ne 3 -a "$method" -ne 4 -a "$method" -ne 5 ]; then
|
if [ "$method" -ne 0 -a "$method" -ne 1 -a "$method" -ne 2 -a "$method" -ne 3 -a "$method" -ne 4 -a "$method" -ne 5 -a "$method" -ne 6 ]; then
|
||||||
printUsage
|
printUsage
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
@ -184,6 +184,12 @@ do
|
||||||
elif [ "$method" -eq 5 ]; then
|
elif [ "$method" -eq 5 ]; then
|
||||||
echo "$sourceFoam; cd $PWD; valgrind $exec $args; read dummy" >> $procCmdFile
|
echo "$sourceFoam; cd $PWD; valgrind $exec $args; read dummy" >> $procCmdFile
|
||||||
echo "${node}xterm -font fixed -title 'processor'$proc $geom -e $procCmdFile" >> $PWD/mpirun.schema
|
echo "${node}xterm -font fixed -title 'processor'$proc $geom -e $procCmdFile" >> $PWD/mpirun.schema
|
||||||
|
elif [ "$method" -eq 6 ]; then
|
||||||
|
## maybe one could use nemiver sessions for reloading breakpoints --session=<N> or --last
|
||||||
|
# echo "$sourceFoam; cd $PWD; nemiver --last $exec $args; read dummy" >> $procCmdFile
|
||||||
|
echo "$sourceFoam; cd $PWD; nemiver $exec $args; read dummy" >> $procCmdFile
|
||||||
|
# echo "$sourceFoam; cd $PWD; ddd --args $exec $args; read dummy" >> $procCmdFile
|
||||||
|
echo "${node} $procCmdFile" >> $PWD/mpirun.schema
|
||||||
fi
|
fi
|
||||||
|
|
||||||
chmod +x $procCmdFile
|
chmod +x $procCmdFile
|
||||||
|
|
|
@ -50,6 +50,7 @@ foamInstall=$HOME/$WM_PROJECT
|
||||||
# foamInstall=~$WM_PROJECT
|
# foamInstall=~$WM_PROJECT
|
||||||
# foamInstall=/usr/local/$WM_PROJECT
|
# foamInstall=/usr/local/$WM_PROJECT
|
||||||
# foamInstall=/opt/$WM_PROJECT
|
# foamInstall=/opt/$WM_PROJECT
|
||||||
|
# foamInstall=/usr/lib
|
||||||
#
|
#
|
||||||
# END OF (NORMAL) USER EDITABLE PART
|
# END OF (NORMAL) USER EDITABLE PART
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -77,7 +78,7 @@ export WM_PROJECT_DIR=$WM_PROJECT_INST_DIR/$WM_PROJECT-$WM_PROJECT_VERSION
|
||||||
# Location of third-party software
|
# Location of third-party software
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
#: ${WM_THIRD_PARTY_DIR=$WM_PROJECT_INST_DIR/ThirdParty-$WM_PROJECT_VERSION}; export WM_THIRD_PARTY_DIR
|
#: ${WM_THIRD_PARTY_DIR=$WM_PROJECT_INST_DIR/ThirdParty-$WM_PROJECT_VERSION}; export WM_THIRD_PARTY_DIR
|
||||||
: ${WM_THIRD_PARTY_DIR=$WM_PROJECT_DIR/ThirdParty}; export WM_THIRD_PARTY_DIR
|
# : ${WM_THIRD_PARTY_DIR=$WM_PROJECT_DIR/ThirdParty}; export WM_THIRD_PARTY_DIR
|
||||||
|
|
||||||
# Source files, possibly with some verbosity
|
# Source files, possibly with some verbosity
|
||||||
_foamSource()
|
_foamSource()
|
||||||
|
@ -312,14 +313,14 @@ export PATH LD_LIBRARY_PATH MANPATH
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
_foamSource $WM_PROJECT_DIR/etc/settings.sh
|
_foamSource $WM_PROJECT_DIR/etc/settings.sh
|
||||||
_foamSource $WM_PROJECT_DIR/etc/aliases.sh
|
# _foamSource $WM_PROJECT_DIR/etc/aliases.sh
|
||||||
|
|
||||||
|
|
||||||
# Source user setup files for optional packages
|
# Source user setup files for optional packages
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
# _foamSource $WM_PROJECT_DIR/etc/apps/paraview/bashrc
|
# _foamSource $WM_PROJECT_DIR/etc/apps/paraview/bashrc
|
||||||
# _foamSource $WM_PROJECT_DIR/etc/apps/paraview3/bashrc
|
# _foamSource $WM_PROJECT_DIR/etc/apps/paraview3/bashrc
|
||||||
_foamSource $WM_PROJECT_DIR/etc/apps/ensight/bashrc
|
# _foamSource $WM_PROJECT_DIR/etc/apps/ensight/bashrc
|
||||||
|
|
||||||
|
|
||||||
# Clean environment paths again. Only remove duplicates
|
# Clean environment paths again. Only remove duplicates
|
||||||
|
|
|
@ -49,6 +49,7 @@ set foamInstall = $HOME/$WM_PROJECT
|
||||||
# set foamInstall = ~$WM_PROJECT
|
# set foamInstall = ~$WM_PROJECT
|
||||||
# set foamInstall = /usr/local/$WM_PROJECT
|
# set foamInstall = /usr/local/$WM_PROJECT
|
||||||
# set foamInstall = /opt/$WM_PROJECT
|
# set foamInstall = /opt/$WM_PROJECT
|
||||||
|
# set foamInstall = /usr/lib
|
||||||
#
|
#
|
||||||
# END OF (NORMAL) USER EDITABLE PART
|
# END OF (NORMAL) USER EDITABLE PART
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
@ -304,7 +305,7 @@ setenv MANPATH `$cleanProg "$MANPATH" "$foamOldDirs"`
|
||||||
# Source project setup files
|
# Source project setup files
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
_foamSource $WM_PROJECT_DIR/etc/settings.csh
|
_foamSource $WM_PROJECT_DIR/etc/settings.csh
|
||||||
_foamSource $WM_PROJECT_DIR/etc/aliases.csh
|
# _foamSource $WM_PROJECT_DIR/etc/aliases.csh
|
||||||
|
|
||||||
# Source user setup files for optional packages
|
# Source user setup files for optional packages
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -37,7 +37,7 @@ alias _foamAddPath 'set path=(\!* $path)'
|
||||||
alias _foamAddLib 'setenv LD_LIBRARY_PATH \!*\:${LD_LIBRARY_PATH}'
|
alias _foamAddLib 'setenv LD_LIBRARY_PATH \!*\:${LD_LIBRARY_PATH}'
|
||||||
|
|
||||||
# location of the jobControl directory
|
# location of the jobControl directory
|
||||||
setenv FOAM_JOB_DIR $WM_PROJECT_INST_DIR/jobControl
|
setenv FOAM_JOB_DIR $HOME/$WM_PROJECT/jobControl
|
||||||
|
|
||||||
# wmake configuration
|
# wmake configuration
|
||||||
setenv WM_DIR $WM_PROJECT_DIR/wmake
|
setenv WM_DIR $WM_PROJECT_DIR/wmake
|
||||||
|
@ -52,18 +52,18 @@ setenv WM_DECOMP_LIBS "-lfaceDecompFiniteElement -lfaceDecompositionMotionSolver
|
||||||
|
|
||||||
# base configuration
|
# base configuration
|
||||||
setenv FOAM_APP $WM_PROJECT_DIR/applications
|
setenv FOAM_APP $WM_PROJECT_DIR/applications
|
||||||
setenv FOAM_APPBIN $WM_PROJECT_DIR/applications/bin/$WM_OPTIONS
|
setenv FOAM_APPBIN $WM_PROJECT_DIR/applications/bin
|
||||||
setenv FOAM_LIB $WM_PROJECT_DIR/lib
|
setenv FOAM_LIB $WM_PROJECT_DIR/lib
|
||||||
setenv FOAM_LIBBIN $WM_PROJECT_DIR/lib/$WM_OPTIONS
|
setenv FOAM_LIBBIN $WM_PROJECT_DIR/lib/$WM_OPTIONS
|
||||||
setenv FOAM_SRC $WM_PROJECT_DIR/src
|
setenv FOAM_SRC $WM_PROJECT_DIR/src
|
||||||
|
|
||||||
# shared site configuration - similar naming convention as ~OpenFOAM expansion
|
# shared site configuration - similar naming convention as ~OpenFOAM expansion
|
||||||
setenv FOAM_SITE_APPBIN $WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/bin/$WM_OPTIONS
|
setenv FOAM_SITE_APPBIN $WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/bin
|
||||||
setenv FOAM_SITE_LIBBIN $WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/lib/$WM_OPTIONS
|
setenv FOAM_SITE_LIBBIN $WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/lib
|
||||||
|
|
||||||
# user configuration
|
# user configuration
|
||||||
setenv FOAM_USER_APPBIN $WM_PROJECT_USER_DIR/applications/bin/$WM_OPTIONS
|
setenv FOAM_USER_APPBIN $WM_PROJECT_USER_DIR/applications/bin
|
||||||
setenv FOAM_USER_LIBBIN $WM_PROJECT_USER_DIR/lib/$WM_OPTIONS
|
setenv FOAM_USER_LIBBIN $WM_PROJECT_USER_DIR/lib
|
||||||
|
|
||||||
# convenience
|
# convenience
|
||||||
setenv FOAM_TUTORIALS $WM_PROJECT_DIR/tutorials
|
setenv FOAM_TUTORIALS $WM_PROJECT_DIR/tutorials
|
||||||
|
|
|
@ -70,7 +70,7 @@ _foamSource()
|
||||||
}
|
}
|
||||||
|
|
||||||
# location of the jobControl directory
|
# location of the jobControl directory
|
||||||
export FOAM_JOB_DIR=$WM_PROJECT_INST_DIR/jobControl
|
export FOAM_JOB_DIR=$HOME/$WM_PROJECT/jobControl
|
||||||
|
|
||||||
# wmake configuration
|
# wmake configuration
|
||||||
export WM_DIR=$WM_PROJECT_DIR/wmake
|
export WM_DIR=$WM_PROJECT_DIR/wmake
|
||||||
|
@ -85,18 +85,18 @@ export WM_DECOMP_LIBS="-lfaceDecompFiniteElement -lfaceDecompositionMotionSolver
|
||||||
|
|
||||||
# base configuration
|
# base configuration
|
||||||
export FOAM_APP=$WM_PROJECT_DIR/applications
|
export FOAM_APP=$WM_PROJECT_DIR/applications
|
||||||
export FOAM_APPBIN=$WM_PROJECT_DIR/applications/bin/$WM_OPTIONS
|
export FOAM_APPBIN=$WM_PROJECT_DIR/applications/bin
|
||||||
export FOAM_LIB=$WM_PROJECT_DIR/lib
|
export FOAM_LIB=$WM_PROJECT_DIR/lib
|
||||||
export FOAM_LIBBIN=$WM_PROJECT_DIR/lib/$WM_OPTIONS
|
export FOAM_LIBBIN=$WM_PROJECT_DIR/lib
|
||||||
export FOAM_SRC=$WM_PROJECT_DIR/src
|
export FOAM_SRC=$WM_PROJECT_DIR/src
|
||||||
|
|
||||||
# shared site configuration - similar naming convention as ~OpenFOAM expansion
|
# shared site configuration - similar naming convention as ~OpenFOAM expansion
|
||||||
export FOAM_SITE_APPBIN=$WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/bin/$WM_OPTIONS
|
export FOAM_SITE_APPBIN=$WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/bin
|
||||||
export FOAM_SITE_LIBBIN=$WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/lib/$WM_OPTIONS
|
export FOAM_SITE_LIBBIN=$WM_PROJECT_INST_DIR/site/$WM_PROJECT_VERSION/lib
|
||||||
|
|
||||||
# user configuration
|
# user configuration
|
||||||
export FOAM_USER_APPBIN=$WM_PROJECT_USER_DIR/applications/bin/$WM_OPTIONS
|
export FOAM_USER_APPBIN=$WM_PROJECT_USER_DIR/applications/bin
|
||||||
export FOAM_USER_LIBBIN=$WM_PROJECT_USER_DIR/lib/$WM_OPTIONS
|
export FOAM_USER_LIBBIN=$WM_PROJECT_USER_DIR/lib
|
||||||
|
|
||||||
# convenience
|
# convenience
|
||||||
export FOAM_TUTORIALS=$WM_PROJECT_DIR/tutorials
|
export FOAM_TUTORIALS=$WM_PROJECT_DIR/tutorials
|
||||||
|
|
|
@ -25,6 +25,7 @@ License
|
||||||
Author
|
Author
|
||||||
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
||||||
Fethi Tekin, All rights reserved.
|
Fethi Tekin, All rights reserved.
|
||||||
|
Oliver Borm, All rights reserved.
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -33,6 +34,7 @@ Author
|
||||||
#include "addToRunTimeSelectionTable.H"
|
#include "addToRunTimeSelectionTable.H"
|
||||||
#include "demandDrivenData.H"
|
#include "demandDrivenData.H"
|
||||||
#include "polyPatchID.H"
|
#include "polyPatchID.H"
|
||||||
|
#include "ZoneIDs.H"
|
||||||
#include "SubField.H"
|
#include "SubField.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
@ -45,6 +47,43 @@ namespace Foam
|
||||||
addToRunTimeSelectionTable(polyPatch, overlapGgiPolyPatch, dictionary);
|
addToRunTimeSelectionTable(polyPatch, overlapGgiPolyPatch, dictionary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
|
void Foam::overlapGgiPolyPatch::calcLocalParallel() const
|
||||||
|
{
|
||||||
|
// Calculate patch-to-zone addressing
|
||||||
|
if (localParallelPtr_)
|
||||||
|
{
|
||||||
|
FatalErrorIn("void ggiPolyPatch::calcLocalParallel() const")
|
||||||
|
<< "Local parallel switch already calculated"
|
||||||
|
<< abort(FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
|
localParallelPtr_ = new bool(false);
|
||||||
|
bool& emptyOrComplete = *localParallelPtr_;
|
||||||
|
|
||||||
|
// Calculate localisation on master and shadow
|
||||||
|
emptyOrComplete =
|
||||||
|
(zone().size() == size() && shadow().zone().size() == shadow().size())
|
||||||
|
|| (size() == 0 && shadow().size() == 0);
|
||||||
|
|
||||||
|
reduce(emptyOrComplete, andOp<bool>());
|
||||||
|
|
||||||
|
if (debug && Pstream::parRun())
|
||||||
|
{
|
||||||
|
Info<< "GGI patch Master: " << name()
|
||||||
|
<< " Slave: " << shadowName() << " is ";
|
||||||
|
|
||||||
|
if (emptyOrComplete)
|
||||||
|
{
|
||||||
|
Info<< "local parallel" << endl;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Info<< "split between multiple processors" << endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
@ -59,12 +98,15 @@ Foam::overlapGgiPolyPatch::overlapGgiPolyPatch
|
||||||
:
|
:
|
||||||
coupledPolyPatch(name, size, start, index, bm),
|
coupledPolyPatch(name, size, start, index, bm),
|
||||||
shadowName_(word::null),
|
shadowName_(word::null),
|
||||||
|
zoneName_(word::null),
|
||||||
shadowIndex_(-1),
|
shadowIndex_(-1),
|
||||||
|
zoneIndex_(-1),
|
||||||
rotationAxis_(vector(0.0, 0.0, 1.0)),
|
rotationAxis_(vector(0.0, 0.0, 1.0)),
|
||||||
nCopies_(0),
|
nCopies_(0),
|
||||||
expandedMasterPtr_(NULL),
|
expandedMasterPtr_(NULL),
|
||||||
expandedSlavePtr_(NULL),
|
expandedSlavePtr_(NULL),
|
||||||
patchToPatchPtr_(NULL),
|
patchToPatchPtr_(NULL),
|
||||||
|
localParallelPtr_(NULL),
|
||||||
reconFaceCellCentresPtr_(NULL)
|
reconFaceCellCentresPtr_(NULL)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -78,18 +120,22 @@ Foam::overlapGgiPolyPatch::overlapGgiPolyPatch
|
||||||
const label index,
|
const label index,
|
||||||
const polyBoundaryMesh& bm,
|
const polyBoundaryMesh& bm,
|
||||||
const word& shadowName,
|
const word& shadowName,
|
||||||
|
const word& zoneName,
|
||||||
const vector& axis,
|
const vector& axis,
|
||||||
const scalar nCopies
|
const scalar nCopies
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
coupledPolyPatch(name, size, start, index, bm),
|
coupledPolyPatch(name, size, start, index, bm),
|
||||||
shadowName_(shadowName),
|
shadowName_(shadowName),
|
||||||
|
zoneName_(zoneName),
|
||||||
shadowIndex_(-1),
|
shadowIndex_(-1),
|
||||||
|
zoneIndex_(-1),
|
||||||
rotationAxis_(axis),
|
rotationAxis_(axis),
|
||||||
nCopies_(nCopies),
|
nCopies_(nCopies),
|
||||||
expandedMasterPtr_(NULL),
|
expandedMasterPtr_(NULL),
|
||||||
expandedSlavePtr_(NULL),
|
expandedSlavePtr_(NULL),
|
||||||
patchToPatchPtr_(NULL),
|
patchToPatchPtr_(NULL),
|
||||||
|
localParallelPtr_(NULL),
|
||||||
reconFaceCellCentresPtr_(NULL)
|
reconFaceCellCentresPtr_(NULL)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -105,12 +151,15 @@ Foam::overlapGgiPolyPatch::overlapGgiPolyPatch
|
||||||
:
|
:
|
||||||
coupledPolyPatch(name, dict, index, bm),
|
coupledPolyPatch(name, dict, index, bm),
|
||||||
shadowName_(dict.lookup("shadowPatch")),
|
shadowName_(dict.lookup("shadowPatch")),
|
||||||
|
zoneName_(dict.lookup("zone")),
|
||||||
shadowIndex_(-1),
|
shadowIndex_(-1),
|
||||||
|
zoneIndex_(-1),
|
||||||
rotationAxis_(dict.lookup("rotationAxis")),
|
rotationAxis_(dict.lookup("rotationAxis")),
|
||||||
nCopies_(readScalar(dict.lookup("nCopies"))),
|
nCopies_(readScalar(dict.lookup("nCopies"))),
|
||||||
expandedMasterPtr_(NULL),
|
expandedMasterPtr_(NULL),
|
||||||
expandedSlavePtr_(NULL),
|
expandedSlavePtr_(NULL),
|
||||||
patchToPatchPtr_(NULL),
|
patchToPatchPtr_(NULL),
|
||||||
|
localParallelPtr_(NULL),
|
||||||
reconFaceCellCentresPtr_(NULL)
|
reconFaceCellCentresPtr_(NULL)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -124,12 +173,15 @@ Foam::overlapGgiPolyPatch::overlapGgiPolyPatch
|
||||||
:
|
:
|
||||||
coupledPolyPatch(pp, bm),
|
coupledPolyPatch(pp, bm),
|
||||||
shadowName_(pp.shadowName_),
|
shadowName_(pp.shadowName_),
|
||||||
|
zoneName_(pp.zoneName_),
|
||||||
shadowIndex_(-1),
|
shadowIndex_(-1),
|
||||||
|
zoneIndex_(-1),
|
||||||
rotationAxis_(pp.rotationAxis_),
|
rotationAxis_(pp.rotationAxis_),
|
||||||
nCopies_(pp.nCopies_),
|
nCopies_(pp.nCopies_),
|
||||||
expandedMasterPtr_(NULL),
|
expandedMasterPtr_(NULL),
|
||||||
expandedSlavePtr_(NULL),
|
expandedSlavePtr_(NULL),
|
||||||
patchToPatchPtr_(NULL),
|
patchToPatchPtr_(NULL),
|
||||||
|
localParallelPtr_(NULL),
|
||||||
reconFaceCellCentresPtr_(NULL)
|
reconFaceCellCentresPtr_(NULL)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -146,12 +198,15 @@ Foam::overlapGgiPolyPatch::overlapGgiPolyPatch
|
||||||
:
|
:
|
||||||
coupledPolyPatch(pp, bm, index, newSize, newStart),
|
coupledPolyPatch(pp, bm, index, newSize, newStart),
|
||||||
shadowName_(pp.shadowName_),
|
shadowName_(pp.shadowName_),
|
||||||
|
zoneName_(pp.zoneName_),
|
||||||
shadowIndex_(-1),
|
shadowIndex_(-1),
|
||||||
|
zoneIndex_(-1),
|
||||||
rotationAxis_(pp.rotationAxis_),
|
rotationAxis_(pp.rotationAxis_),
|
||||||
nCopies_(pp.nCopies_),
|
nCopies_(pp.nCopies_),
|
||||||
expandedMasterPtr_(NULL),
|
expandedMasterPtr_(NULL),
|
||||||
expandedSlavePtr_(NULL),
|
expandedSlavePtr_(NULL),
|
||||||
patchToPatchPtr_(NULL),
|
patchToPatchPtr_(NULL),
|
||||||
|
localParallelPtr_(NULL),
|
||||||
reconFaceCellCentresPtr_(NULL)
|
reconFaceCellCentresPtr_(NULL)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -202,17 +257,56 @@ Foam::label Foam::overlapGgiPolyPatch::shadowIndex() const
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Force local parallel
|
||||||
|
localParallel();
|
||||||
|
|
||||||
return shadowIndex_;
|
return shadowIndex_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Foam::label Foam::overlapGgiPolyPatch::zoneIndex() const
|
||||||
|
{
|
||||||
|
if (zoneIndex_ == -1 && zoneName_ != Foam::word::null)
|
||||||
|
{
|
||||||
|
// Grab zone patch index
|
||||||
|
faceZoneID zone(zoneName_, boundaryMesh().mesh().faceZones());
|
||||||
|
|
||||||
|
if (!zone.active())
|
||||||
|
{
|
||||||
|
FatalErrorIn("label overlapGgiPolyPatch::zoneIndex() const")
|
||||||
|
<< "Face zone name " << zoneName_
|
||||||
|
<< " not found. Please check your GGI interface definition."
|
||||||
|
<< abort(FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
|
zoneIndex_ = zone.index();
|
||||||
|
}
|
||||||
|
|
||||||
|
return zoneIndex_;
|
||||||
|
}
|
||||||
|
|
||||||
const Foam::overlapGgiPolyPatch&
|
const Foam::overlapGgiPolyPatch&
|
||||||
Foam::overlapGgiPolyPatch::shadow() const
|
Foam::overlapGgiPolyPatch::shadow() const
|
||||||
{
|
{
|
||||||
return refCast<const overlapGgiPolyPatch>(boundaryMesh()[shadowIndex()]);
|
return refCast<const overlapGgiPolyPatch>(boundaryMesh()[shadowIndex()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const Foam::faceZone& Foam::overlapGgiPolyPatch::zone() const
|
||||||
|
{
|
||||||
|
return boundaryMesh().mesh().faceZones()[zoneIndex()];
|
||||||
|
}
|
||||||
|
|
||||||
Foam::label Foam::overlapGgiPolyPatch::nCopies() const
|
bool Foam::overlapGgiPolyPatch::localParallel() const
|
||||||
|
{
|
||||||
|
// Calculate patch-to-zone addressing
|
||||||
|
if (!localParallelPtr_)
|
||||||
|
{
|
||||||
|
calcLocalParallel();
|
||||||
|
}
|
||||||
|
|
||||||
|
return *localParallelPtr_;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Foam::label& Foam::overlapGgiPolyPatch::nCopies() const
|
||||||
{
|
{
|
||||||
// Read the number of copies to be made from the dictionary for the
|
// Read the number of copies to be made from the dictionary for the
|
||||||
// expanded slave and expanded master to cover 360 degrees
|
// expanded slave and expanded master to cover 360 degrees
|
||||||
|
@ -224,7 +318,7 @@ bool Foam::overlapGgiPolyPatch::master() const
|
||||||
// The first overlapggi interface is master,second one is slave
|
// The first overlapggi interface is master,second one is slave
|
||||||
if (angle() == shadow().angle())
|
if (angle() == shadow().angle())
|
||||||
{
|
{
|
||||||
return start() < shadow().start() ;
|
return index() < shadowIndex();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Master is the one with the larger angle
|
// Master is the one with the larger angle
|
||||||
|
@ -242,6 +336,8 @@ void Foam::overlapGgiPolyPatch::write(Ostream& os) const
|
||||||
<< token::END_STATEMENT << nl;
|
<< token::END_STATEMENT << nl;
|
||||||
os.writeKeyword("shadowPatch") << shadowName_
|
os.writeKeyword("shadowPatch") << shadowName_
|
||||||
<< token::END_STATEMENT << nl;
|
<< token::END_STATEMENT << nl;
|
||||||
|
os.writeKeyword("zone") << zoneName_
|
||||||
|
<< token::END_STATEMENT << nl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ Description
|
||||||
Author
|
Author
|
||||||
Hrvoje Jasak, Wikki Ltd. All rights reserved
|
Hrvoje Jasak, Wikki Ltd. All rights reserved
|
||||||
Fethi Tekin, All rights reserved.
|
Fethi Tekin, All rights reserved.
|
||||||
|
Oliver Borm, All rights reserved.
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
overlapGgiPolyPatch.C
|
overlapGgiPolyPatch.C
|
||||||
|
@ -50,6 +51,7 @@ SourceFiles
|
||||||
#include "coupledPolyPatch.H"
|
#include "coupledPolyPatch.H"
|
||||||
#include "standAlonePatch.H"
|
#include "standAlonePatch.H"
|
||||||
#include "overlapGgiInterpolation.H"
|
#include "overlapGgiInterpolation.H"
|
||||||
|
#include "faceZone.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
@ -69,9 +71,14 @@ class overlapGgiPolyPatch
|
||||||
//- Shadow patch name
|
//- Shadow patch name
|
||||||
const word shadowName_;
|
const word shadowName_;
|
||||||
|
|
||||||
|
//- Interpolation zone name
|
||||||
|
const word zoneName_;
|
||||||
|
|
||||||
//- Shadow patch index. Delayed evaluation for construction
|
//- Shadow patch index. Delayed evaluation for construction
|
||||||
mutable label shadowIndex_;
|
mutable label shadowIndex_;
|
||||||
|
|
||||||
|
//- Interpolation zone index. Delayed evaluation for construction
|
||||||
|
mutable label zoneIndex_;
|
||||||
|
|
||||||
//- Rotation parameter for the overlap
|
//- Rotation parameter for the overlap
|
||||||
|
|
||||||
|
@ -79,40 +86,34 @@ class overlapGgiPolyPatch
|
||||||
const vector rotationAxis_;
|
const vector rotationAxis_;
|
||||||
|
|
||||||
// Number of copies in order to complete 360 degrees
|
// Number of copies in order to complete 360 degrees
|
||||||
const scalar nCopies_;
|
const label nCopies_;
|
||||||
|
|
||||||
// Interpolation
|
// Interpolation
|
||||||
|
|
||||||
//- Pointer to expanded master patch
|
//- Pointer to expanded master patch
|
||||||
mutable standAlonePatch* expandedMasterPtr_;
|
mutable standAlonePatch* expandedMasterPtr_;
|
||||||
|
|
||||||
//- Pointer to expanded faceCentres of Master
|
|
||||||
mutable vectorField* faceCentresPtr_;
|
|
||||||
|
|
||||||
//- Pointer to expanded faceareas of Master
|
|
||||||
mutable vectorField* faceAreasPtr_;
|
|
||||||
|
|
||||||
//- Pointer to expanded slave patch
|
//- Pointer to expanded slave patch
|
||||||
mutable standAlonePatch* expandedSlavePtr_;
|
mutable standAlonePatch* expandedSlavePtr_;
|
||||||
|
|
||||||
//- Patch-to-expanded-patch interpolation
|
//- Patch-to-expanded-patch interpolation
|
||||||
mutable overlapGgiInterpolation* patchToPatchPtr_;
|
mutable overlapGgiInterpolation* patchToPatchPtr_;
|
||||||
|
|
||||||
|
//- Is the patch localised on a single processor
|
||||||
|
// (single processor in a parallel run)?
|
||||||
|
// Used for parallel optimisation
|
||||||
|
mutable bool* localParallelPtr_;
|
||||||
|
|
||||||
//- Reconstructed patch neighbour cell centres
|
//- Reconstructed patch neighbour cell centres
|
||||||
mutable vectorField* reconFaceCellCentresPtr_;
|
mutable vectorField* reconFaceCellCentresPtr_;
|
||||||
|
|
||||||
|
|
||||||
// Private member functions
|
// Private member functions
|
||||||
|
|
||||||
//- Return reference to patch-to-patch interpolation
|
//- Return reference to patch-to-patch interpolation
|
||||||
const overlapGgiInterpolation& patchToPatch() const;
|
const overlapGgiInterpolation& patchToPatch() const;
|
||||||
|
|
||||||
//- Calculate expanded master patch
|
//- Calculate expanded patch geometry
|
||||||
void calcExpandedMaster() const;
|
standAlonePatch* calcExpandedGeometry(label ncp, label index) const;
|
||||||
|
|
||||||
//- Calculate expanded slave patch
|
|
||||||
void calcExpandedSlave() const;
|
|
||||||
|
|
||||||
//- Return reference to expanded master patch
|
//- Return reference to expanded master patch
|
||||||
const standAlonePatch& expandedMaster() const;
|
const standAlonePatch& expandedMaster() const;
|
||||||
|
@ -120,6 +121,9 @@ class overlapGgiPolyPatch
|
||||||
//- Return reference to expanded slave patch
|
//- Return reference to expanded slave patch
|
||||||
const standAlonePatch& expandedSlave() const;
|
const standAlonePatch& expandedSlave() const;
|
||||||
|
|
||||||
|
//- Calculate local parallel switch
|
||||||
|
void calcLocalParallel() const;
|
||||||
|
|
||||||
//- Calculate interpolation
|
//- Calculate interpolation
|
||||||
void calcPatchToPatch() const;
|
void calcPatchToPatch() const;
|
||||||
|
|
||||||
|
@ -132,6 +136,9 @@ class overlapGgiPolyPatch
|
||||||
//- Check definition: angles and offsets
|
//- Check definition: angles and offsets
|
||||||
void checkDefinition() const;
|
void checkDefinition() const;
|
||||||
|
|
||||||
|
//- Clear geometry
|
||||||
|
void clearGeom();
|
||||||
|
|
||||||
//- Clear out
|
//- Clear out
|
||||||
void clearOut();
|
void clearOut();
|
||||||
|
|
||||||
|
@ -186,6 +193,7 @@ public:
|
||||||
const label index,
|
const label index,
|
||||||
const polyBoundaryMesh& bm,
|
const polyBoundaryMesh& bm,
|
||||||
const word& shadowName,
|
const word& shadowName,
|
||||||
|
const word& zoneName,
|
||||||
const vector& axis,
|
const vector& axis,
|
||||||
const scalar nCopies
|
const scalar nCopies
|
||||||
);
|
);
|
||||||
|
@ -260,12 +268,24 @@ public:
|
||||||
return shadowName_;
|
return shadowName_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//- Return name of interpolation face zone
|
||||||
|
const word& zoneName() const
|
||||||
|
{
|
||||||
|
return zoneName_;
|
||||||
|
}
|
||||||
|
|
||||||
//- Return shadow patch index
|
//- Return shadow patch index
|
||||||
int shadowIndex() const;
|
label shadowIndex() const;
|
||||||
|
|
||||||
|
//- Return zone patch index
|
||||||
|
label zoneIndex() const;
|
||||||
|
|
||||||
//- Return shadow patch
|
//- Return shadow patch
|
||||||
const overlapGgiPolyPatch& shadow() const;
|
const overlapGgiPolyPatch& shadow() const;
|
||||||
|
|
||||||
|
//- Return interpolation face zone
|
||||||
|
const faceZone& zone() const;
|
||||||
|
|
||||||
//- Return rotation axis
|
//- Return rotation axis
|
||||||
const vector& rotationAxis() const
|
const vector& rotationAxis() const
|
||||||
{
|
{
|
||||||
|
@ -279,7 +299,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Return number of slave copies
|
//- Return number of slave copies
|
||||||
label nCopies() const;
|
const label& nCopies() const;
|
||||||
|
|
||||||
//- Is this the master side?
|
//- Is this the master side?
|
||||||
bool master() const;
|
bool master() const;
|
||||||
|
@ -290,15 +310,14 @@ public:
|
||||||
return !master();
|
return !master();
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Expand master face field to full for 360 degrees coverage
|
//- Is the patch localised on a single processor
|
||||||
template<class Type>
|
bool localParallel() const;
|
||||||
tmp<Field<Type> > expandMasterData(const Field<Type>& spf) const;
|
|
||||||
|
|
||||||
//- Expand slave face field to full for 360 degrees coverage
|
//- Expand face field to full for 360 degrees coverage
|
||||||
template<class Type>
|
template<class Type>
|
||||||
tmp<Field<Type> > expandSlaveData(const Field<Type>& spf) const;
|
tmp<Field<Type> > expandData(const Field<Type>& spf) const;
|
||||||
|
|
||||||
//- Interpolate face field: given field on a the shadow side,
|
//- Interpolate face field: given field on the shadow side,
|
||||||
// create an interpolated field on this side
|
// create an interpolated field on this side
|
||||||
template<class Type>
|
template<class Type>
|
||||||
tmp<Field<Type> > interpolate(const Field<Type>& pf) const;
|
tmp<Field<Type> > interpolate(const Field<Type>& pf) const;
|
||||||
|
@ -306,6 +325,9 @@ public:
|
||||||
template<class Type>
|
template<class Type>
|
||||||
tmp<Field<Type> > interpolate(const tmp<Field<Type> >& tpf) const;
|
tmp<Field<Type> > interpolate(const tmp<Field<Type> >& tpf) const;
|
||||||
|
|
||||||
|
//- Filter zone field to patch size
|
||||||
|
template<class Type>
|
||||||
|
tmp<Field<Type> > filter(const Field<Type>& zf) const;
|
||||||
|
|
||||||
//- Return reconstructed cell centres
|
//- Return reconstructed cell centres
|
||||||
const vectorField& reconFaceCellCentres() const;
|
const vectorField& reconFaceCellCentres() const;
|
||||||
|
|
|
@ -25,6 +25,7 @@ License
|
||||||
Author
|
Author
|
||||||
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
||||||
Fethi Tekin, All rights reserved.
|
Fethi Tekin, All rights reserved.
|
||||||
|
Oliver Borm, All rights reserved.
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -39,206 +40,95 @@ Author
|
||||||
|
|
||||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
void Foam::overlapGgiPolyPatch::calcExpandedMaster() const
|
// Create expanded patch
|
||||||
|
Foam::standAlonePatch*
|
||||||
|
Foam::overlapGgiPolyPatch::calcExpandedGeometry(label ncp, label index) const
|
||||||
{
|
{
|
||||||
// Create expanded master patch interpolation
|
const scalar myAngle = 360.0/scalar(ncp);
|
||||||
if (expandedMasterPtr_)
|
|
||||||
{
|
|
||||||
FatalErrorIn("void overlapGgiPolyPatch::calcExpandedMaster() const")
|
|
||||||
<< "Expanded master already calculated"
|
|
||||||
<< abort(FatalError);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (master())
|
|
||||||
{
|
|
||||||
// Create expanded master patch
|
|
||||||
const label ncpm = nCopies();
|
|
||||||
|
|
||||||
// Create expanded master points and faces
|
// Create expanded master points and faces
|
||||||
const polyPatch& master = boundaryMesh()[index()];
|
const faceZone& geomZone = boundaryMesh().mesh().faceZones()[index];
|
||||||
const pointField& masterLocalPoints = master.localPoints();
|
const primitiveFacePatch& geom = geomZone();
|
||||||
|
|
||||||
pointField MasterExpandedPoints(ncpm*masterLocalPoints.size());
|
const pointField& geomLocalPoints = geom.localPoints();
|
||||||
|
|
||||||
const scalar masterAngle = angle();
|
pointField expandedPoints(ncp*geomLocalPoints.size());
|
||||||
|
|
||||||
// Transform points
|
// Transform points
|
||||||
label nPoints_master = 0;
|
label nPointsGeom = 0;
|
||||||
|
|
||||||
for (label copyI = 0; copyI < ncpm; copyI++)
|
for (label copyI = 0; copyI < ncp; copyI++)
|
||||||
{
|
{
|
||||||
// Calculate transform
|
// Calculate transform
|
||||||
const tensor curRotation =
|
const tensor curRotation =
|
||||||
RodriguesRotation(rotationAxis_, copyI*(masterAngle));
|
RodriguesRotation(rotationAxis_, copyI*myAngle);
|
||||||
|
|
||||||
forAll (masterLocalPoints, pointI)
|
forAll (geomLocalPoints, pointI)
|
||||||
{
|
{
|
||||||
MasterExpandedPoints[nPoints_master] =
|
expandedPoints[nPointsGeom] =
|
||||||
transform(curRotation, masterLocalPoints[pointI]);
|
transform(curRotation, geomLocalPoints[pointI]);
|
||||||
nPoints_master++;
|
nPointsGeom++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Transform faces
|
// Transform faces
|
||||||
const faceList& masterLocalFaces = master.localFaces();
|
const faceList& geomLocalFaces = geom.localFaces();
|
||||||
faceList MasterExpandedFaces(ncpm*masterLocalFaces.size());
|
faceList expandedFaces(ncp*geomLocalFaces.size());
|
||||||
|
|
||||||
label nFacesMaster = 0;
|
label nFacesGeom = 0;
|
||||||
|
|
||||||
for (label copyI = 0; copyI < ncpm; copyI++)
|
for (label copyI = 0; copyI < ncp; copyI++)
|
||||||
{
|
{
|
||||||
const label copyOffsetMaster = copyI*masterLocalPoints.size();
|
const label copyOffsetGeom = copyI*geomLocalPoints.size();
|
||||||
|
|
||||||
forAll (masterLocalFaces, faceI)
|
forAll (geomLocalFaces, faceI)
|
||||||
{
|
{
|
||||||
const face& curMasterFace = masterLocalFaces[faceI];
|
const face& curGeomFace = geomLocalFaces[faceI];
|
||||||
|
|
||||||
face& MastercurExpandedFace =
|
face& curExpandedFace = expandedFaces[nFacesGeom];
|
||||||
MasterExpandedFaces[nFacesMaster];
|
|
||||||
|
|
||||||
// Copy face with offsets
|
// Copy face with offsets
|
||||||
MastercurExpandedFace.setSize(curMasterFace.size());
|
curExpandedFace.setSize(curGeomFace.size());
|
||||||
|
|
||||||
forAll (curMasterFace, fpI)
|
forAll (curGeomFace, fpI)
|
||||||
{
|
{
|
||||||
MastercurExpandedFace[fpI] =
|
curExpandedFace[fpI] = curGeomFace[fpI] + copyOffsetGeom;
|
||||||
curMasterFace[fpI] + copyOffsetMaster;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
nFacesMaster++;
|
nFacesGeom++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
expandedMasterPtr_ =
|
|
||||||
new standAlonePatch(MasterExpandedFaces, MasterExpandedPoints);
|
|
||||||
|
|
||||||
if (debug > 1)
|
if (debug > 1)
|
||||||
{
|
{
|
||||||
Info << "Writing expanded master patch as VTK" << endl;
|
Info << "Writing expanded geom patch as VTK" << endl;
|
||||||
|
|
||||||
const polyMesh& mesh = boundaryMesh().mesh();
|
const polyMesh& mesh = boundaryMesh().mesh();
|
||||||
|
|
||||||
fileName fvPath(mesh.time().path()/"VTK");
|
fileName fvPath(mesh.time().path()/"VTK");
|
||||||
mkDir(fvPath);
|
mkDir(fvPath);
|
||||||
|
|
||||||
standAlonePatch::writeVTK
|
OStringStream outputFilename;
|
||||||
(
|
outputFilename << "expandedGeom" << name() << shadow().name()
|
||||||
fvPath/fileName("expandedMaster" + name() + shadow().name()),
|
<< index << "_" << mesh.time().timeName();
|
||||||
MasterExpandedFaces,
|
|
||||||
MasterExpandedPoints
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
FatalErrorIn("void overlapGgiPolyPatch::calcExpandedMaster() const")
|
|
||||||
<< "Attempting to create expanded master on a shadow"
|
|
||||||
<< abort(FatalError);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Foam::overlapGgiPolyPatch::calcExpandedSlave() const
|
|
||||||
{
|
|
||||||
// Create expanded slave patch interpolation
|
|
||||||
if (expandedSlavePtr_)
|
|
||||||
{
|
|
||||||
FatalErrorIn("void overlapGgiPolyPatch::calcExpandedSlave() const")
|
|
||||||
<< "Expanded slave already calculated"
|
|
||||||
<< abort(FatalError);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (master())
|
|
||||||
{
|
|
||||||
// Create expanded patch
|
|
||||||
const label ncp = shadow().nCopies();
|
|
||||||
|
|
||||||
// Create expanded points and faces
|
|
||||||
const polyPatch& slave = boundaryMesh()[shadowIndex()];
|
|
||||||
const pointField& slaveLocalPoints = slave.localPoints();
|
|
||||||
|
|
||||||
pointField expandedPoints(ncp*slaveLocalPoints.size());
|
|
||||||
|
|
||||||
const scalar slaveAngle = shadow().angle();
|
|
||||||
|
|
||||||
// Transform points
|
|
||||||
label nPoints = 0;
|
|
||||||
|
|
||||||
for (label copyI = 0; copyI < ncp; copyI++)
|
|
||||||
{
|
|
||||||
// Calculate transform
|
|
||||||
const tensor curRotation =
|
|
||||||
RodriguesRotation(rotationAxis_, copyI*slaveAngle);
|
|
||||||
|
|
||||||
forAll (slaveLocalPoints, pointI)
|
|
||||||
{
|
|
||||||
expandedPoints[nPoints] =
|
|
||||||
transform(curRotation, slaveLocalPoints[pointI]);
|
|
||||||
nPoints++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Transform faces
|
|
||||||
|
|
||||||
const faceList& slaveLocalFaces = slave.localFaces();
|
|
||||||
faceList expandedFaces(ncp*slaveLocalFaces.size());
|
|
||||||
|
|
||||||
label nFaces = 0;
|
|
||||||
|
|
||||||
for (label copyI = 0; copyI < ncp; copyI++)
|
|
||||||
{
|
|
||||||
const label copyOffset = copyI*slaveLocalPoints.size();
|
|
||||||
|
|
||||||
forAll (slaveLocalFaces, faceI)
|
|
||||||
{
|
|
||||||
const face& curSlaveFace = slaveLocalFaces[faceI];
|
|
||||||
|
|
||||||
face& curExpandedFace = expandedFaces[nFaces];
|
|
||||||
|
|
||||||
// Copy face with offsets
|
|
||||||
curExpandedFace.setSize(curSlaveFace.size());
|
|
||||||
|
|
||||||
forAll (curSlaveFace, fpI)
|
|
||||||
{
|
|
||||||
curExpandedFace[fpI] = curSlaveFace[fpI] + copyOffset;
|
|
||||||
}
|
|
||||||
|
|
||||||
nFaces++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
expandedSlavePtr_ = new standAlonePatch(expandedFaces, expandedPoints);
|
|
||||||
|
|
||||||
if (debug > 1)
|
|
||||||
{
|
|
||||||
Info << "Writing expanded slave patch as VTK" << endl;
|
|
||||||
|
|
||||||
const polyMesh& mesh = boundaryMesh().mesh();
|
|
||||||
|
|
||||||
fileName fvPath(mesh.time().path()/"VTK");
|
|
||||||
mkDir(fvPath);
|
|
||||||
|
|
||||||
standAlonePatch::writeVTK
|
standAlonePatch::writeVTK
|
||||||
(
|
(
|
||||||
fvPath/fileName("expandedSlave" + name() + shadow().name()),
|
fvPath/fileName(outputFilename.str()),
|
||||||
expandedFaces,
|
expandedFaces,
|
||||||
expandedPoints
|
expandedPoints
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
FatalErrorIn("void overlapGgiPolyPatch::calcExpandedSlave() const")
|
|
||||||
<< "Attempting to create expanded slave on a shadow"
|
|
||||||
<< abort(FatalError);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
return new standAlonePatch(expandedFaces, expandedPoints);
|
||||||
|
}
|
||||||
|
|
||||||
const Foam::standAlonePatch& Foam::overlapGgiPolyPatch::expandedMaster() const
|
const Foam::standAlonePatch& Foam::overlapGgiPolyPatch::expandedMaster() const
|
||||||
{
|
{
|
||||||
if (!expandedMasterPtr_)
|
if (!expandedMasterPtr_)
|
||||||
{
|
{
|
||||||
calcExpandedMaster();
|
expandedMasterPtr_ =
|
||||||
|
calcExpandedGeometry( nCopies(), zoneIndex() );
|
||||||
}
|
}
|
||||||
|
|
||||||
return *expandedMasterPtr_;
|
return *expandedMasterPtr_;
|
||||||
|
@ -248,7 +138,8 @@ const Foam::standAlonePatch& Foam::overlapGgiPolyPatch::expandedSlave() const
|
||||||
{
|
{
|
||||||
if (!expandedSlavePtr_)
|
if (!expandedSlavePtr_)
|
||||||
{
|
{
|
||||||
calcExpandedSlave();
|
expandedSlavePtr_ =
|
||||||
|
calcExpandedGeometry( shadow().nCopies(), shadow().zoneIndex() );
|
||||||
}
|
}
|
||||||
|
|
||||||
return *expandedSlavePtr_;
|
return *expandedSlavePtr_;
|
||||||
|
@ -279,6 +170,21 @@ void Foam::overlapGgiPolyPatch::calcPatchToPatch() const
|
||||||
0, // master overlap tolerance
|
0, // master overlap tolerance
|
||||||
0 // slave overlap tolerance
|
0 // slave overlap tolerance
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Abort immediatly if uncovered faces are present
|
||||||
|
if
|
||||||
|
(
|
||||||
|
patchToPatch().uncoveredMasterFaces().size() > 0
|
||||||
|
||
|
||||||
|
patchToPatch().uncoveredSlaveFaces().size() > 0
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn("void overlapGgiPolyPatch::calcPatchToPatch() const")
|
||||||
|
<< "Found uncovered faces for GGI interface "
|
||||||
|
<< name() << "/" << shadowName() << endl
|
||||||
|
<< "This is an unrecoverable error. Aborting."
|
||||||
|
<< abort(FatalError);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -324,11 +230,16 @@ void Foam::overlapGgiPolyPatch::calcReconFaceCellCentres() const
|
||||||
const label shadowID = shadowIndex();
|
const label shadowID = shadowIndex();
|
||||||
|
|
||||||
// Get the transformed and interpolated shadow face cell centers
|
// Get the transformed and interpolated shadow face cell centers
|
||||||
vectorField delta = boundaryMesh()[shadowID].faceCellCentres()
|
|
||||||
- boundaryMesh()[shadowID].faceCentres();
|
|
||||||
|
|
||||||
reconFaceCellCentresPtr_ =
|
reconFaceCellCentresPtr_ =
|
||||||
new vectorField(interpolate(delta) + faceCentres());
|
new vectorField
|
||||||
|
(
|
||||||
|
interpolate
|
||||||
|
(
|
||||||
|
boundaryMesh()[shadowID].faceCellCentres()
|
||||||
|
- boundaryMesh()[shadowID].faceCentres()
|
||||||
|
)
|
||||||
|
+ faceCentres()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -368,7 +279,7 @@ void Foam::overlapGgiPolyPatch::checkDefinition() const
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Foam::overlapGgiPolyPatch::clearOut()
|
void Foam::overlapGgiPolyPatch::clearGeom()
|
||||||
{
|
{
|
||||||
deleteDemandDrivenData(expandedMasterPtr_);
|
deleteDemandDrivenData(expandedMasterPtr_);
|
||||||
deleteDemandDrivenData(expandedSlavePtr_);
|
deleteDemandDrivenData(expandedSlavePtr_);
|
||||||
|
@ -377,6 +288,13 @@ void Foam::overlapGgiPolyPatch::clearOut()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Foam::overlapGgiPolyPatch::clearOut()
|
||||||
|
{
|
||||||
|
clearGeom();
|
||||||
|
|
||||||
|
deleteDemandDrivenData(localParallelPtr_);
|
||||||
|
}
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
const Foam::vectorField&
|
const Foam::vectorField&
|
||||||
|
@ -399,14 +317,19 @@ void Foam::overlapGgiPolyPatch::initGeometry()
|
||||||
|
|
||||||
void Foam::overlapGgiPolyPatch::calcGeometry()
|
void Foam::overlapGgiPolyPatch::calcGeometry()
|
||||||
{
|
{
|
||||||
|
polyPatch::calcGeometry();
|
||||||
|
|
||||||
|
// Note: Calculation of transforms must be forced before the
|
||||||
|
// reconFaceCellCentres in order to correctly set the transformation
|
||||||
|
// in the interpolation routines.
|
||||||
|
// HJ, 3/Jul/2009
|
||||||
|
calcTransforms();
|
||||||
|
|
||||||
// Reconstruct the cell face centres
|
// Reconstruct the cell face centres
|
||||||
if (patchToPatchPtr_ && master())
|
if (patchToPatchPtr_ && master())
|
||||||
{
|
{
|
||||||
reconFaceCellCentres();
|
reconFaceCellCentres();
|
||||||
}
|
}
|
||||||
|
|
||||||
calcTransforms();
|
|
||||||
polyPatch::calcGeometry();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -421,7 +344,7 @@ void Foam::overlapGgiPolyPatch::movePoints(const pointField& p)
|
||||||
polyPatch::movePoints(p);
|
polyPatch::movePoints(p);
|
||||||
|
|
||||||
// Force recalculation of interpolation
|
// Force recalculation of interpolation
|
||||||
clearOut();
|
clearGeom();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,8 @@ License
|
||||||
|
|
||||||
Author
|
Author
|
||||||
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
||||||
Fethi Tekin, All rights reserved. fethitekin@gmail.com
|
Fethi Tekin, All rights reserved.
|
||||||
|
Oliver Borm, All rights reserved.
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -35,15 +36,32 @@ Author
|
||||||
|
|
||||||
template<class Type>
|
template<class Type>
|
||||||
Foam::tmp<Foam::Field<Type> >
|
Foam::tmp<Foam::Field<Type> >
|
||||||
Foam::overlapGgiPolyPatch::expandSlaveData(const Field<Type>& spf) const
|
Foam::overlapGgiPolyPatch::expandData(const Field<Type>& pf) const
|
||||||
{
|
{
|
||||||
const scalar slaveAngle = shadow().angle();
|
// Check and expand the field from patch size to zone size
|
||||||
|
if (pf.size() != size())
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"tmp<Field<Type> > overlapGgiPolyPatch::expandData"
|
||||||
|
"("
|
||||||
|
" const Field<Type>& pf"
|
||||||
|
") const"
|
||||||
|
) << "Incorrect patch field size. Field size: "
|
||||||
|
<< pf.size() << " patch size: " << size()
|
||||||
|
<< abort(FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
const label ncp = shadow().nCopies();
|
const label ncp = nCopies();
|
||||||
|
|
||||||
tmp<Field<Type> > tef(new Field<Type>(ncp*spf.size()));
|
const scalar myAngle = 360.0/scalar(ncp);
|
||||||
|
|
||||||
Field<Type>& ef = tef();
|
tmp<Field<Type> > texpandField
|
||||||
|
(
|
||||||
|
new Field<Type>( ncp*zone().size(), pTraits<Type>::zero )
|
||||||
|
);
|
||||||
|
|
||||||
|
Field<Type>& expandField = texpandField();
|
||||||
|
|
||||||
label nFaces = 0;
|
label nFaces = 0;
|
||||||
|
|
||||||
|
@ -51,77 +69,63 @@ Foam::overlapGgiPolyPatch::expandSlaveData(const Field<Type>& spf) const
|
||||||
{
|
{
|
||||||
// Calculate transform
|
// Calculate transform
|
||||||
const tensor curRotation =
|
const tensor curRotation =
|
||||||
RodriguesRotation(rotationAxis_, copyI*slaveAngle);
|
RodriguesRotation(rotationAxis_, copyI*myAngle);
|
||||||
|
|
||||||
forAll (spf, faceI)
|
forAll (pf, faceI)
|
||||||
{
|
{
|
||||||
ef[nFaces] = transform(curRotation, spf[faceI]);
|
expandField[nFaces] = transform(curRotation, pf[faceI]);
|
||||||
nFaces++;
|
nFaces++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return tef;
|
if (!localParallel())
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
template<class Type>
|
|
||||||
Foam::tmp<Foam::Field<Type> >
|
|
||||||
Foam::overlapGgiPolyPatch::expandMasterData(const Field<Type>& spf) const
|
|
||||||
{
|
|
||||||
const scalar masterAngle = shadow().angle();
|
|
||||||
|
|
||||||
const label ncpm = shadow().nCopies();
|
|
||||||
|
|
||||||
tmp<Field<Type> > tef(new Field<Type>(ncpm*spf.size()));
|
|
||||||
|
|
||||||
Field<Type>& ef = tef();
|
|
||||||
|
|
||||||
label nFaces = 0;
|
|
||||||
|
|
||||||
for (label copyI = 0; copyI < ncpm; copyI++)
|
|
||||||
{
|
{
|
||||||
// Calculate transform
|
reduce(expandField, sumOp<Field<Type> >());
|
||||||
const tensor curRotation =
|
|
||||||
RodriguesRotation(rotationAxis_, copyI*(masterAngle));
|
|
||||||
|
|
||||||
forAll (spf, faceI)
|
|
||||||
{
|
|
||||||
ef[nFaces] = transform(curRotation, spf[faceI]);
|
|
||||||
nFaces++;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return tef;
|
return texpandField;
|
||||||
}
|
}
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
template<class Type>
|
template<class Type>
|
||||||
Foam::tmp<Foam::Field<Type> >
|
Foam::tmp<Foam::Field<Type> >
|
||||||
Foam::overlapGgiPolyPatch::interpolate(const Field<Type>& pf) const
|
Foam::overlapGgiPolyPatch::interpolate(const Field<Type>& pf) const
|
||||||
{
|
{
|
||||||
|
// Check and expand the field from patch size to zone size
|
||||||
|
if (pf.size() != shadow().size())
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"tmp<Field<Type> > ggiPolyPatch::interpolate"
|
||||||
|
"("
|
||||||
|
" const Field<Type>& pf"
|
||||||
|
") const"
|
||||||
|
) << "Incorrect slave patch field size. Field size: "
|
||||||
|
<< pf.size() << " patch size: " << shadow().size()
|
||||||
|
<< abort(FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Expand data
|
||||||
|
tmp<Field<Type> > expanddata = shadow().expandData(pf);
|
||||||
|
|
||||||
|
tmp<Field<Type> > tresult;
|
||||||
|
|
||||||
if (master())
|
if (master())
|
||||||
{
|
{
|
||||||
// Expand slave data
|
// Expand slave data
|
||||||
tmp<Field<Type> > expandslave = expandSlaveData(pf);
|
tresult= patchToPatch().slaveToMaster(expanddata);
|
||||||
|
|
||||||
tmp<Field<Type> > tresult= patchToPatch().slaveToMaster(expandslave);
|
|
||||||
// Truncate to size
|
|
||||||
tresult().setSize(size());
|
|
||||||
|
|
||||||
return tresult;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Expand master data
|
// Expand master data
|
||||||
tmp<Field<Type> > expandmaster = expandMasterData(pf);
|
tresult = patchToPatch().masterToSlave(expanddata);
|
||||||
|
}
|
||||||
tmp<Field<Type> > tresult = patchToPatch().masterToSlave(expandmaster);
|
|
||||||
|
|
||||||
// Truncate to size
|
// Truncate to size
|
||||||
tresult().setSize(size());
|
tresult().setSize(size());
|
||||||
|
|
||||||
return tresult;
|
return tresult;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -129,30 +133,9 @@ template<class Type>
|
||||||
Foam::tmp<Foam::Field<Type> >
|
Foam::tmp<Foam::Field<Type> >
|
||||||
Foam::overlapGgiPolyPatch::interpolate(const tmp<Field<Type> >& tpf) const
|
Foam::overlapGgiPolyPatch::interpolate(const tmp<Field<Type> >& tpf) const
|
||||||
{
|
{
|
||||||
if (master())
|
tmp<Field<Type> > tint = interpolate(tpf());
|
||||||
{
|
tpf.clear();
|
||||||
// Expand slave data
|
return tint;
|
||||||
tmp<Field<Type> > expand = expandSlaveData(tpf());
|
|
||||||
|
|
||||||
tmp<Field<Type> > tresult = patchToPatch().slaveToMaster(expand);
|
|
||||||
|
|
||||||
// Truncate to size
|
|
||||||
tresult().setSize(size());
|
|
||||||
|
|
||||||
return tresult;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Expand master data
|
|
||||||
tmp<Field<Type> > expandmaster = expandMasterData(tpf());
|
|
||||||
|
|
||||||
tmp<Field<Type> > tresult = patchToPatch().masterToSlave(expandmaster);
|
|
||||||
|
|
||||||
// Truncate to size
|
|
||||||
tresult().setSize(size());
|
|
||||||
|
|
||||||
return tresult;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|
|
@ -14,7 +14,6 @@ FoamFile
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
dynamicFvMeshLib "libtopoChangerFvMesh.so";
|
|
||||||
dynamicFvMesh turboFvMesh;
|
dynamicFvMesh turboFvMesh;
|
||||||
|
|
||||||
turboFvMeshCoeffs
|
turboFvMeshCoeffs
|
||||||
|
@ -31,7 +30,12 @@ turboFvMeshCoeffs
|
||||||
{
|
{
|
||||||
Rotor1 60;
|
Rotor1 60;
|
||||||
Rotor2 -30;
|
Rotor2 -30;
|
||||||
Stator 0;
|
}
|
||||||
|
|
||||||
|
slider
|
||||||
|
{
|
||||||
|
Rotor1_faceZone 60;
|
||||||
|
Rotor2_faceZone -30;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,35 +22,17 @@ License
|
||||||
along with OpenFOAM; if not, write to the Free Software Foundation,
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
Instructions:
|
|
||||||
This tool is used to have multiple rotating regions around the same origin
|
|
||||||
with different rpms.
|
|
||||||
Creating the cellZones is not implemented in this tool.
|
|
||||||
The steps to obtain the cellZones are :
|
|
||||||
|
|
||||||
1) use regionCellSets utility. With this command you can have different
|
|
||||||
cellSets for each region.
|
|
||||||
|
|
||||||
2) Change the name of the regions eg. CellRegion0 to Rotor1 ,CellRegion1
|
|
||||||
to Stator and vice versa.
|
|
||||||
|
|
||||||
3) run command " setsToZones -noFlipMap ". After this command the
|
|
||||||
cellSets are transformed to cellZones.
|
|
||||||
|
|
||||||
4) in dynamicMeshDict rpm section should be added.
|
|
||||||
|
|
||||||
5) The case is ready to be run.
|
|
||||||
|
|
||||||
Implemented by Fethi Tekin, 24.03.2010
|
|
||||||
|
|
||||||
Author
|
Author
|
||||||
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
||||||
Fethi Tekin, All rights reserved.
|
Fethi Tekin, All rights reserved.
|
||||||
|
Oliver Borm, All rights reserved.
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#include "turboFvMesh.H"
|
#include "turboFvMesh.H"
|
||||||
#include "Time.H"
|
#include "Time.H"
|
||||||
#include "addToRunTimeSelectionTable.H"
|
#include "addToRunTimeSelectionTable.H"
|
||||||
|
#include "ZoneIDs.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
@ -63,26 +45,6 @@ namespace Foam
|
||||||
|
|
||||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
void Foam::turboFvMesh::addZonesAndModifiers()
|
|
||||||
{
|
|
||||||
// Add zones and modifiers for motion action
|
|
||||||
// No functionality is implemented
|
|
||||||
|
|
||||||
if (cellZones().size() > 0)
|
|
||||||
{
|
|
||||||
Info<< "void turboFvMesh::addZonesAndModifiers() : "
|
|
||||||
<< "Zones and modifiers already present. Skipping."
|
|
||||||
<< endl;
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
FatalErrorIn("turboFvMesh")
|
|
||||||
<< "Cell Regions have to be created"
|
|
||||||
<< abort(FatalError);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void Foam::turboFvMesh::calcMovingPoints() const
|
void Foam::turboFvMesh::calcMovingPoints() const
|
||||||
{
|
{
|
||||||
if (debug)
|
if (debug)
|
||||||
|
@ -99,8 +61,8 @@ void Foam::turboFvMesh::calcMovingPoints() const
|
||||||
<< abort(FatalError);
|
<< abort(FatalError);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Retrieve the zone Names
|
// Retrieve the cell zone Names
|
||||||
const wordList zoneNames = cellZones().names();
|
const wordList cellZoneNames = cellZones().names();
|
||||||
|
|
||||||
// Set the points
|
// Set the points
|
||||||
movingPointsPtr_ = new vectorField(allPoints().size(),vector::zero);
|
movingPointsPtr_ = new vectorField(allPoints().size(),vector::zero);
|
||||||
|
@ -110,16 +72,19 @@ void Foam::turboFvMesh::calcMovingPoints() const
|
||||||
const cellList& c = cells();
|
const cellList& c = cells();
|
||||||
const faceList& f = allFaces();
|
const faceList& f = allFaces();
|
||||||
|
|
||||||
forAll(zoneNames,zoneI)
|
scalar rpm;
|
||||||
|
|
||||||
|
forAll(cellZoneNames,cellZoneI)
|
||||||
{
|
{
|
||||||
Info<< "Moving Region Zone Name:" << zoneNames[zoneI]<< nl<<endl;
|
|
||||||
|
|
||||||
const labelList& cellAddr =
|
const labelList& cellAddr =
|
||||||
cellZones()[cellZones().findZoneID(zoneNames[zoneI])];
|
cellZones()[cellZones().findZoneID(cellZoneNames[cellZoneI])];
|
||||||
|
|
||||||
rpm_ = readScalar(dict_.subDict("rpm").lookup(zoneNames[zoneI]));
|
if (dict_.subDict("rpm").found(cellZoneNames[cellZoneI]))
|
||||||
|
{
|
||||||
|
rpm = readScalar(dict_.subDict("rpm").lookup(cellZoneNames[cellZoneI]));
|
||||||
|
|
||||||
Info<< "rpm:" << rpm_<<nl<<endl;
|
Info<< "Moving Cell Zone Name: " << cellZoneNames[cellZoneI]
|
||||||
|
<< " rpm: " << rpm << endl;
|
||||||
|
|
||||||
forAll (cellAddr, cellI)
|
forAll (cellAddr, cellI)
|
||||||
{
|
{
|
||||||
|
@ -132,13 +97,49 @@ void Foam::turboFvMesh::calcMovingPoints() const
|
||||||
forAll (curFace, pointI)
|
forAll (curFace, pointI)
|
||||||
{
|
{
|
||||||
// The rotation data is saved within the cell data. For
|
// The rotation data is saved within the cell data. For
|
||||||
// non-rotating regions rpm is zero, so mesh movement is
|
// non-rotating regions rpm is zero, so mesh movement
|
||||||
// also zero. The conversion of rotational speed
|
// is also zero. The conversion of rotational speed
|
||||||
|
|
||||||
// Note: deltaT changes during the run: moved to
|
// Note: deltaT changes during the run: moved to
|
||||||
// turboFvMesh::update(). HJ, 14/Oct/2010
|
// turboFvMesh::update(). HJ, 14/Oct/2010
|
||||||
movingPoints[curFace[pointI]] =
|
movingPoints[curFace[pointI]] =
|
||||||
vector(0, rpm_/60.0*360.0, 0);
|
vector(0, rpm/60.0*360.0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieve the face zone Names
|
||||||
|
const wordList faceZoneNames = faceZones().names();
|
||||||
|
|
||||||
|
// This is not bullet proof, as one could specify the wrong name of a
|
||||||
|
// faceZone, which is then not selected. The solver will crash after the
|
||||||
|
// first meshMotion iteration.
|
||||||
|
forAll (faceZoneNames, faceZoneI)
|
||||||
|
{
|
||||||
|
if (dict_.subDict("slider").found(faceZoneNames[faceZoneI]))
|
||||||
|
{
|
||||||
|
rpm = readScalar
|
||||||
|
(
|
||||||
|
dict_.subDict("slider").lookup(faceZoneNames[faceZoneI])
|
||||||
|
);
|
||||||
|
|
||||||
|
Info<< "Moving Face Zone Name: " << faceZoneNames[faceZoneI]
|
||||||
|
<< " rpm: " << rpm << endl;
|
||||||
|
|
||||||
|
faceZoneID zoneID(faceZoneNames[faceZoneI], faceZones());
|
||||||
|
|
||||||
|
const labelList& movingSliderAddr = faceZones()[zoneID.index()];
|
||||||
|
|
||||||
|
forAll (movingSliderAddr, faceI)
|
||||||
|
{
|
||||||
|
const face& curFace = f[movingSliderAddr[faceI]];
|
||||||
|
|
||||||
|
forAll (curFace, pointI)
|
||||||
|
{
|
||||||
|
movingPoints[curFace[pointI]] =
|
||||||
|
vector( 0, rpm/60.0*360.0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -177,11 +178,8 @@ Foam::turboFvMesh::turboFvMesh
|
||||||
dict_.subDict("coordinateSystem")
|
dict_.subDict("coordinateSystem")
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
|
||||||
movingPointsPtr_(NULL)
|
movingPointsPtr_(NULL)
|
||||||
{
|
{
|
||||||
addZonesAndModifiers();
|
|
||||||
|
|
||||||
Info<< "Turbomachine Mixer mesh:" << nl
|
Info<< "Turbomachine Mixer mesh:" << nl
|
||||||
<< " origin: " << cs().origin() << nl
|
<< " origin: " << cs().origin() << nl
|
||||||
<< " axis : " << cs().axis() << endl;
|
<< " axis : " << cs().axis() << endl;
|
||||||
|
|
|
@ -26,11 +26,31 @@ Class
|
||||||
turboFvMesh
|
turboFvMesh
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Simple mixer mesh using an overlapGGI interface
|
Simple mixer mesh using an ggi interfaces
|
||||||
|
|
||||||
|
This tool is used to have multiple rotating regions around the same origin
|
||||||
|
with different rpms. Creating the cellZones is not implemented in this tool.
|
||||||
|
The steps to obtain the cellZones and faceZones are:
|
||||||
|
|
||||||
|
1) use regionCellSets utility. With this command you can have different
|
||||||
|
cellSets for each region.
|
||||||
|
|
||||||
|
2) run command "setsToZones -noFlipMap". After this command the
|
||||||
|
cellSets are transformed to cellZones.
|
||||||
|
|
||||||
|
4) for each rotating cellZone add an entry in rpm subDict of
|
||||||
|
constant/dynamicMeshDict
|
||||||
|
|
||||||
|
5) in parallel you need to create from all rotating coupled-interface
|
||||||
|
patches faceZones (if you use a ggi interface between you have already
|
||||||
|
created these faceZones), Then you need to specify these faceZones with
|
||||||
|
the corresponding rpm in the additional "slider" subDict in
|
||||||
|
constant/dynamicMeshDict
|
||||||
|
|
||||||
Author
|
Author
|
||||||
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
||||||
Fethi Tekin, All rights reserved.
|
Fethi Tekin, All rights reserved.
|
||||||
|
Oliver Borm, All rights reserved.
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
turboFvMesh.C
|
turboFvMesh.C
|
||||||
|
@ -64,9 +84,6 @@ class turboFvMesh
|
||||||
//- Coordinate system
|
//- Coordinate system
|
||||||
autoPtr<coordinateSystem> csPtr_;
|
autoPtr<coordinateSystem> csPtr_;
|
||||||
|
|
||||||
// - Rotational speed in rotations per minute (rpm)
|
|
||||||
mutable scalar rpm_;
|
|
||||||
|
|
||||||
//- Markup field for points.
|
//- Markup field for points.
|
||||||
mutable vectorField* movingPointsPtr_;
|
mutable vectorField* movingPointsPtr_;
|
||||||
|
|
||||||
|
@ -79,10 +96,6 @@ class turboFvMesh
|
||||||
//- Disallow default bitwise assignment
|
//- Disallow default bitwise assignment
|
||||||
void operator=(const turboFvMesh&);
|
void operator=(const turboFvMesh&);
|
||||||
|
|
||||||
|
|
||||||
//- Add mixer zones
|
|
||||||
void addZonesAndModifiers();
|
|
||||||
|
|
||||||
//- Calculate moving Points
|
//- Calculate moving Points
|
||||||
void calcMovingPoints() const;
|
void calcMovingPoints() const;
|
||||||
|
|
||||||
|
|
|
@ -446,6 +446,47 @@ void Foam::MRFZone::absoluteFlux
|
||||||
absoluteRhoFlux(rho, phi);
|
absoluteRhoFlux(rho, phi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Foam::MRFZone::faceU
|
||||||
|
(
|
||||||
|
surfaceVectorField& zoneFaceU
|
||||||
|
) const
|
||||||
|
{
|
||||||
|
const surfaceVectorField& Cf = mesh_.Cf();
|
||||||
|
|
||||||
|
const vector& origin = origin_.value();
|
||||||
|
const vector& Omega = Omega_.value();
|
||||||
|
|
||||||
|
// Internal faces
|
||||||
|
forAll(internalFaces_, i)
|
||||||
|
{
|
||||||
|
label facei = internalFaces_[i];
|
||||||
|
zoneFaceU[facei] = (Omega ^ (Cf[facei] - origin));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Included patches
|
||||||
|
forAll(includedFaces_, patchi)
|
||||||
|
{
|
||||||
|
forAll(includedFaces_[patchi], i)
|
||||||
|
{
|
||||||
|
label patchFacei = includedFaces_[patchi][i];
|
||||||
|
|
||||||
|
zoneFaceU.boundaryField()[patchi][patchFacei] =
|
||||||
|
(Omega ^ (Cf.boundaryField()[patchi][patchFacei] - origin));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Excluded patches
|
||||||
|
forAll(excludedFaces_, patchi)
|
||||||
|
{
|
||||||
|
forAll(excludedFaces_[patchi], i)
|
||||||
|
{
|
||||||
|
label patchFacei = excludedFaces_[patchi][i];
|
||||||
|
|
||||||
|
zoneFaceU.boundaryField()[patchi][patchFacei] =
|
||||||
|
(Omega ^ (Cf.boundaryField()[patchi][patchFacei] - origin));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Foam::MRFZone::correctBoundaryVelocity(volVectorField& U) const
|
void Foam::MRFZone::correctBoundaryVelocity(volVectorField& U) const
|
||||||
{
|
{
|
||||||
|
|
|
@ -199,6 +199,9 @@ public:
|
||||||
surfaceScalarField& phi
|
surfaceScalarField& phi
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
|
//- Compute the pseudo face velocity of the MRF region
|
||||||
|
void faceU(surfaceVectorField& zoneFaceU) const;
|
||||||
|
|
||||||
//- Correct the boundary velocity for the roation of the MRF region
|
//- Correct the boundary velocity for the roation of the MRF region
|
||||||
void correctBoundaryVelocity(volVectorField& U) const;
|
void correctBoundaryVelocity(volVectorField& U) const;
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,6 @@ License
|
||||||
#include "fvMesh.H"
|
#include "fvMesh.H"
|
||||||
#include "volFields.H"
|
#include "volFields.H"
|
||||||
#include "surfaceFields.H"
|
#include "surfaceFields.H"
|
||||||
#include "geometricOneField.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
|
@ -85,6 +85,33 @@ Foam::tmp<Foam::surfaceScalarField> Foam::MRFZones::fluxCorrection() const
|
||||||
return tMRFZonesPhiCorr;
|
return tMRFZonesPhiCorr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Foam::tmp<Foam::surfaceVectorField> Foam::MRFZones::faceU() const
|
||||||
|
{
|
||||||
|
tmp<surfaceVectorField> tMRFZonesFaceU
|
||||||
|
(
|
||||||
|
new surfaceVectorField
|
||||||
|
(
|
||||||
|
IOobject
|
||||||
|
(
|
||||||
|
"MRFZonesFaceU",
|
||||||
|
mesh_.time().timeName(),
|
||||||
|
mesh_,
|
||||||
|
IOobject::NO_READ,
|
||||||
|
IOobject::NO_WRITE
|
||||||
|
),
|
||||||
|
mesh_,
|
||||||
|
dimensionedVector("zero", dimVelocity, vector::zero)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
surfaceVectorField& MRFZonesFaceU = tMRFZonesFaceU();
|
||||||
|
|
||||||
|
forAll(*this, i)
|
||||||
|
{
|
||||||
|
operator[](i).faceU(MRFZonesFaceU);
|
||||||
|
}
|
||||||
|
|
||||||
|
return tMRFZonesFaceU;
|
||||||
|
}
|
||||||
|
|
||||||
void Foam::MRFZones::addCoriolis(fvVectorMatrix& UEqn) const
|
void Foam::MRFZones::addCoriolis(fvVectorMatrix& UEqn) const
|
||||||
{
|
{
|
||||||
|
|
|
@ -81,6 +81,9 @@ public:
|
||||||
//- Return raw correction flux
|
//- Return raw correction flux
|
||||||
tmp<surfaceScalarField> fluxCorrection() const;
|
tmp<surfaceScalarField> fluxCorrection() const;
|
||||||
|
|
||||||
|
//- Return pseudo mesh flux
|
||||||
|
tmp<surfaceVectorField> faceU() const;
|
||||||
|
|
||||||
// Incompressible MRF
|
// Incompressible MRF
|
||||||
|
|
||||||
//- Add the Coriolis force contribution to the momentum equation
|
//- Add the Coriolis force contribution to the momentum equation
|
||||||
|
|
|
@ -40,9 +40,13 @@ boundaryField
|
||||||
type movingWallVelocity;
|
type movingWallVelocity;
|
||||||
value uniform (0 0 0);
|
value uniform (0 0 0);
|
||||||
}
|
}
|
||||||
rotor_cyclics
|
rotor_cyclic_upper
|
||||||
{
|
{
|
||||||
type cyclic;
|
type cyclicGgi;
|
||||||
|
}
|
||||||
|
rotor_cyclic_lower
|
||||||
|
{
|
||||||
|
type cyclicGgi;
|
||||||
}
|
}
|
||||||
stator_cyclics
|
stator_cyclics
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,9 +37,13 @@ boundaryField
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
}
|
}
|
||||||
rotor_cyclics
|
rotor_cyclic_upper
|
||||||
{
|
{
|
||||||
type cyclic;
|
type cyclicGgi;
|
||||||
|
}
|
||||||
|
rotor_cyclic_lower
|
||||||
|
{
|
||||||
|
type cyclicGgi;
|
||||||
}
|
}
|
||||||
stator_cyclics
|
stator_cyclics
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,10 +4,16 @@
|
||||||
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
||||||
|
|
||||||
cleanCase
|
cleanCase
|
||||||
rm -rf VTK log*
|
rm -rf constant/polyMesh/boundary
|
||||||
rm -rf constant/polyMesh/points* \
|
|
||||||
constant/polyMesh/face* \
|
# rm -rf VTK log*
|
||||||
constant/polyMesh/owner* \
|
# rm -rf constant/polyMesh/points* \
|
||||||
constant/polyMesh/neighbour* \
|
# constant/polyMesh/face* \
|
||||||
constant/polyMesh/*Zones* \
|
# constant/polyMesh/owner* \
|
||||||
constant/polyMesh/sets
|
# constant/polyMesh/neighbour* \
|
||||||
|
# constant/polyMesh/*Zones* \
|
||||||
|
# constant/polyMesh/sets
|
||||||
|
#
|
||||||
|
# rm -rf processor*
|
||||||
|
|
||||||
|
find -iname "*~" | xargs rm -rf
|
||||||
|
|
|
@ -6,6 +6,9 @@ application="icoDyMFoam"
|
||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
cp constant/polyMesh/boundary.org constant/polyMesh/boundary
|
cp constant/polyMesh/boundary.org constant/polyMesh/boundary
|
||||||
|
runApplication setSet -batch setBatch
|
||||||
runApplication regionCellSets
|
runApplication regionCellSets
|
||||||
runApplication setsToZones -noFlipMap
|
runApplication setsToZones -noFlipMap
|
||||||
runApplication $application
|
runApplication decomposePar
|
||||||
|
# # runApplication $application
|
||||||
|
runParallel icoDyMFoam 4
|
||||||
|
|
|
@ -29,7 +29,14 @@ turboFvMeshCoeffs
|
||||||
rpm
|
rpm
|
||||||
{
|
{
|
||||||
cellRegion0 60;
|
cellRegion0 60;
|
||||||
cellRegion1 0;
|
// cellRegion1 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
slider
|
||||||
|
{
|
||||||
|
interface1_faces 60;
|
||||||
|
rotor_cyclic_upper_faces 60;
|
||||||
|
rotor_cyclic_lower_faces 60;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -96,10 +96,13 @@ patches
|
||||||
(12 14 15 13)
|
(12 14 15 13)
|
||||||
(0 2 3 1)
|
(0 2 3 1)
|
||||||
)
|
)
|
||||||
cyclic rotor_cyclics
|
cyclicGgi rotor_cyclic_upper
|
||||||
|
(
|
||||||
|
(14 16 17 15)
|
||||||
|
)
|
||||||
|
cyclicGgi rotor_cyclic_lower
|
||||||
(
|
(
|
||||||
(2 4 5 3)
|
(2 4 5 3)
|
||||||
(14 16 17 15)
|
|
||||||
)
|
)
|
||||||
cyclic stator_cyclics
|
cyclic stator_cyclics
|
||||||
(
|
(
|
||||||
|
|
|
@ -1,78 +0,0 @@
|
||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
|
||||||
| ========= | |
|
|
||||||
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
|
|
||||||
| \\ / O peration | Version: 1.6-ext |
|
|
||||||
| \\ / A nd | Web: www.extend-project.de |
|
|
||||||
| \\/ M anipulation | |
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
FoamFile
|
|
||||||
{
|
|
||||||
version 2.0;
|
|
||||||
format ascii;
|
|
||||||
class polyBoundaryMesh;
|
|
||||||
location "constant/polyMesh";
|
|
||||||
object boundary;
|
|
||||||
}
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
8
|
|
||||||
(
|
|
||||||
inlet
|
|
||||||
{
|
|
||||||
type patch;
|
|
||||||
nFaces 200;
|
|
||||||
startFace 28100;
|
|
||||||
}
|
|
||||||
outlet
|
|
||||||
{
|
|
||||||
type patch;
|
|
||||||
nFaces 200;
|
|
||||||
startFace 28300;
|
|
||||||
}
|
|
||||||
fixedWalls
|
|
||||||
{
|
|
||||||
type wall;
|
|
||||||
nFaces 1400;
|
|
||||||
startFace 28500;
|
|
||||||
}
|
|
||||||
movingwalls
|
|
||||||
{
|
|
||||||
type patch;
|
|
||||||
nFaces 1400;
|
|
||||||
startFace 29900;
|
|
||||||
}
|
|
||||||
rotor_cyclics
|
|
||||||
{
|
|
||||||
type cyclic;
|
|
||||||
nFaces 100;
|
|
||||||
startFace 31300;
|
|
||||||
featureCos 0.9;
|
|
||||||
}
|
|
||||||
stator_cyclics
|
|
||||||
{
|
|
||||||
type cyclic;
|
|
||||||
nFaces 100;
|
|
||||||
startFace 31400;
|
|
||||||
featureCos 0.9;
|
|
||||||
}
|
|
||||||
interface1
|
|
||||||
{
|
|
||||||
type overlapGgi;
|
|
||||||
nFaces 200;
|
|
||||||
startFace 31500;
|
|
||||||
rotationAxis (0 0 1);
|
|
||||||
nCopies 0;
|
|
||||||
shadowPatch ;
|
|
||||||
}
|
|
||||||
interface2
|
|
||||||
{
|
|
||||||
type overlapGgi;
|
|
||||||
nFaces 200;
|
|
||||||
startFace 31700;
|
|
||||||
rotationAxis (0 0 1);
|
|
||||||
nCopies 0;
|
|
||||||
shadowPatch ;
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
| ========= | |
|
| ========= | |
|
||||||
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
|
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
|
||||||
| \\ / O peration | Version: 1.6-ext |
|
| \\ / O peration | Version: 1.6-ext |
|
||||||
| \\ / A nd | Web: www.extend-project.de |
|
| \\ / A nd | Web: www.extend-project.de |
|
||||||
| \\/ M anipulation | |
|
| \\/ M anipulation | |
|
||||||
|
@ -15,7 +15,7 @@ FoamFile
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
8
|
9
|
||||||
(
|
(
|
||||||
inlet
|
inlet
|
||||||
{
|
{
|
||||||
|
@ -41,12 +41,29 @@ FoamFile
|
||||||
nFaces 1400;
|
nFaces 1400;
|
||||||
startFace 29900;
|
startFace 29900;
|
||||||
}
|
}
|
||||||
rotor_cyclics
|
rotor_cyclic_upper
|
||||||
{
|
{
|
||||||
type cyclic;
|
type cyclicGgi;
|
||||||
nFaces 100;
|
nFaces 50;
|
||||||
startFace 31300;
|
startFace 31300;
|
||||||
featureCos 0.9;
|
shadowPatch rotor_cyclic_lower;
|
||||||
|
zone rotor_cyclic_upper_faces;
|
||||||
|
bridgeOverlap false;
|
||||||
|
rotationAxis (0 0 1);
|
||||||
|
rotationAngle -30;
|
||||||
|
separationOffset (0 0 0);
|
||||||
|
}
|
||||||
|
rotor_cyclic_lower
|
||||||
|
{
|
||||||
|
type cyclicGgi;
|
||||||
|
nFaces 50;
|
||||||
|
startFace 31350;
|
||||||
|
shadowPatch rotor_cyclic_upper;
|
||||||
|
zone rotor_cyclic_lower_faces;
|
||||||
|
bridgeOverlap false;
|
||||||
|
rotationAxis (0 0 1);
|
||||||
|
rotationAngle 30;
|
||||||
|
separationOffset (0 0 0);
|
||||||
}
|
}
|
||||||
stator_cyclics
|
stator_cyclics
|
||||||
{
|
{
|
||||||
|
@ -63,6 +80,7 @@ FoamFile
|
||||||
rotationAxis (0 0 1);
|
rotationAxis (0 0 1);
|
||||||
nCopies 12;
|
nCopies 12;
|
||||||
shadowPatch interface2;
|
shadowPatch interface2;
|
||||||
|
zone interface1_faces;
|
||||||
}
|
}
|
||||||
interface2
|
interface2
|
||||||
{
|
{
|
||||||
|
@ -72,6 +90,7 @@ FoamFile
|
||||||
rotationAxis (0 0 1);
|
rotationAxis (0 0 1);
|
||||||
nCopies 12;
|
nCopies 12;
|
||||||
shadowPatch interface1;
|
shadowPatch interface1;
|
||||||
|
zone interface2_faces;
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
faceSet interface1_faces new patchToFace interface1
|
||||||
|
faceSet interface2_faces new patchToFace interface2
|
||||||
|
faceSet rotor_cyclic_upper_faces new patchToFace rotor_cyclic_upper
|
||||||
|
faceSet rotor_cyclic_lower_faces new patchToFace rotor_cyclic_lower
|
||||||
|
quit
|
|
@ -16,7 +16,7 @@ FoamFile
|
||||||
|
|
||||||
application icoDyMFoam;
|
application icoDyMFoam;
|
||||||
|
|
||||||
startFrom latestTime;
|
startFrom startTime;
|
||||||
|
|
||||||
startTime 0;
|
startTime 0;
|
||||||
|
|
||||||
|
@ -43,6 +43,7 @@ timeFormat general;
|
||||||
timePrecision 4;
|
timePrecision 4;
|
||||||
|
|
||||||
runTimeModifiable yes;
|
runTimeModifiable yes;
|
||||||
|
|
||||||
adjustTimeStep yes;
|
adjustTimeStep yes;
|
||||||
|
|
||||||
maxCo 0.8;
|
maxCo 0.8;
|
||||||
|
|
|
@ -0,0 +1,77 @@
|
||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: 1.0 |
|
||||||
|
| \\ / A nd | Web: http://www.openfoam.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
object decomposeParDict;
|
||||||
|
}
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
//- Keep owner and neighbour on same processor for faces in zones:
|
||||||
|
// preserveFaceZones ( interface1_faces interface2_faces );
|
||||||
|
|
||||||
|
//- Keep owner and neighbour on same processor for faces in patches:
|
||||||
|
// preservePatches ( interface1 interface2 );
|
||||||
|
|
||||||
|
globalFaceZones
|
||||||
|
(
|
||||||
|
interface1_faces
|
||||||
|
interface2_faces
|
||||||
|
rotor_cyclic_upper_faces
|
||||||
|
rotor_cyclic_lower_faces
|
||||||
|
); // Those are the names of the face zones created previously
|
||||||
|
|
||||||
|
numberOfSubdomains 4; // The problem will be decomposed in 4 different processors
|
||||||
|
|
||||||
|
method scotch;
|
||||||
|
// method metis;
|
||||||
|
|
||||||
|
simpleCoeffs
|
||||||
|
{
|
||||||
|
n (2 2 1);
|
||||||
|
delta 0.001;
|
||||||
|
}
|
||||||
|
|
||||||
|
metisCoeffs
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
processorWeights
|
||||||
|
(
|
||||||
|
1
|
||||||
|
1
|
||||||
|
1
|
||||||
|
1
|
||||||
|
);
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
|
scotchCoeffs
|
||||||
|
{
|
||||||
|
//processorWeights
|
||||||
|
//(
|
||||||
|
// 1
|
||||||
|
// 1
|
||||||
|
// 1
|
||||||
|
// 1
|
||||||
|
//);
|
||||||
|
//writeGraph true;
|
||||||
|
//strategy "b";
|
||||||
|
}
|
||||||
|
|
||||||
|
distributed no;
|
||||||
|
|
||||||
|
roots
|
||||||
|
(
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
|
@ -58,7 +58,7 @@ WM_SCRIPTS = $(WM_DIR)/scripts
|
||||||
|
|
||||||
LIB_SRC = $(WM_PROJECT_DIR)/src
|
LIB_SRC = $(WM_PROJECT_DIR)/src
|
||||||
LIB_DIR = $(WM_PROJECT_DIR)/lib
|
LIB_DIR = $(WM_PROJECT_DIR)/lib
|
||||||
LIB_WM_OPTIONS_DIR = $(LIB_DIR)/$(WM_OPTIONS)
|
LIB_WM_OPTIONS_DIR = $(LIB_DIR)
|
||||||
OBJECTS_DIR = $(MAKE_DIR)/$(WM_OPTIONS)
|
OBJECTS_DIR = $(MAKE_DIR)/$(WM_OPTIONS)
|
||||||
CLASSES_DIR = $(MAKE_DIR)/classes
|
CLASSES_DIR = $(MAKE_DIR)/classes
|
||||||
|
|
||||||
|
|
Reference in a new issue