Version: SMASH-1.5
smash::SphereModus Class Reference

#include <spheremodus.h>

SphereModus: Provides a modus for expanding matter calculations.

Matter is put in a sphere of radius R with uniform density; isotropic thermal momenta are typically used for initialization, although other initial momentum states are also included, see Bazow:2016oky and Tindall:2016try

To use this modus, choose

General:
Modus: Sphere

in the configuration file.

Options for SphereModus go in the "Modi"→"Sphere" section of the configuration:

Modi:
Sphere:
# definitions here

The following configuration options are understood: Sphere

Definition at line 47 of file spheremodus.h.

Inheritance diagram for smash::SphereModus:
[legend]
Collaboration diagram for smash::SphereModus:
[legend]

Public Member Functions

 SphereModus (Configuration modus_config, const ExperimentParameters &parameters)
 Constructor. More...
 
double initial_conditions (Particles *particles, const ExperimentParameters &parameters)
 Generates initial state of the particles in the system according to specified parameters: number of particles of each species, momentum and coordinate space distributions. More...
 
- Public Member Functions inherited from smash::ModusDefault
int impose_boundary_conditions (Particles *, const OutputsList &={})
 Enforces sensible positions for the particles. More...
 
int total_N_number () const
 
int proj_N_number () const
 
bool cll_in_nucleus () const
 
bool is_collider () const
 
double impact_parameter () const
 
double velocity_projectile () const
 
double velocity_target () const
 
FermiMotion fermi_motion () const
 
double max_timestep (double) const
 
double length () const
 
Grid< GridOptions::Normalcreate_grid (const Particles &particles, double min_cell_length, CellSizeStrategy strategy=CellSizeStrategy::Optimal) const
 Creates the Grid with normal boundary conditions. More...
 

Private Attributes

double radius_
 Sphere radius (in fm/c) More...
 
double sphere_temperature_
 Temperature for momentum distribution (in GeV) More...
 
const double start_time_ = 0.
 Starting time for the Sphere. More...
 
const bool use_thermal_ = false
 Whether to use a thermal initialization for all particles instead of specific numbers. More...
 
const double mub_
 Baryon chemical potential for thermal initialization; only used if use_thermal_ is true. More...
 
const double mus_
 Strange chemical potential for thermal initialization; only used if use_thermal_ is true. More...
 
const std::map< PdgCode, int > init_multipl_
 Particle multiplicities at initialization; required if use_thermal_ is false. More...
 
std::map< PdgCode, double > average_multipl_
 Average multiplicities in case of thermal initialization. More...
 
const SphereInitialCondition init_distr_
 Initialization scheme for momenta in the sphere; used for expanding metric setup. More...
 

Friends

std::ostream & operator<< (std::ostream &, const SphereModus &)
 Writes the initial state for the Sphere to the output stream. More...
 

Constructor & Destructor Documentation

◆ SphereModus()

smash::SphereModus::SphereModus ( Configuration  modus_config,
const ExperimentParameters parameters 
)
explicit

Constructor.

Takes all there is to take from the (truncated!) configuration object (only contains configuration for this modus).

Parameters
[in]modus_configThe configuration object that sets all initial conditions of the experiment.
[in]parametersUnused, but necessary because of templated initialization

Definition at line 133 of file spheremodus.cc.

135  : radius_(modus_config.take({"Sphere", "Radius"})),
136  sphere_temperature_(modus_config.take({"Sphere", "Sphere_Temperature"})),
137  start_time_(modus_config.take({"Sphere", "Start_Time"}, 0.)),
138  use_thermal_(
139  modus_config.take({"Sphere", "Use_Thermal_Multiplicities"}, false)),
140  mub_(modus_config.take({"Sphere", "Baryon_Chemical_Potential"}, 0.)),
141  mus_(modus_config.take({"Sphere", "Strange_Chemical_Potential"}, 0.)),
143  ? std::map<PdgCode, int>()
144  : modus_config.take({"Sphere", "Init_Multiplicities"})
145  .convert_for(init_multipl_)),
146  init_distr_(modus_config.take({"Sphere", "Initial_Condition"},
double radius_
Sphere radius (in fm/c)
Definition: spheremodus.h:78
const SphereInitialCondition init_distr_
Initialization scheme for momenta in the sphere; used for expanding metric setup. ...
Definition: spheremodus.h:112
double sphere_temperature_
Temperature for momentum distribution (in GeV)
Definition: spheremodus.h:80
const double start_time_
Starting time for the Sphere.
Definition: spheremodus.h:82
const bool use_thermal_
Whether to use a thermal initialization for all particles instead of specific numbers.
Definition: spheremodus.h:87
const double mus_
Strange chemical potential for thermal initialization; only used if use_thermal_ is true...
Definition: spheremodus.h:97
const double mub_
Baryon chemical potential for thermal initialization; only used if use_thermal_ is true...
Definition: spheremodus.h:92
const std::map< PdgCode, int > init_multipl_
Particle multiplicities at initialization; required if use_thermal_ is false.
Definition: spheremodus.h:102

Member Function Documentation

◆ initial_conditions()

double smash::SphereModus::initial_conditions ( Particles particles,
const ExperimentParameters parameters 
)

Generates initial state of the particles in the system according to specified parameters: number of particles of each species, momentum and coordinate space distributions.

Susbsequently makes the total 3-momentum 0.

Parameters
[out]particlesAn empty list that gets filled up by this function
[in]parametersThe initialization parameters of the box
Returns
The starting time of the simulation

Definition at line 167 of file spheremodus.cc.

168  {
169  const auto &log = logger<LogArea::Sphere>();
170  FourVector momentum_total(0, 0, 0, 0);
171  const double T = this->sphere_temperature_;
172  /* Create NUMBER OF PARTICLES according to configuration */
173  if (use_thermal_) {
174  const double V = 4.0 / 3.0 * M_PI * radius_ * radius_ * radius_;
175  if (average_multipl_.empty()) {
176  for (const ParticleType &ptype : ParticleType::list_all()) {
177  if (HadronGasEos::is_eos_particle(ptype)) {
178  const double n = HadronGasEos::partial_density(ptype, T, mub_, mus_);
179  average_multipl_[ptype.pdgcode()] = n * V * parameters.testparticles;
180  }
181  }
182  }
183  double nb_init = 0.0, ns_init = 0.0;
184  for (const auto &mult : average_multipl_) {
185  const int thermal_mult_int = random::poisson(mult.second);
186  particles->create(thermal_mult_int, mult.first);
187  nb_init += mult.second * mult.first.baryon_number();
188  ns_init += mult.second * mult.first.strangeness();
189  log.debug(mult.first, " initial multiplicity ", thermal_mult_int);
190  }
191  log.info("Initial hadron gas baryon density ", nb_init);
192  log.info("Initial hadron gas strange density ", ns_init);
193  } else {
194  for (const auto &p : init_multipl_) {
195  particles->create(p.second * parameters.testparticles, p.first);
196  log.debug("Particle ", p.first, " initial multiplicity ", p.second);
197  }
198  }
199  /* loop over particle data to fill in momentum and position information */
200  for (ParticleData &data : *particles) {
201  Angles phitheta;
202  /* thermal momentum according Maxwell-Boltzmann distribution */
203  double momentum_radial, mass = data.pole_mass();
204  /* assign momentum_radial according to requested distribution */
205  switch (init_distr_) {
207  momentum_radial = sample_momenta_IC_ES(T);
208  break;
210  momentum_radial = sample_momenta_1M_IC(T, mass);
211  break;
213  momentum_radial = sample_momenta_2M_IC(T, mass);
214  break;
216  momentum_radial = sample_momenta_non_eq_mass(T, mass);
217  break;
219  default:
220  mass = HadronGasEos::sample_mass_thermal(data.type(), 1.0 / T);
221  momentum_radial = sample_momenta_from_thermal(T, mass);
222  break;
223  }
224  phitheta.distribute_isotropically();
225  log.debug(data.type().name(), "(id ", data.id(), ") radial momentum ",
226  momentum_radial, ", direction", phitheta);
227  data.set_4momentum(mass, phitheta.threevec() * momentum_radial);
228  momentum_total += data.momentum();
229  /* uniform sampling in a sphere with radius r */
230  double position_radial;
231  position_radial = std::cbrt(random::canonical()) * radius_;
232  Angles pos_phitheta;
233  pos_phitheta.distribute_isotropically();
234  data.set_4position(
235  FourVector(start_time_, pos_phitheta.threevec() * position_radial));
236  data.set_formation_time(start_time_);
237  }
238  /* Make total 3-momentum 0 */
239  for (ParticleData &data : *particles) {
240  data.set_4momentum(data.momentum().abs(),
241  data.momentum().threevec() -
242  momentum_total.threevec() / particles->size());
243  }
244 
245  /* Recalculate total momentum */
246  momentum_total = FourVector(0, 0, 0, 0);
247  for (ParticleData &data : *particles) {
248  momentum_total += data.momentum();
249  /* IC: debug checks */
250  log.debug() << data;
251  }
252  /* allows to check energy conservation */
253  log.debug() << "Sphere initial total 4-momentum [GeV]: " << momentum_total;
254  return start_time_;
255 }
double radius_
Sphere radius (in fm/c)
Definition: spheremodus.h:78
const SphereInitialCondition init_distr_
Initialization scheme for momenta in the sphere; used for expanding metric setup. ...
Definition: spheremodus.h:112
double sample_momenta_2M_IC(const double temperature, const double mass)
Samples a momentum from the non-equilibrium distribution 2M_IC from Bazow:2016oky ...
double sphere_temperature_
Temperature for momentum distribution (in GeV)
Definition: spheremodus.h:80
const double start_time_
Starting time for the Sphere.
Definition: spheremodus.h:82
static bool is_eos_particle(const ParticleType &ptype)
Check if a particle belongs to the EoS.
Definition: hadgas_eos.h:277
T canonical()
Definition: random.h:110
std::map< PdgCode, double > average_multipl_
Average multiplicities in case of thermal initialization.
Definition: spheremodus.h:107
double sample_momenta_IC_ES(const double temperature)
Sample momenta according to the momentum distribution in Bazow:2016oky
static const ParticleTypeList & list_all()
Definition: particletype.cc:55
const bool use_thermal_
Whether to use a thermal initialization for all particles instead of specific numbers.
Definition: spheremodus.h:87
double sample_momenta_from_thermal(const double temperature, const double mass)
Samples a momentum from the Maxwell-Boltzmann (thermal) distribution in a faster way, given by Scott Pratt.
static double sample_mass_thermal(const ParticleType &ptype, double beta)
Sample resonance mass in a thermal medium.
Definition: hadgas_eos.cc:305
const double mus_
Strange chemical potential for thermal initialization; only used if use_thermal_ is true...
Definition: spheremodus.h:97
const double mub_
Baryon chemical potential for thermal initialization; only used if use_thermal_ is true...
Definition: spheremodus.h:92
double sample_momenta_non_eq_mass(const double temperature, const double mass)
Samples a momentum via rejection method from the non-equilibrium distribution .
const std::map< PdgCode, int > init_multipl_
Particle multiplicities at initialization; required if use_thermal_ is false.
Definition: spheremodus.h:102
constexpr int p
Proton.
double sample_momenta_1M_IC(const double temperature, const double mass)
Samples a momentum from the non-equilibrium distribution 1M_IC from Bazow:2016oky ...
static double partial_density(const ParticleType &ptype, double T, double mub, double mus)
Compute partial density of one hadron sort.
Definition: hadgas_eos.cc:219
int poisson(const T &lam)
Returns a Poisson distributed random number.
Definition: random.h:223
constexpr int n
Neutron.
Here is the call graph for this function:

Member Data Documentation

◆ radius_

double smash::SphereModus::radius_
private

Sphere radius (in fm/c)

Definition at line 78 of file spheremodus.h.

◆ sphere_temperature_

double smash::SphereModus::sphere_temperature_
private

Temperature for momentum distribution (in GeV)

Definition at line 80 of file spheremodus.h.

◆ start_time_

const double smash::SphereModus::start_time_ = 0.
private

Starting time for the Sphere.

Definition at line 82 of file spheremodus.h.

◆ use_thermal_

const bool smash::SphereModus::use_thermal_ = false
private

Whether to use a thermal initialization for all particles instead of specific numbers.

Definition at line 87 of file spheremodus.h.

◆ mub_

const double smash::SphereModus::mub_
private

Baryon chemical potential for thermal initialization; only used if use_thermal_ is true.

Definition at line 92 of file spheremodus.h.

◆ mus_

const double smash::SphereModus::mus_
private

Strange chemical potential for thermal initialization; only used if use_thermal_ is true.

Definition at line 97 of file spheremodus.h.

◆ init_multipl_

const std::map<PdgCode, int> smash::SphereModus::init_multipl_
private

Particle multiplicities at initialization; required if use_thermal_ is false.

Definition at line 102 of file spheremodus.h.

◆ average_multipl_

std::map<PdgCode, double> smash::SphereModus::average_multipl_
private

Average multiplicities in case of thermal initialization.

Saved to avoid recalculating at every event

Definition at line 107 of file spheremodus.h.

◆ init_distr_

const SphereInitialCondition smash::SphereModus::init_distr_
private

Initialization scheme for momenta in the sphere; used for expanding metric setup.

Definition at line 112 of file spheremodus.h.


The documentation for this class was generated from the following files: