This toturial has been modified for version 1.x of phasicFlow.
This commit is contained in:
parent
888343c655
commit
74833ce6a6
|
@ -6,16 +6,16 @@ objectName domainDict;
|
||||||
objectType dictionary;
|
objectType dictionary;
|
||||||
fileFormat ASCII;
|
fileFormat ASCII;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
globalBox
|
globalBox // Simulation domain: every particles that goes outside this domain will be deleted
|
||||||
{
|
{
|
||||||
min (-0.12 -0.12 0);
|
min (-0.12 -0.12 0);
|
||||||
|
|
||||||
max (0.12 0.12 0.1);
|
max (0.12 0.12 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
decomposition
|
decomposition
|
||||||
{
|
{
|
||||||
direction z;
|
direction z;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
boundaries
|
boundaries
|
||||||
|
@ -25,12 +25,10 @@ boundaries
|
||||||
// of all boundaries in the simulation domain?
|
// of all boundaries in the simulation domain?
|
||||||
neighborListUpdateInterval 50;
|
neighborListUpdateInterval 50;
|
||||||
|
|
||||||
// How often do you want to update the new changes in the
|
// How often do you want to update the new changes in the boundary
|
||||||
// boundary
|
|
||||||
updateInterval 10;
|
updateInterval 10;
|
||||||
|
|
||||||
// The distance from the boundary plane within which particles are
|
// The distance from the boundary plane within which particles are marked to be in the boundary list
|
||||||
// marked to be in the boundary list.
|
|
||||||
neighborLength 0.004;
|
neighborLength 0.004;
|
||||||
|
|
||||||
left
|
left
|
||||||
|
@ -40,26 +38,26 @@ boundaries
|
||||||
|
|
||||||
right
|
right
|
||||||
{
|
{
|
||||||
type exit;
|
type exit; // other options: periodict, reflective
|
||||||
}
|
}
|
||||||
|
|
||||||
bottom
|
bottom
|
||||||
{
|
{
|
||||||
type exit;
|
type exit; // other options: periodict, reflective
|
||||||
}
|
}
|
||||||
|
|
||||||
top
|
top
|
||||||
{
|
{
|
||||||
type exit;
|
type exit; // other options: periodict, reflective
|
||||||
}
|
}
|
||||||
|
|
||||||
rear
|
rear
|
||||||
{
|
{
|
||||||
type exit;
|
type exit; // other options: periodict, reflective
|
||||||
}
|
}
|
||||||
|
|
||||||
front
|
front
|
||||||
{
|
{
|
||||||
type exit;
|
type exit; // other options: periodict, reflective
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -8,7 +8,7 @@ fileFormat ASCII;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
motionModel rotatingAxis; // motion model can be rotatingAxis or stationary or vibrating
|
motionModel rotatingAxis; // motion model can be rotatingAxis or stationary or vibrating
|
||||||
|
|
||||||
rotatingAxisInfo // information for rotatingAxisMotion motion model
|
rotatingAxisInfo // information for rotatingAxis motion model
|
||||||
{
|
{
|
||||||
rotAxis
|
rotAxis
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,10 +20,6 @@ timePrecision 6; // maximum number of digits for time f
|
||||||
|
|
||||||
g (0 -9.8 0); // gravity vector (m/s2)
|
g (0 -9.8 0); // gravity vector (m/s2)
|
||||||
|
|
||||||
/*
|
|
||||||
Simulation domain every particles that goes outside this domain is deleted
|
|
||||||
*/
|
|
||||||
|
|
||||||
// save necessary (i.e., required) data on disk
|
// save necessary (i.e., required) data on disk
|
||||||
includeObjects (diameter);
|
includeObjects (diameter);
|
||||||
// exclude unnecessary data from saving on disk
|
// exclude unnecessary data from saving on disk
|
||||||
|
|
Loading…
Reference in New Issue