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