layeredSiloFilling updated

This commit is contained in:
Ramin Khodabandeh 2024-05-28 13:24:34 +04:30
parent b591d8fda1
commit c8a28f82c9
7 changed files with 19 additions and 2 deletions

View File

@ -66,3 +66,5 @@ model
0.1); 0.1);
} }

View File

@ -11,3 +11,5 @@ names (lightSphere heavySphere); // names of shapes
diameters (0.007 0.007); // diameter of shapes diameters (0.007 0.007); // diameter of shapes
materials (lightMat heavyMat); // material names for shapes materials (lightMat heavyMat); // material names for shapes

View File

@ -56,3 +56,5 @@ boundaries
type exit; // other options: periodict, reflective type exit; // other options: periodict, reflective
} }
} }

View File

@ -70,3 +70,7 @@ surfaces
} }

View File

@ -42,3 +42,4 @@ positionParticles // positions particle
max ( 0.08 0.08 0.098); // upper corner point of the box max ( 0.08 0.08 0.098); // upper corner point of the box
} }
} }

View File

@ -20,7 +20,8 @@ timePrecision 6; // maximum number of digits for time folder
g (0 0 -9.8); // gravity vector (m/s2) g (0 0 -9.8); // gravity vector (m/s2)
// save necessary (i.e., required) data on disk // save data objects that are not automatically saved on disk.
// overrides the default behavior
includeObjects (diameter); includeObjects (diameter);
// exclude unnecessary data from saving on disk // exclude unnecessary data from saving on disk
excludeObjects (rVelocity.dy1 pStructPosition.dy1 pStructVelocity.dy1); excludeObjects (rVelocity.dy1 pStructPosition.dy1 pStructVelocity.dy1);
@ -32,3 +33,6 @@ writeFormat ascii; // data writting format (ascii or binar
timersReport Yes; // report timers timersReport Yes; // report timers
timersReportInterval 0.01; // time interval for reporting timers timersReportInterval 0.01; // time interval for reporting timers