29 static constexpr
int LBox = LogArea::Box::id;
33 out <<
"-- Box Modus:\nSize of the box: (" << m.
length_ <<
" fm)³\n";
35 out <<
"Thermal multiplicities "
37 <<
" GeV, muS = " << m.
mus_ <<
" GeV, muQ = " << m.
muq_ <<
" GeV)\n";
41 out << ptype->
name() <<
" initial multiplicity " <<
p.second <<
'\n';
46 out <<
"All initial momenta = 3T = " << 3 * m.
temperature_ <<
" GeV\n";
49 out <<
"Boltzmann momentum distribution with T = " << m.
temperature_
53 out <<
"Fermi/Bose momentum distribution with T = " << m.
temperature_
59 out <<
"Adding a " << ptype->
name() <<
" as a jet in the middle "
60 <<
"of the box with " << m.
jet_mom_ <<
" GeV initial momentum.\n";
67 : initial_condition_(modus_config.take({
"Box",
"Initial_Condition"})),
68 length_(modus_config.take({
"Box",
"Length"})),
70 modus_config.take({
"Box",
"Equilibration_Time"}, -1.)),
71 temperature_(modus_config.take({
"Box",
"Temperature"})),
72 start_time_(modus_config.take({
"Box",
"Start_Time"}, 0.)),
74 modus_config.take({
"Box",
"Use_Thermal_Multiplicities"},
false)),
75 mub_(modus_config.take({
"Box",
"Baryon_Chemical_Potential"}, 0.)),
76 mus_(modus_config.take({
"Box",
"Strange_Chemical_Potential"}, 0.)),
77 muq_(modus_config.take({
"Box",
"Charge_Chemical_Potential"}, 0.)),
78 account_for_resonance_widths_(
79 modus_config.take({
"Box",
"Account_Resonance_Widths"},
true)),
80 init_multipl_(use_thermal_
81 ? std::map<PdgCode, int>()
82 : modus_config.take({
"Box",
"Init_Multiplicities"})
83 .convert_for(init_multipl_)),
90 jet_pdg_(modus_config.has_value({
"Box",
"Jet"})
91 ? make_optional<PdgCode>(
92 modus_config.take({
"Box",
"Jet",
"Jet_PDG"}))
95 jet_mom_(modus_config.take({
"Box",
"Jet",
"Jet_Momentum"}, 20.)) {
96 if (parameters.res_lifetime_factor < 0.) {
97 throw std::invalid_argument(
98 "Resonance lifetime modifier cannot be negative!");
101 if (std::abs(length_ - parameters.box_length) >
really_small) {
102 throw std::runtime_error(
"Box length inconsistency");
108 double momentum_radial = 0.0, mass = 0.0;
119 const double lifetime_factor =
128 double nb_init = 0.0, ns_init = 0.0, nq_init = 0.0;
131 particles->
create(thermal_mult_int, mult.first);
132 nb_init += mult.second * mult.first.baryon_number();
133 ns_init += mult.second * mult.first.strangeness();
134 nq_init += mult.second * mult.first.charge();
135 logg[
LBox].debug(mult.first,
" initial multiplicity ", thermal_mult_int);
137 logg[
LBox].info(
"Initial hadron gas baryon density ", nb_init);
138 logg[
LBox].info(
"Initial hadron gas strange density ", ns_init);
139 logg[
LBox].info(
"Initial hadron gas charge density ", nq_init);
143 logg[
LBox].debug(
"Particle ",
p.first,
" initial multiplicity ",
147 std::unique_ptr<QuantumSampling> quantum_sampling;
149 quantum_sampling = std::make_unique<QuantumSampling>(
init_multipl_, V, T);
155 momentum_radial = 3.0 * T;
156 mass = data.pole_mass();
172 mass = data.type().mass();
173 momentum_radial = quantum_sampling->sample(data.pdgcode());
177 logg[
LBox].debug(data.type().name(),
"(id ", data.id(),
178 ") radial momentum ", momentum_radial,
", direction",
180 data.set_4momentum(mass, phitheta.
threevec() * momentum_radial);
181 momentum_total += data.momentum();
184 ThreeVector pos{uniform_length(), uniform_length(), uniform_length()};
192 data.set_4momentum(data.momentum().abs(),
193 data.momentum().threevec() -
209 momentum_total += data.momentum();
214 logg[
LBox].debug() <<
"Initial total 4-momentum [GeV]: " << momentum_total;
219 const OutputsList &output_list) {
228 data.set_4position(position);
231 std::make_unique<WallcrossingAction>(incoming_particle, data);
232 for (
const auto &output : output_list) {
233 if (!output->is_dilepton_output() && !output->is_photon_output()) {
234 output->at_interaction(*action, 0.);
239 logg[
LBox].debug(
"Moved ", wraps,
" particles back into the box.");
Generic algorithms on containers and ranges.
Angles provides a common interface for generating directions: i.e., two angles that should be interpr...
ThreeVector threevec() const
void distribute_isotropically()
Populate the object with a new direction.
BoxModus: Provides a modus for infinite matter calculations.
const std::optional< PdgCode > jet_pdg_
Optional PDG code of the particle to use as a jet.
const double muq_
Charge chemical potential for thermal initialization; only used if use_thermal_ is true.
const double jet_mom_
Initial momentum of the jet particle; only used if insert_jet_ is true.
int impose_boundary_conditions(Particles *particles, const OutputsList &output_list={})
Enforces that all particles are inside the box at the beginning of an event.
BoxModus(Configuration modus_config, const ExperimentParameters ¶meters)
Constructor.
const bool use_thermal_
Whether to use a thermal initialization for all particles instead of specific numbers.
const double mub_
Baryon chemical potential for thermal initialization; only used if use_thermal_ is true.
double initial_conditions(Particles *particles, const ExperimentParameters ¶meters)
Generates initial state of the particles in the system according to specified parameters: number of p...
const BoxInitialCondition initial_condition_
Initial momenta distribution: thermal or peaked momenta.
const std::map< PdgCode, int > init_multipl_
Particle multiplicities at initialization; required if use_thermal_ is false.
const bool account_for_resonance_widths_
In case of thermal initialization: true – account for resonance spectral functions,...
const double temperature_
Temperature of the Box in GeV.
const double mus_
Strange chemical potential for thermal initialization; only used if use_thermal_ is true.
std::map< PdgCode, double > average_multipl_
Average multiplicities in case of thermal initialization.
const double start_time_
Initial time of the box.
const double length_
Length of the cube's edge in fm.
Interface to the SMASH configuration files.
The FourVector class holds relevant values in Minkowski spacetime with (+, −, −, −) metric signature.
ThreeVector threevec() const
static double partial_density(const ParticleType &ptype, double T, double mub, double mus, double muq, bool account_for_resonance_widths=false)
Compute partial density of one hadron sort.
static double sample_mass_thermal(const ParticleType &ptype, double beta)
Sample resonance mass in a thermal medium.
static bool is_eos_particle(const ParticleType &ptype)
Check if a particle belongs to the EoS.
ParticleData contains the dynamic information of a certain particle.
A pointer-like interface to global references to ParticleType objects.
Particle type contains the static properties of a particle species.
static const ParticleType & find(PdgCode pdgcode)
Returns the ParticleType object for the given pdgcode.
const std::string & name() const
static const ParticleTypeList & list_all()
The Particles class abstracts the storage and manipulation of particles.
void create(size_t n, PdgCode pdg)
Add n particles of the same type (pdg) to the list.
The ThreeVector class represents a physical three-vector with the components .
Collection of useful constants that are known at compile time.
@ ThermalMomentaBoltzmann
A thermalized ensemble is generated, with momenta sampled from a Maxwell-Boltzmann distribution.
@ ThermalMomentaQuantum
A thermalized ensemble is generated, with momenta of baryons(mesons) sampled from a Fermi(Bose) distr...
@ PeakedMomenta
All particles have the same momentum with T being the temperature.
std::ostream & operator<<(std::ostream &out, const ActionPtr &action)
Convenience: dereferences the ActionPtr to Action.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
int poisson(const T &lam)
Returns a Poisson distributed random number.
uniform_dist< T > make_uniform_distribution(T min, T max)
double sample_momenta_from_thermal(const double temperature, const double mass)
Samples a momentum from the Maxwell-Boltzmann (thermal) distribution in a faster way,...
static constexpr int LBox
static bool enforce_periodic_boundaries(Iterator begin, const Iterator &end, typename std::iterator_traits< Iterator >::value_type length)
Enforces periodic boundaries on the given collection of values.
constexpr double really_small
Numerical error tolerance.
Helper structure for Experiment.
int testparticles
Number of test-particles.
double res_lifetime_factor
Multiplicative factor to be applied to resonance lifetimes; in the case of thermal multiplicities thi...