Reply To: forces acting on particle(s)
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › forces acting on particle(s) › Reply To: forces acting on particle(s)
Dear jakschee,
BLOCKFUNCTOR
is the functor on the actual core structures. Therefore, for the SuperLatticeMomentumExchangeForce
the BlockLatticeMomentumExchangeForce
would be used on each separate block. Please refer to the user guide and checkout the difference between super and block lattice.
Periodic
is a vector of bools, that identifies which directions are periodic or not. iP0
allows to set an offset at which the particles loops should start, I suggest using the default value (0) here. ignoredMaterials
allows you to set lattice materials that are ignored during the evaluation of the functor, meaning that cells having that material number are not considered. f
refers to a function that can be passed in case some modification or output is necessary. All of these have default values, so you actually don’t have to define them, if you don’t need that functionality.
Best regards,
Jan