mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: PDRMesh
This commit is contained in:
3
applications/utilities/mesh/advanced/PDRMesh/Make/files
Normal file
3
applications/utilities/mesh/advanced/PDRMesh/Make/files
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
PDRMesh.C
|
||||||
|
|
||||||
|
EXE = $(FOAM_APPBIN)/PDRMesh
|
||||||
11
applications/utilities/mesh/advanced/PDRMesh/Make/options
Normal file
11
applications/utilities/mesh/advanced/PDRMesh/Make/options
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
EXE_INC = \
|
||||||
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
||||||
|
-I$(LIB_SRC)/dynamicMesh/lnInclude \
|
||||||
|
-I$(LIB_SRC)/finiteVolume/lnInclude
|
||||||
|
|
||||||
|
EXE_LIBS = \
|
||||||
|
-lmeshTools \
|
||||||
|
-ldynamicMesh \
|
||||||
|
-lfiniteVolume \
|
||||||
|
-lcompressibleRASModels
|
||||||
|
|
||||||
1181
applications/utilities/mesh/advanced/PDRMesh/PDRMesh.C
Normal file
1181
applications/utilities/mesh/advanced/PDRMesh/PDRMesh.C
Normal file
File diff suppressed because it is too large
Load Diff
40
applications/utilities/mesh/advanced/PDRMesh/PDRMeshDict
Normal file
40
applications/utilities/mesh/advanced/PDRMesh/PDRMeshDict
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
object PDRMeshDict;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
//- Per faceSet the patch the faces should go into blocked baffles
|
||||||
|
blockedFaces ((blockedFacesSet blockedFaces));
|
||||||
|
|
||||||
|
//- Per faceSet the patch the faces should go into coupled baffles
|
||||||
|
coupledFaces
|
||||||
|
{
|
||||||
|
coupledFacesSet
|
||||||
|
{
|
||||||
|
wallPatchName baffleWall;
|
||||||
|
cyclicMasterPatchName baffleCyclic_half0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//- Name of cellSet that holds the cells to fully remove
|
||||||
|
blockedCells blockedCellsSet;
|
||||||
|
|
||||||
|
//- All exposed faces that are not specified in blockedFaces go into
|
||||||
|
// this patch
|
||||||
|
defaultPatch outer;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
Reference in New Issue
Block a user