60 logger(
INFO,
"In this file 32^2 particles with the same velocity are placed "
61 "in a bi-axial box. This makes them collide with the walls and eachother. "
62 "Afterwards the same run is performed with hgrid on. It tests the working "
63 "(and speedup) of the hgrid.");
67 auto species =
problem.speciesHandler.copyAndAddObject(
69 species->setDensity(2000);
70 species->setDissipation(0.01);
71 species->setStiffness(1e4);
72 species->setSlidingFrictionCoefficient(0.1);
73 species->setDensity(2000);
74 species->setAdhesionStiffness(0.05 * species->getStiffness());
75 species->setAdhesionForceMax(1.1e-4 * 0.05 * species->getStiffness());
78 problem.setName(
"FreeCoolingAdhesiveDemo");
87 problem.setHGridUpdateEachTimeStep(
true);
94 logger(
INFO,
"%",
problem.particleHandler.getObject(0)->getMaxInteractionRadius());
Array< double, 1, 3 > e(1./3., 0.5, 2.)
@ NO_FILE
file will not be created/read
@ ONE_FILE
all data will be written into/ read from a single file called name_
Species< LinearViscoelasticNormalSpecies, SlidingFrictionSpecies, ReversibleAdhesiveSpecies > LinearViscoelasticSlidingFrictionReversibleAdhesiveSpecies
Definition: LinearViscoelasticSlidingFrictionReversibleAdhesiveSpecies.h:13
Logger< MERCURYDPM_LOGLEVEL > logger("MercuryKernel")
Definition of different loggers with certain modules. A user can define its own custom logger here.
Definition: Kernel/Math/Vector.h:30
todo{This code is not working as is wanted}
Definition: FreeCoolingAdhesiveDemo.cpp:16
#define INFO(i)
Definition: mumps_solver.h:54
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213