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
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
| phasicFlow File |
|
|
| copyright: www.cemf.ir |
|
|
\* ------------------------------------------------------------------------- */
|
|
objectName geometryDict;
|
|
objectType dictionary;
|
|
fileFormat ASCII;
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
// motion model: rotating object around an axis
|
|
motionModel rotatingAxis;
|
|
|
|
rotatingAxisInfo
|
|
{
|
|
rotAxis
|
|
{
|
|
p1 (0 0 0.0); // first point for the axis of rotation
|
|
p2 (0 0 1.0); // second point for the axis of rotation
|
|
omega 3.14; // rotation speed (rad/s)
|
|
startTime 1; // when t>1 s, rotation starts
|
|
endTime 30; // when t>30 s, rotation stops
|
|
}
|
|
}
|
|
|
|
|
|
surfaces
|
|
{
|
|
helix
|
|
{
|
|
type stlWall; // type of the wall
|
|
file screw.stl; // file name in stl folder
|
|
material prop1; // material name of this wall
|
|
motion rotAxis; // motion component name
|
|
}
|
|
|
|
shell
|
|
{
|
|
type stlWall; // type of the wall
|
|
file shell.stl; // file name in stl folder
|
|
material prop1; // material name of this wall
|
|
motion none; // this surface is not moving ==> none
|
|
}
|
|
}
|
|
|
|
|
|
|