Constructor.
Takes all there is to take from the (truncated!) configuration object (only contains configuration for this modus).
36 Configuration modus_cfg = modus_config.extract_complete_sub_configuration(
41 Configuration proj_cfg = modus_cfg.extract_complete_sub_configuration(
43 Configuration targ_cfg =
47 bool same_file =
false;
55 proj_cfg, params.testparticles, same_file);
57 logg[
LCollider].info() <<
"Projectile is alpha-clustered with woods-saxon "
58 "parameters for the He-clusters listed below.";
62 projectile_ = std::make_unique<Nucleus>(proj_cfg, params.testparticles);
65 throw ColliderEmpty(
"Input Error: Projectile nucleus is empty.");
73 target_ = std::make_unique<CustomNucleus>(targ_cfg, params.testparticles,
76 logg[
LCollider].info() <<
"Target is alpha-clustered with woods-saxon "
77 "parameters for the He-clusters listed below.";
81 target_ = std::make_unique<Nucleus>(targ_cfg, params.testparticles);
84 throw ColliderEmpty(
"Input Error: Target nucleus is empty.");
101 int energy_input = 0;
103 const double mass_target =
target_->mass();
105 const double mass_a =
107 const double mass_b =
target_->mass() /
target_->number_of_particles();
113 throw ModusDefault::InvalidEnergy(
114 "Input Error: sqrt(s_NN) is not larger than masses:\n" +
115 std::to_string(
sqrt_s_NN_) +
" GeV <= " + std::to_string(mass_a) +
116 " GeV + " + std::to_string(mass_b) +
" GeV.");
120 mass_projec * mass_target / (mass_a * mass_b) +
121 mass_projec * mass_projec + mass_target * mass_target;
129 throw ModusDefault::InvalidEnergy(
131 "E_Tot must be nonnegative.");
135 mass_projec, mass_target);
144 throw ModusDefault::InvalidEnergy(
146 "E_Kin must be nonnegative.");
150 mass_projec, mass_target);
158 throw ModusDefault::InvalidEnergy(
160 "P_Lab must be nonnegative.");
164 mass_projec, mass_target);
171 const double e_tot_p =
174 if (e_tot_p < 0 || e_tot_t < 0) {
175 throw ModusDefault::InvalidEnergy(
177 "E_Tot must be nonnegative.");
180 e_tot_t *
target_->number_of_particles(),
181 mass_projec, mass_target);
188 const double e_kin_p =
191 if (e_kin_p < 0 || e_kin_t < 0) {
192 throw ModusDefault::InvalidEnergy(
194 "E_Kin must be nonnegative.");
197 e_kin_t *
target_->number_of_particles(),
198 mass_projec, mass_target);
205 const double p_lab_p =
208 if (p_lab_p < 0 || p_lab_t < 0) {
209 throw ModusDefault::InvalidEnergy(
211 "P_Lab must be nonnegative.");
214 p_lab_t *
target_->number_of_particles(),
215 mass_projec, mass_target);
219 if (energy_input == 0) {
220 throw std::domain_error(
221 "Input Error: Non-existent collision energy. "
222 "Please provide one of Sqrtsnn/E_Kin/P_Lab.");
224 if (energy_input > 1) {
225 throw std::invalid_argument(
226 "Input Error: Redundant collision energy. "
227 "Please provide only one of Sqrtsnn/E_Kin/P_Lab.");
243 throw std::invalid_argument(
244 "Input Error: Need impact parameter spectrum for custom sampling."
245 " Please provide Values and Yields.");
247 const std::vector<double> impacts =
249 const std::vector<double> yields =
251 if (impacts.size() != yields.size()) {
252 throw std::invalid_argument(
253 "Input Error: Need as many impact parameter values as yields. "
254 "Please make sure that Values and Yields have the same length.");
257 InterpolateDataLinear<double>(impacts, yields));
259 const auto imp_minmax =
260 std::minmax_element(impacts.begin(), impacts.end());
263 yield_max_ = *std::max_element(yields.begin(), yields.end());
267 const std::array<double, 2> range =
293 if (modus_cfg.has_value(
298 if (modus_cfg.has_value(
303 if (modus_cfg.has_value(
308 if (modus_cfg.has_value(
314 double threshold = modus_cfg.take(
322 double form_time_fraction = modus_cfg.take(
324 if (threshold <= 0 || max_time < min_time || min_time < 0 || cells < 2 ||
325 form_time_fraction < 0) {
327 <<
"Bad parameters chosen for dynamic initial conditions. At least "
328 "one of the following inequalities is violated:\n"
329 <<
" Energy_Density_Threshold = " << threshold <<
" > 0\n"
330 <<
" Maximum_Time = " << max_time <<
" > " << min_time
331 <<
" = Minimum_Time > 0\n Fluidization_Cells = " << cells
333 <<
" Formation_Time_Fraction < 0";
334 throw std::invalid_argument(
"Please adjust the configuration file.");
340 double min_size = std::max(min_time, 10.);
341 std::array<double, 3>
length{2 * min_size, 2 * min_size, 2 * min_size};
342 std::array<double, 3> origin{-min_size, -min_size, -min_size};
343 std::array<int, 3> cell_array{cells, cells, cells};
346 std::make_unique<RectangularLattice<EnergyMomentumTensor>>(
355 <<
"Dynamic Initial Conditions with threshold " << threshold
356 <<
" GeV/fm³ in energy density, between " << min_time <<
" and "
357 << max_time <<
" fm.";
CalculationFrame frame_
Reference frame for the system, as specified from config.
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.
double yield_max_
Maximum value of yield. Needed for custom impact parameter sampling.
bool random_reaction_plane_
Whether the reaction plane should be randomized.
std::unique_ptr< Nucleus > projectile_
Projectile.
std::unique_ptr< InterpolateDataLinear< double > > impact_interpolation_
Pointer to the impact parameter interpolation.
FermiMotion fermi_motion_
An option to include Fermi motion ("off", "on", "frozen")
static std::unique_ptr< AlphaClusteredNucleus > create_alphaclustered_nucleus(Configuration &nucleus_cfg, const int ntest, const std::string &nucleus_type)
Configure Alpha-Clustered Nucleus.
Sampling sampling_
Method used for sampling of impact parameter.
std::unique_ptr< RectangularLattice< EnergyMomentumTensor > > fluid_lattice_
Energy-momentum tensor lattice for dynamic fluidization.
double total_s_
Center-of-mass energy squared of the nucleus-nucleus collision.
std::unique_ptr< Nucleus > target_
Target.
double impact_
Impact parameter.
double sqrt_s_NN_
Center-of-mass energy of a nucleon-nucleon collision.
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.
static std::unique_ptr< DeformedNucleus > create_deformed_nucleus(Configuration &nucleus_cfg, const int ntest, const std::string &nucleus_type)
Configure Deformed Nucleus.
std::unique_ptr< InitialConditionParameters > IC_parameters_
Plain Old Data type to hold parameters for initial conditions.
double imp_max_
Maximum value of impact parameter.
@ On
Use fermi motion in combination with potentials.
@ Frozen
Use fermi motion without potentials.
@ Off
Don't use fermi motion.
@ ConstantTau
Hypersurface crossed at a fixed proper time.
@ Dynamic
Dynamic fluidization based on local densities.
@ Custom
Sample from custom, user-defined distribution.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
double s_from_Ekin(double e_kin, double m_P, double m_T)
Convert E_kin to Mandelstam-s for a fixed-target setup, with a projectile of mass m_P and a kinetic e...
static constexpr int LCollider
double s_from_Etot(double e_tot, double m_P, double m_T)
Convert E_tot to Mandelstam-s for a fixed-target setup, with a projectile of mass m_P and a total ene...
double s_from_plab(double plab, double m_P, double m_T)
Convert p_lab to Mandelstam-s for a fixed-target setup, with a projectile of mass m_P and momentum pl...