Version: SMASH-3.2
dynamicfluidfinder.cc
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2023-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
11 
13 #include "smash/logging.h"
14 
15 namespace smash {
16 static constexpr int LFluidization = LogArea::HyperSurfaceCrossing::id;
17 
19  const ParticleList &search_list, double dt,
20  [[maybe_unused]] const double gcell_vol,
21  [[maybe_unused]] const std::vector<FourVector> &beam_momentum) const {
22  ActionList actions;
23 
24  for (const ParticleData &p : search_list) {
25  const double t0 = p.position().x0();
26  const double t_end = t0 + dt;
27  if (t_end < min_time_ || t0 > max_time_) {
28  break;
29  }
30  const double fluidization_time =
31  t0 + formation_time_fraction_ * (p.formation_time() - t0);
32  if (fluidization_time < t_end) {
33  if (is_process_fluidizable(p.get_history().process_type)) {
34  if (above_threshold(p)) {
35  double time_until = (1 - p.xsec_scaling_factor() <= really_small)
36  ? 0
37  : fluidization_time - t0;
38  actions.emplace_back(
39  std::make_unique<FluidizationAction>(p, p, time_until));
40  }
41  }
42  }
43  } // search_list loop
44  return actions;
45 }
46 
48  const ParticleData &pdata) const {
50  // value_at returns false if pdata is out of bounds
51  const bool inside =
52  energy_density_lattice_.value_at(pdata.position().threevec(), Tmunu);
53  if (inside) {
54  // If the particle is not in the map, the background evaluates to 0
55  const double background =
56  background_.count(pdata.id()) ? background_.at(pdata.id()) : 0;
57  const double e_den_particles =
58  Tmunu.boosted(Tmunu.landau_frame_4velocity())[0];
59  if (e_den_particles + background >= energy_density_threshold_) {
60  logg[LFluidization].debug()
61  << "Fluidize " << pdata.id() << " with " << e_den_particles << "+"
62  << background << " GeV/fm^3 at " << pdata.position().x0()
63  << " fm, formed at " << pdata.formation_time() << " fm";
64  return true;
65  }
66  }
67  return false;
68 }
69 
71  const ProcessType &type) const {
72  if (is_string_soft_process(type)) {
75  }
76  switch (type) {
79  break;
80  case ProcessType::Decay:
82  break;
94  break;
98  break;
99  default:
100  return false;
101  }
102  return false;
103 }
104 
105 } // namespace smash
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
Definition: fourvector.h:329
double x0() const
Definition: fourvector.h:313
ParticleData contains the dynamic information of a certain particle.
Definition: particledata.h:58
double formation_time() const
Get the absolute formation time of the particle.
Definition: particledata.h:236
int32_t id() const
Get the id of the particle.
Definition: particledata.h:76
const FourVector & position() const
Get the particle's position in Minkowski space.
Definition: particledata.h:204
@ From_HardString
@ From_Inelastic
@ From_Elastic
@ From_SoftString
@ From_Decay
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
constexpr int p
Proton.
Definition: action.h:24
static constexpr int LFluidization
ProcessType
ProcessTypes are used to identify the type of the process.
Definition: processbranch.h:39
@ 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.
Definition: constants.h:37
bool is_string_soft_process(ProcessType p)
Check if a given process type is a soft string excitation.