mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
.github
DEMSystems
benchmarks
cmake
doc
solvers
src
thirdParty
tutorials
grainGranFlow
iterateGeometry
postprocessPhasicFlow
sphereGranFlow
RotaryAirLockValve
RotatingDrumWithBaffles
V-blender
binarySystemOfParticles
conveyorBelt
drum-PeriodicBoundary
homogenizationSilo-PeriodicBoundary
layeredSiloFilling
rotatingDrumMedium
rotatingDrumSmall
screwConveyor
caseSetup
settings
domainDict
geometryDict
particlesDict
settingsDict
stl
README.md
cleanThisCase
runThisCase
screw.jpeg
toteBlender
README.md
utilities
.gitignore
CMakeLists.txt
LICENSE
README.md
phasicFlowConfig.H.in
50 lines
891 B
C++
Executable File
50 lines
891 B
C++
Executable File
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
| phasicFlow File |
|
|
| copyright: www.cemf.ir |
|
|
\* ------------------------------------------------------------------------- */
|
|
|
|
objectName domainDict;
|
|
objectType dictionary;
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
// Simulation domain: every particle that goes outside this domain will be deleted
|
|
globalBox
|
|
{
|
|
min (-0.2 -0.20 -0.01);
|
|
max ( 0.2 0.4 1.05);
|
|
}
|
|
|
|
boundaries
|
|
{
|
|
left
|
|
{
|
|
type exit;
|
|
}
|
|
|
|
right
|
|
{
|
|
type exit;
|
|
}
|
|
|
|
bottom
|
|
{
|
|
type exit;
|
|
}
|
|
|
|
top
|
|
{
|
|
type exit;
|
|
}
|
|
|
|
rear
|
|
{
|
|
type exit;
|
|
}
|
|
|
|
front
|
|
{
|
|
type exit;
|
|
}
|
|
} |