24 :
Nucleus(particle_list, nTest) {}
27 bool auto_deformation)
29 if (auto_deformation) {
39 const auto &orientation_section = [&config]() {
70 return a_direction.
threevec() * a_radius;
79 const std::map<int, std::string> A_map = {{238,
"Uranium"},
84 const std::map<std::string, std::string> Z_map = {{
"Uranium",
"92"},
136 }
else if (Z == 44) {
140 throw std::domain_error(
141 "Number of protons for nuclei with mass number A = 96 does not "
142 "match that of Zirconium or Ruthenium. The deformation parameters "
143 "for additional isobars are currently not implemented."
144 " Please specify at least \"Beta_2\" and \"Beta_4\" "
145 "manually and set \"Automatic: False.\" ");
149 throw std::domain_error(
150 "Mass number not listed for automatically setting deformation "
151 "parameters. Please specify at least \"Beta_2\" and \"Beta_4\" "
152 "manually and set \"Automatic: False.\" ");
155 throw std::domain_error(
"Mass number is listed under " + A_map.at(A) +
161 Z_map.at(A_map.at(A)) +
163 "Please specify at least \"Beta_2\" and \"Beta_4\" "
164 "manually and set \"Automatic: False.\" ");
172 const auto &[beta2_key, beta3_key, beta4_key,
173 gamma_key] = [&is_projectile]() {
202 double y_l_m(
int l,
int m,
double cosx,
double phi) {
203 if (l == 2 && m == 0) {
204 return (1. / 4) * std::sqrt(5 / M_PI) * (3. * (cosx * cosx) - 1);
205 }
else if (l == 2 && m == 2) {
206 double sinx2 = 1. - cosx * cosx;
207 return (1. / 4) * std::sqrt(15 / (2. * M_PI)) * sinx2 * std::cos(2. * phi);
208 }
else if (l == 3 && m == 0) {
209 return (1. / 4) * std::sqrt(7 / M_PI) *
210 (5. * cosx * (cosx * cosx) - 3. * cosx);
211 }
else if (l == 4 && m == 0) {
212 return (3. / 16) * std::sqrt(1 / M_PI) *
213 (35. * (cosx * cosx) * (cosx * cosx) - 30. * (cosx * cosx) + 3);
215 throw std::domain_error(
216 "Not a valid angular momentum quantum number in y_l_m.");
226 y_l_m(2, 0, cosx, phi) +
227 std::sqrt(2) * std::sin(
gamma_) *
228 y_l_m(2, 2, cosx, phi)) +
240 y_l_m(2, 0, cosx, phi) +
241 std::sqrt(2) * std::sin(
gamma_) *
242 y_l_m(2, 2, cosx, phi)) +
256 const auto result =
integrate(0.0, 2.0 * M_PI, [&](
double phi) {
259 return result.value();
270 const auto result =
integrate(0.01, 1, -1, 1, [&](
double t,
double cosx) {
271 const double r = (1 - t) / t;
272 return twopi * std::pow(r, 2.0) *
278 const auto result =
integrate(0.01, 1, -1, 1, [&](
double t,
double cosx) {
279 const double r = (1 - t) / t;
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.
Interface to the SMASH configuration files.
bool has_value(const Key< T > &key) const
Return whether there is a non-empty value behind the requested key (which is supposed not to refer to...
bool has_section(const KeyLabels &labels) const
Return whether there is a (possibly empty) section with the given labels.
Configuration extract_complete_sub_configuration(KeyLabels section, Configuration::GetEmpty empty_if_not_existing=Configuration::GetEmpty::No)
Alternative method to extract a sub-configuration, which retains the labels from the top-level in the...
T take(const Key< T > &key)
The default interface for SMASH to read configuration values.
A C++ interface for numerical integration in two dimensions with the Cuba Cuhre integration function.
A C++ interface for numerical integration in one dimension with the GSL CQUAD integration functions.
A nucleus is a collection of particles that are initialized, before the beginning of the simulation a...
double get_diffusiveness() const
double get_saturation_density() const
double get_nuclear_radius() const
virtual void set_saturation_density(double density)
Sets the saturation density of the nucleus.
size_t number_of_protons() const
Number of physical protons in the nucleus:
size_t number_of_particles() const
Number of physical particles in the nucleus:
void set_orientation_from_config(Configuration &orientation_config)
Set angles for rotation of the nucleus from config file.
The ThreeVector class represents a physical three-vector with the components .
Collection of useful constants that are known at compile time.
static Integrator integrate
double y_l_m(int l, int m, double cosx, double phi)
Spherical harmonics Y_2_0, Y_2_2, Y_3_0 and Y_4_0.
bool has_projectile_or_target(const Configuration &config)
Find out whether a configuration has a projectile or a target sub-section.
bool is_about_projectile(const Configuration &config)
Find out whether a configuration is about projectile or target.