Version: SMASH-3.2
collidermodus.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2020,2022-2024
3  * SMASH Team
4  *
5  * GNU General Public License (GPLv3 or later)
6  */
7 #ifndef SRC_INCLUDE_SMASH_COLLIDERMODUS_H_
8 #define SRC_INCLUDE_SMASH_COLLIDERMODUS_H_
9 
10 #include <cstring>
11 #include <map>
12 #include <memory>
13 #include <string>
14 #include <utility>
15 #include <vector>
16 
17 #include "alphaclusterednucleus.h"
18 #include "deformednucleus.h"
19 #include "forwarddeclarations.h"
20 #include "fourvector.h"
21 #include "icparameters.h"
22 #include "interpolation.h"
23 #include "modusdefault.h"
24 #include "nucleus.h"
25 #include "pdgcode.h"
26 
27 namespace smash {
28 
29 struct ExperimentParameters;
30 
48 class ColliderModus : public ModusDefault {
49  public:
70  explicit ColliderModus(Configuration modus_config,
71  const ExperimentParameters &parameters);
78  std::string custom_file_path(const std::string &file_directory,
79  const std::string &file_name);
92  double initial_conditions(Particles *particles,
93  const ExperimentParameters &parameters);
94 
105  void sample_impact();
106 
108  double nuclei_passing_time() const {
109  const double passing_distance =
110  projectile_->get_nuclear_radius() + target_->get_nuclear_radius();
111  const double passing_time =
112  passing_distance /
113  std::sqrt(sqrt_s_NN_ * sqrt_s_NN_ /
114  ((2 * nucleon_mass) * (2 * nucleon_mass)) -
115  1);
116  return passing_time;
117  }
123  double velocity_projectile() const { return velocity_projectile_; }
128  double velocity_target() const { return velocity_target_; }
132  bool is_collider() const { return true; }
134  double sqrt_s_NN() const { return sqrt_s_NN_; }
136  double impact_parameter() const { return impact_; }
139  return frame_ == CalculationFrame::FixedTarget ? true : false;
140  }
142  bool is_IC_for_hybrid() const { return IC_for_hybrid_; }
145  return *IC_parameters_;
146  }
148  const std::map<int32_t, double> &fluid_background() const {
149  return *fluid_background_;
150  }
153  return *fluid_lattice_;
154  }
163  void build_fluidization_lattice(double t,
164  const std::vector<Particles> &ensembles,
165  const DensityParameters &dens_par);
166 
174  void update_fluidization_background(std::map<int32_t, double> &&background) {
175  *fluid_background_ = std::move(background);
176  }
177 
183  using ModusDefault::BadInput::BadInput;
184  };
185 
186  private:
193  std::unique_ptr<Nucleus> projectile_;
201  std::unique_ptr<Nucleus> target_;
207  double total_s_;
213  double sqrt_s_NN_;
225  static std::unique_ptr<DeformedNucleus> create_deformed_nucleus(
226  Configuration &nucleus_cfg, const int ntest,
227  const std::string &nucleus_type);
237  static std::unique_ptr<AlphaClusteredNucleus> create_alphaclustered_nucleus(
238  Configuration &nucleus_cfg, const int ntest,
239  const std::string &nucleus_type);
247  bool same_inputfile(Configuration &proj_config, Configuration &targ_config);
255  double impact_ = 0.;
259  bool IC_for_hybrid_ = false;
267  double yield_max_ = 0.0;
269  std::unique_ptr<InterpolateDataLinear<double>> impact_interpolation_ =
270  nullptr;
271 
278  void rotate_reaction_plane(double phi, Particles *particles);
279 
298  double velocity_projectile_ = 0.0;
302  double velocity_target_ = 0.0;
304  std::unique_ptr<InitialConditionParameters> IC_parameters_;
306  std::unique_ptr<RectangularLattice<EnergyMomentumTensor>> fluid_lattice_ =
307  nullptr;
312  std::unique_ptr<std::map<int32_t, double>> fluid_background_ = nullptr;
313 
324  std::pair<double, double> get_velocities(double mandelstam_s, double m_a,
325  double m_b);
326 
333  friend std::ostream &operator<<(std::ostream &, const ColliderModus &);
334 };
335 
336 } // namespace smash
337 
338 #endif // SRC_INCLUDE_SMASH_COLLIDERMODUS_H_
ColliderModus: Provides a modus for colliding nuclei.
Definition: collidermodus.h:48
CalculationFrame frame_
Reference frame for the system, as specified from config.
const RectangularLattice< EnergyMomentumTensor > & fluid_lattice() const
double imp_min_
Minimum value of impact parameter.
double initial_z_displacement_
Initial z-displacement of nuclei.
bool IC_for_hybrid_
Whether the particles will serve as initial conditions for hydrodynamics.
bool calculation_frame_is_fixed_target() const
double yield_max_
Maximum value of yield. Needed for custom impact parameter sampling.
bool random_reaction_plane_
Whether the reaction plane should be randomized.
void rotate_reaction_plane(double phi, Particles *particles)
Rotate the reaction plane about the angle phi.
std::pair< double, double > get_velocities(double mandelstam_s, double m_a, double m_b)
Get the frame dependent velocity for each nucleus, using the current reference frame.
void sample_impact()
Sample impact parameter.
double impact_parameter() const
std::unique_ptr< Nucleus > projectile_
Projectile.
double nuclei_passing_time() const
Time until nuclei have passed through each other.
std::unique_ptr< InterpolateDataLinear< double > > impact_interpolation_
Pointer to the impact parameter interpolation.
void update_fluidization_background(std::map< int32_t, double > &&background)
Update the background energy density due to hydrodynamics, to be called by an external manager.
bool is_IC_for_hybrid() const
FermiMotion fermi_motion()
FermiMotion fermi_motion_
An option to include Fermi motion ("off", "on", "frozen")
const std::map< int32_t, double > & fluid_background() const
double velocity_target() const
static std::unique_ptr< AlphaClusteredNucleus > create_alphaclustered_nucleus(Configuration &nucleus_cfg, const int ntest, const std::string &nucleus_type)
Configure Alpha-Clustered Nucleus.
double velocity_projectile_
Beam velocity of the projectile.
Sampling sampling_
Method used for sampling of impact parameter.
std::unique_ptr< RectangularLattice< EnergyMomentumTensor > > fluid_lattice_
Energy-momentum tensor lattice for dynamic fluidization.
std::string custom_file_path(const std::string &file_directory, const std::string &file_name)
Creates full path string consisting of file_directory and file_name Needed to initialize a customnucl...
double total_s_
Center-of-mass energy squared of the nucleus-nucleus collision.
std::unique_ptr< Nucleus > target_
Target.
ColliderModus(Configuration modus_config, const ExperimentParameters &parameters)
Constructor.
double impact_
Impact parameter.
double sqrt_s_NN_
Center-of-mass energy of a nucleon-nucleon collision.
double initial_conditions(Particles *particles, const ExperimentParameters &parameters)
Generates initial state of the particles in the system.
void build_fluidization_lattice(double t, const std::vector< Particles > &ensembles, const DensityParameters &dens_par)
Build lattice of energy momentum tensor.
bool same_inputfile(Configuration &proj_config, Configuration &targ_config)
Checks if target and projectile are read from the same external file if they are both initialized as ...
std::unique_ptr< std::map< int32_t, double > > fluid_background_
Energy density background from hydrodynamic evolution, with particle indices as keys.
double sqrt_s_NN() const
double velocity_projectile() const
static std::unique_ptr< DeformedNucleus > create_deformed_nucleus(Configuration &nucleus_cfg, const int ntest, const std::string &nucleus_type)
Configure Deformed Nucleus.
const InitialConditionParameters & IC_parameters() const
double velocity_target_
Beam velocity of the target.
bool is_collider() const
std::unique_ptr< InitialConditionParameters > IC_parameters_
Plain Old Data type to hold parameters for initial conditions.
double imp_max_
Maximum value of impact parameter.
Interface to the SMASH configuration files.
A class to pre-calculate and store parameters relevant for density calculation.
Definition: density.h:92
default_type default_value() const
Get the default value of the key.
Definition: key.h:177
Base class for Modus classes that provides default function implementations.
Definition: modusdefault.h:45
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
FermiMotion
Option to use Fermi Motion.
Sampling
Possible methods of impact parameter sampling.
CalculationFrame
The calculation frame.
friend std::ostream & operator<<(std::ostream &, const ColliderModus &)
Writes the initial state for the ColliderModus to the output stream.
Definition: action.h:24
constexpr double nucleon_mass
Nucleon mass in GeV.
Definition: constants.h:58
Thrown when either projectile_ or target_ nuclei are empty.
Helper structure for Experiment.
At the moment there are two ways to specify input for initial conditions in the configuration,...
Definition: icparameters.h:21
static const Key< double > modi_collider_impact_value
See user guide description for more information.
Definition: input_keys.h:3756
static const Key< Sampling > modi_collider_impact_sample
See user guide description for more information.
Definition: input_keys.h:3743
BadInput is an error to throw if the configuration options are invalid.
Definition: modusdefault.h:195