Files
phasicFlow/tutorials/sphereGranFlow/layeredSiloFilling/caseSetup/particleInsertion

55 lines
1.5 KiB
Plaintext
Raw Normal View History

2022-09-28 12:08:09 +03:30
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName particleInsertion;
objectType dicrionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2024-12-03 15:49:59 +03:30
active Yes; // is insertion active -> yes or no
2022-09-28 12:08:09 +03:30
2024-12-03 15:49:59 +03:30
checkForCollision No; // is checked -> yes or no
2022-09-28 12:08:09 +03:30
/*
one layers of particles are packed
2022-09-28 12:08:09 +03:30
*/
layer0
{
timeControl simulationTime;
2022-09-28 12:08:09 +03:30
regionType cylinder; // type of insertion region
2022-09-28 12:08:09 +03:30
rate 15000; // insertion rate (particles/s)
2022-09-28 12:08:09 +03:30
startTime 0; // (s)
2022-09-28 12:08:09 +03:30
endTime 0.5; // (s)
2022-09-28 12:08:09 +03:30
insertionInterval 0.025; // s
cylinderInfo
2022-09-28 12:08:09 +03:30
{
radius 0.09; // radius of cylinder (m)
2022-09-28 12:08:09 +03:30
p1 ( 0.0 0.0 0.1 ); // (m,m,m)
2022-09-28 12:08:09 +03:30
p2 ( 0.0 0.0 0.11); // (m,m,m)
2022-09-28 12:08:09 +03:30
}
setFields
{
velocity realx3 (0.0 0.0 -0.6); // initial velocity of inserted particles
2022-09-28 12:08:09 +03:30
}
mixture
{
lightSphere 1; // mixture composition of inserted particles
2022-09-28 12:08:09 +03:30
}
}
2024-05-28 13:24:34 +04:30