19 const ParticleList &search_list,
double dt,
20 [[maybe_unused]]
const double gcell_vol,
21 [[maybe_unused]]
const std::vector<FourVector> &beam_momentum)
const {
25 const double t0 =
p.position().x0();
26 const double t_end = t0 + dt;
27 if (t_end < min_time_ || t0 >
max_time_) {
30 const double fluidization_time =
32 if (fluidization_time < t_end) {
35 double time_until = (1 -
p.xsec_scaling_factor() <=
really_small)
37 : fluidization_time - t0;
39 std::make_unique<FluidizationAction>(
p,
p, time_until));
55 const double background =
57 const double e_den_particles =
61 <<
"Fluidize " << pdata.
id() <<
" with " << e_den_particles <<
"+"
62 << background <<
" GeV/fm^3 at " << pdata.
position().
x0()
const RectangularLattice< EnergyMomentumTensor > & energy_density_lattice_
Lattice where energy momentum tensor is computed.
const double formation_time_fraction_
Fraction of formation time after which a particles can fluidize.
bool is_process_fluidizable(const ProcessType &type) const
Checks if a given process type is in fluidizable_processes_.
bool above_threshold(const ParticleData &pdata) const
Determine if fluidization condition is satisfied.
ActionList find_actions_in_cell(const ParticleList &search_list, double dt, double gcell_vol, const std::vector< FourVector > &beam_momentum) const override
Find particles to fluidize, depending on the energy density around them.
const std::map< int32_t, double > & background_
Background energy density at positions of particles, using the id as key.
const double max_time_
Maximum time (in lab frame) in fm to allow fluidization.
const FluidizableProcessesBitSet fluidizable_processes_
Processes that create a fluidizable particle.
const double energy_density_threshold_
Minimum energy density surrounding the particle to fluidize it.
The EnergyMomentumTensor class represents a symmetric positive semi-definite energy-momentum tensor .
EnergyMomentumTensor boosted(const FourVector &u) const
Boost to a given 4-velocity.
FourVector landau_frame_4velocity() const
Find the Landau frame 4-velocity from energy-momentum tensor.
ThreeVector threevec() const
ParticleData contains the dynamic information of a certain particle.
double formation_time() const
Get the absolute formation time of the particle.
int32_t id() const
Get the id of the particle.
const FourVector & position() const
Get the particle's position in Minkowski space.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
static constexpr int LFluidization
ProcessType
ProcessTypes are used to identify the type of the process.
@ TwoToOne
See here for a short description.
@ MultiParticleThreeToTwo
See here for a short description.
@ Decay
See here for a short description.
@ TwoToFive
See here for a short description.
@ TwoToTwo
See here for a short description.
@ Elastic
See here for a short description.
@ TwoToFour
See here for a short description.
@ MultiParticleThreeMesonsToOne
See here for a short description.
@ MultiParticleFourToTwo
See here for a short description.
@ StringHard
See here for a short description.
@ TwoToThree
See here for a short description.
@ MultiParticleFiveToTwo
See here for a short description.
constexpr double really_small
Numerical error tolerance.
bool is_string_soft_process(ProcessType p)
Check if a given process type is a soft string excitation.