Version: SMASH-3.2
dynamicfluidfinder.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2022-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #ifndef SRC_INCLUDE_SMASH_DYNAMICFLUIDFINDER_H_
11 #define SRC_INCLUDE_SMASH_DYNAMICFLUIDFINDER_H_
12 
13 #include <limits>
14 #include <map>
15 #include <vector>
16 
17 #include "actionfinderfactory.h"
18 #include "icparameters.h"
19 #include "input_keys.h"
20 
21 namespace smash {
22 
33  public:
47  const std::map<int32_t, double> &background,
48  const InitialConditionParameters &ic_params)
49  : energy_density_lattice_{lattice},
50  background_{background},
51  energy_density_threshold_{ic_params.energy_density_threshold.value()},
52  min_time_{ic_params.min_time.value()},
53  max_time_{ic_params.max_time.value()},
54  formation_time_fraction_{ic_params.formation_time_fraction.value()},
55  fluid_cells_{ic_params.num_fluid_cells.value()},
56  fluidizable_processes_{ic_params.fluidizable_processes.value()} {};
57 
67  ActionList find_actions_in_cell(
68  const ParticleList &search_list, double dt, double gcell_vol,
69  const std::vector<FourVector> &beam_momentum) const override;
70 
73  const ParticleList &, const ParticleList &, const double,
74  const std::vector<FourVector> &) const override {
75  return {};
76  }
77 
80  const ParticleList &, const Particles &, double,
81  const std::vector<FourVector> &) const override {
82  return {};
83  }
84 
86  ActionList find_final_actions(const Particles &, bool) const override {
87  return {};
88  }
89 
96  bool above_threshold(const ParticleData &pdata) const;
97 
105  bool is_process_fluidizable(const ProcessType &type) const;
106 
107  private:
121  const std::map<int32_t, double> &background_;
123  const double energy_density_threshold_ = NAN;
125  const double min_time_ = NAN;
127  const double max_time_ = NAN;
129  const double formation_time_fraction_ = NAN;
131  const int fluid_cells_ = std::numeric_limits<int>::quiet_NaN();
134 };
135 
136 } // namespace smash
137 
138 #endif // SRC_INCLUDE_SMASH_DYNAMICFLUIDFINDER_H_
ActionFinderInterface is the abstract base class for all action finders, i.e.
Finder for dynamic fluidizations.
const RectangularLattice< EnergyMomentumTensor > & energy_density_lattice_
Lattice where energy momentum tensor is computed.
ActionList find_actions_with_surrounding_particles(const ParticleList &, const Particles &, double, const std::vector< FourVector > &) const override
Ignore the surrounding searches for fluidization.
const double min_time_
Minimum time (in lab frame) in fm to allow fluidization.
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_.
ActionList find_actions_with_neighbors(const ParticleList &, const ParticleList &, const double, const std::vector< FourVector > &) const override
Ignore the neighbor search for fluidization.
ActionList find_final_actions(const Particles &, bool) const override
No final actions after fluidizing.
DynamicFluidizationFinder(const RectangularLattice< EnergyMomentumTensor > &lattice, const std::map< int32_t, double > &background, const InitialConditionParameters &ic_params)
Construct finder for fluidization action.
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 int fluid_cells_
Number of cells to interpolate the energy density.
const double energy_density_threshold_
Minimum energy density surrounding the particle to fluidize it.
ParticleData contains the dynamic information of a certain particle.
Definition: particledata.h:58
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
A container class to hold all the arrays on the lattice and access them.
Definition: lattice.h:49
std::bitset< 5 > FluidizableProcessesBitSet
Definition: action.h:24
ProcessType
ProcessTypes are used to identify the type of the process.
Definition: processbranch.h:39
At the moment there are two ways to specify input for initial conditions in the configuration,...
Definition: icparameters.h:21