V-blender updated.

This commit is contained in:
Ramin Khodabandeh
2024-05-28 18:03:19 +04:30
parent 8490668d51
commit 8d14850a1e
7 changed files with 202 additions and 198 deletions

View File

@ -6,12 +6,9 @@ objectName particleInsertion;
objectType dicrionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
active Yes; // is insertion active -> yes or no
// is insertion active?
active yes;
// not implemented for yes
collisionCheck No;
checkForCollision No; // is checked -> yes or no
/*
two layers of particles are packed one-by-one using tho insertion steps.
@ -19,84 +16,79 @@ two layers of particles are packed one-by-one using tho insertion steps.
rightregion
{
// type of insertion region
type cylinderRegion;
// insertion rate (particles/s)
rate 10000;
// start time of small particles insertion (s)
startTime 0.0;
// end time of small particles insertion (s)
endTime 1;
// time interval of small particles insertion (s)
interval 0.025;
regionType cylinder; // type of insertion region
cylinderRegionInfo
cylinderInfo
{
// radius of cylinder (m)
radius 0.1;
// coordinates of center of both ends of the insertion cylinder on
// the right side of the V-blender (m,m,m)
p1 (0.0950615 0.12 0.5011585);
p2 (0.1150615 0.12 0.4811585);
// coordinates of center of both ends of the insertion cylinder on
// the right side of the V-blender (m,m,m)
p1 (0.0950615 0.12 0.5011585); // (m,m,m)
p2 (0.1150615 0.12 0.4811585); // (m,m,m)
radius 0.1; // radius of cylinder (m)
}
timeControl simulationTime;
insertionInterval 0.025; // seconds
rate 10000; // insertion rate (particles/s)
startTime 0.0; // start time of small particles insertion (s)
endTime 1; // end time of small particles insertion (s)
interval 0.025; // time interval of small particles insertion (s)
setFields
{
// initial velocity of inserted particles
velocity realx3 (1.2 0.0 -1.2);
velocity realx3 (1.2 0.0 -1.2); // initial velocity of inserted particles
}
mixture
{
// first layer of inserted particles
smallSphere 1;
smallSphere 1; // first layer of inserted particles
}
}
leftregion
{
// type of insertion region
type cylinderRegion;
// insertion rate (particles/s)
rate 10000;
// start time of large particles insertion (s)
startTime 1.5;
// end time of large particles insertion (s)
endTime 2.5;
// time interval of large particles insertion (s)
interval 0.025;
regionType cylinder; // type of insertion region
cylinderRegionInfo
cylinderInfo
{
// radius of cylinder (m)
radius 0.1;
// coordinates of center of both ends of the insertion cylinder on
// the left side of the V-blender (m,m,m)
p1 ( 0.7562545 0.12 0.50079);
p2 ( 0.7362545 0.12 0.48079);
// coordinates of center of both ends of the insertion cylinder on
// the right side of the V-blender (m,m,m)
p1 ( 0.7562545 0.12 0.50079); // (m,m,m)
p2 ( 0.7362545 0.12 0.48079); // (m,m,m)
radius 0.1; // radius of cylinder (m)
}
timeControl simulationTime;
insertionInterval 0.025; // seconds
rate 10000; // insertion rate (particles/s)
startTime 1.5; // start time of large particles insertion (s)
endTime 2.5; // end time of large particles insertion (s)
interval 0.025; // time interval of large particles insertion (s)
setFields
{
// initial velocity of inserted particles
velocity realx3 (-1.2 0.0 -1.2);
velocity realx3 (-1.2 0.0 -1.2); // initial velocity of inserted particles
}
mixture
{
// second layer of inserted particles
largeSphere 1;
largeSphere 1; // second layer of inserted particles
}
}