mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
.github
DEMSystems
benchmarks
cmake
doc
solvers
src
tutorials
grainGranFlow
iterateGeometry
postprocessPhasicFlow
sphereGranFlow
RotaryAirLockValve
RotatingDrumWithBaffles
V-blender
caseSetup
settings
domainDict
geometryDict
particlesDict
settingsDict
stl
README.md
cleanThisCase
runThisCase
v-blender.png
binarySystemOfParticles
conveyorBelt
drum-PeriodicBoundary
homogenizationSilo-PeriodicBoundary
layeredSiloFilling
rotatingDrumMedium
rotatingDrumSmall
screwConveyor
toteBlender
README.md
utilities
.gitignore
CMakeLists.txt
LICENSE
README.md
phasicFlowConfig.H.in
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
| phasicFlow File |
|
|
| copyright: www.cemf.ir |
|
|
\* ------------------------------------------------------------------------- */
|
|
objectName geometryDict;
|
|
objectType dictionary;
|
|
fileFormat ASCII;
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
motionModel rotatingAxis; // motion model: rotating object around an axis
|
|
|
|
rotatingAxisInfo // information for rotatingAxis motion model
|
|
{
|
|
rotAxis
|
|
{
|
|
p1 (0.128228 0.116446 0.297901); // first point for the axis of rotation
|
|
|
|
p2 (0.722596 0.116459 0.297901); // second point for the axis of rotation
|
|
|
|
omega 3.14; // rotation speed (rad/s)
|
|
|
|
startTime 3; // start time of rotation
|
|
|
|
endTime 10; // end time of rotation
|
|
}
|
|
}
|
|
|
|
surfaces
|
|
{
|
|
body
|
|
{
|
|
type stlWall; // type of the wall
|
|
|
|
file body.stl; // file name in stl folder
|
|
|
|
material wallMat; // material name of this wall
|
|
|
|
motion rotAxis; // motion component name
|
|
}
|
|
}
|
|
|
|
|
|
|