Version: SMASH-3.2
smash::DeformedNucleus Class Reference

#include <deformednucleus.h>

DeformedNucleus: Child of nucleus for deformed nuclei.

All options from the nucleus will still apply. The deformed nucleus adds new or updated features which are outlined below.

Definition at line 38 of file deformednucleus.h.

Inheritance diagram for smash::DeformedNucleus:
smash::Nucleus

Public Member Functions

 DeformedNucleus (const std::map< PdgCode, int > &particle_list, int nTest)
 Constructor for DeformedNucles which takes a particle list and the number of testparticles. More...
 
 DeformedNucleus (Configuration &config, int nTest, bool auto_deformation)
 Constructor for DeformedNucleus, that needs the configuration parameters from the inputfile and the number of testparticles. More...
 
ThreeVector distribute_nucleon () override
 Deformed Woods-Saxon sampling routine. More...
 
void set_deformation_parameters_automatic ()
 Sets the deformation parameters of the radius according to the current mass number. More...
 
void set_deformation_parameters_from_config (Configuration &config)
 Set parameters for spherical deformation of the nucleus from the values specified in the configuration file. More...
 
double get_saturation_density () const
 
double nucleon_density (double r, double cosx, double phi) const override
 Return the deformed Woods-Saxon probability density for the given position. More...
 
double nucleon_density_unnormalized (double r, double cosx, double phi) const override
 Return the unnormalized deformed Woods-Saxon distribution for the given position. More...
 
double integrant_nucleon_density_phi (double r, double cosx) const
 Return the integral over the azimuthal angle phi. More...
 
double calculate_saturation_density () const override
 
void set_beta_2 (double b2)
 Set deformation coefficient for Y_2_0. More...
 
void set_gamma (double ga)
 Set the triaxiality coefficient gamma for Y_2_0 and Y_2_2. More...
 
void set_beta_3 (double b3)
 Set deformation coefficient for Y_3_0. More...
 
void set_beta_4 (double b4)
 Set deformation coefficient for Y_4_0. More...
 
double get_beta2 ()
 return the beta2 value. More...
 
double get_beta3 ()
 return the beta3 value. More...
 
double get_beta4 ()
 return the beta4 value. More...
 
- Public Member Functions inherited from smash::Nucleus
 Nucleus ()=default
 default constructor More...
 
 Nucleus (Configuration &config, int nTest)
 Constructor for Nucleus, that needs the configuration parameters from the inputfile and the number of testparticles. More...
 
 Nucleus (const std::map< PdgCode, int > &particle_list, int nTest)
 Constructor which directly initializes the Nucleus with particles and respective counts. More...
 
virtual ~Nucleus ()=default
 
double mass () const
 
double woods_saxon (double x)
 Woods-Saxon distribution. More...
 
virtual void arrange_nucleons ()
 Sets the positions of the nucleons inside a nucleus. More...
 
virtual void set_parameters_automatic ()
 Sets the deformation parameters of the Woods-Saxon distribution according to the current mass number. More...
 
virtual void generate_fermi_momenta ()
 Generates momenta according to Fermi motion for the nucleons. More...
 
void boost (double beta_scalar)
 Boosts the nuclei into the computational frame, such that the nucleons have the appropriate momentum and the nuclei are lorentz-contracted. More...
 
void fill_from_list (const std::map< PdgCode, int > &particle_list, int testparticles)
 Adds particles from a map PDG code => Number_of_particles_with_that_PDG_code to the nucleus. More...
 
void shift (double z_offset, double x_offset, double simulation_time)
 Shifts the nucleus to correct impact parameter and z displacement. More...
 
virtual void rotate ()
 Rotates the nucleus using the three euler angles phi, theta and psi. More...
 
void copy_particles (Particles *particles)
 Copies the particles from this nucleus into the particle list. More...
 
size_t size () const
 Number of numerical (=test-)particles in the nucleus: More...
 
size_t number_of_particles () const
 Number of physical particles in the nucleus: More...
 
size_t number_of_protons () const
 Number of physical protons in the nucleus: More...
 
FourVector center () const
 Calculate geometrical center of the nucleus. More...
 
void set_label (BelongsTo label)
 Sets target / projectile labels on nucleons. More...
 
void align_center ()
 Shifts the nucleus so that its center is at (0,0,0) More...
 
virtual void set_saturation_density (double density)
 Sets the saturation density of the nucleus. More...
 
std::vector< ParticleData >::iterator begin ()
 For iterators over the particle list: More...
 
std::vector< ParticleData >::iterator end ()
 For iterators over the particle list: More...
 
std::vector< ParticleData >::const_iterator cbegin () const
 For const iterators over the particle list: More...
 
std::vector< ParticleData >::const_iterator cend () const
 For const iterators over the particle list: More...
 
void set_diffusiveness (double diffuse)
 Sets the diffusiveness of the nucleus. More...
 
double get_diffusiveness () const
 
double get_saturation_density () const
 
double default_nuclear_radius ()
 Default nuclear radius calculated as: More...
 
void set_nuclear_radius (double rad)
 Sets the nuclear radius. More...
 
double get_nuclear_radius () const
 
void set_orientation_from_config (Configuration &orientation_config)
 Set angles for rotation of the nucleus from config file. More...
 

Private Attributes

double beta2_ = 0.0
 Deformation parameter for angular momentum l=2. More...
 
double gamma_ = 0.0
 Triaxiality parameter for angular momentum l=2. More...
 
double beta3_ = 0.0
 Deformation parameter for angular momentum l=3. More...
 
double beta4_ = 0.0
 Deformation parameter for angular momentum l=4. More...
 

Additional Inherited Members

- Protected Member Functions inherited from smash::Nucleus
void random_euler_angles ()
 Randomly generate Euler angles. More...
 
- Protected Attributes inherited from smash::Nucleus
std::vector< ParticleDataparticles_
 Particles associated with this nucleus. More...
 
double saturation_density_ = nuclear_density
 Saturation density of this nucleus. More...
 
double euler_phi_ = 0.0
 The Euler angle phi of the three Euler angles used to apply rotations to the nucleus. More...
 
double euler_theta_ = 0.0
 Euler angle theta. More...
 
double euler_psi_ = 0.0
 Euler angle psi. More...
 
bool random_rotation_ = false
 Whether the nucleus should be rotated randomly. More...
 

Constructor & Destructor Documentation

◆ DeformedNucleus() [1/2]

smash::DeformedNucleus::DeformedNucleus ( const std::map< PdgCode, int > &  particle_list,
int  nTest 
)

Constructor for DeformedNucles which takes a particle list and the number of testparticles.

This constructor is only used for testing purposes.

Parameters
[in]particle_listMap with PDGCode and number of particles which make up the nucleus
[in]nTestnumber of testparticles

Definition at line 22 of file deformednucleus.cc.

24  : Nucleus(particle_list, nTest) {}
Nucleus()=default
default constructor

◆ DeformedNucleus() [2/2]

smash::DeformedNucleus::DeformedNucleus ( Configuration config,
int  nTest,
bool  auto_deformation 
)

Constructor for DeformedNucleus, that needs the configuration parameters from the inputfile and the number of testparticles.

Parameters
[in]configcontains the parameters from the inputfile on the numbers of particles with a certain PDG code
[in]nTestnumber of testparticles
[in]auto_deformationwhether or not deformation parameters should be set automatically

Definition at line 26 of file deformednucleus.cc.

28  : Nucleus(config, nTest) {
29  if (auto_deformation) {
32  } else {
34  }
35  /* If the config does not contain (anymore) a target or a projectile
36  sub-section, this code should not be executed, because e.g. the
37  is_about_projectile function would fail. */
38  if (has_projectile_or_target(config)) {
39  const auto &orientation_section = [&config]() {
42  }();
43  if (config.has_section(orientation_section)) {
44  Configuration sub_conf =
45  config.extract_complete_sub_configuration(orientation_section);
47  }
48  }
49 }
void set_deformation_parameters_from_config(Configuration &config)
Set parameters for spherical deformation of the nucleus from the values specified in the configuratio...
double calculate_saturation_density() const override
void set_deformation_parameters_automatic()
Sets the deformation parameters of the radius according to the current mass number.
virtual void set_saturation_density(double density)
Sets the saturation density of the nucleus.
Definition: nucleus.h:252
void set_orientation_from_config(Configuration &orientation_config)
Set angles for rotation of the nucleus from config file.
Definition: nucleus.cc:360
bool has_projectile_or_target(const Configuration &config)
Find out whether a configuration has a projectile or a target sub-section.
Definition: nucleus.cc:584
bool is_about_projectile(const Configuration &config)
Find out whether a configuration is about projectile or target.
Definition: nucleus.cc:590
static const Section m_c_p_orientation
Subsection for the projectile orientation in collider modus.
Definition: input_keys.h:114
static const Section m_c_t_orientation
Subsection for the target orientation in collider modus.
Definition: input_keys.h:128

Member Function Documentation

◆ distribute_nucleon()

ThreeVector smash::DeformedNucleus::distribute_nucleon ( )
overridevirtual

Deformed Woods-Saxon sampling routine.

Returns
Spatial position from uniformly sampling the deformed woods-saxon distribution

Reimplemented from smash::Nucleus.

Definition at line 51 of file deformednucleus.cc.

51  {
52  double a_radius;
53  Angles a_direction;
54  // Set a sensible maximum bound for radial sampling.
55  double radius_max =
58 
59  // Sample the distribution.
60  do {
61  a_direction.distribute_isotropically();
62  // sample r**2 dr
63  a_radius = radius_max * std::cbrt(random::canonical());
64  } while (random::canonical() > nucleon_density(a_radius,
65  a_direction.costheta(),
66  a_direction.phi()) /
68 
69  // Update (x, y, z) positions.
70  return a_direction.threevec() * a_radius;
71 }
double nucleon_density(double r, double cosx, double phi) const override
Return the deformed Woods-Saxon probability density for the given position.
double get_diffusiveness() const
Definition: nucleus.h:328
double get_saturation_density() const
Definition: nucleus.h:333
double get_nuclear_radius() const
Definition: nucleus.h:361
T canonical()
Definition: random.h:113

◆ set_deformation_parameters_automatic()

void smash::DeformedNucleus::set_deformation_parameters_automatic ( )

Sets the deformation parameters of the radius according to the current mass number.

The deformation parameters are taken from Moller:1993ed [41]. Corrections to the deformation parameter beta2 in Uranium come from Kuhlman:2005ts [34]. For finite nucleon size corrections to the nuclear density and radius for copper and gold, see Hirano:2009ah [26], and Hirano:2010jg [28] for uranium.

Definition at line 73 of file deformednucleus.cc.

73  {
74  // Set the deformation parameters
75  // reference for U, Pb, Au, Cu: \iref{Moller:1993ed}
76  // reference for Zr and Ru: \iref{Schenke:2019ruo}
77  // reference for Xe: \iref{Moller:2015fba}
78  bool listed = 0;
79  const std::map<int, std::string> A_map = {{238, "Uranium"},
80  {208, "Lead"},
81  {197, "Gold"},
82  {63, "Copper"},
83  {129, "Xenon"}};
84  const std::map<std::string, std::string> Z_map = {{"Uranium", "92"},
85  {"Lead", "82"},
86  {"Gold", "79"},
87  {"Copper", "29"},
88  {"Xenon", "54"}};
91  switch (A) {
92  case 238: // Uranium
93  if (Z == 92) {
94  set_beta_2(0.28);
95  set_beta_4(0.093);
96  } else {
97  listed = true;
98  }
99  break;
100  case 208: // Lead
101  if (Z == 82) {
102  set_beta_2(0.0);
103  set_beta_4(0.0);
104  } else {
105  listed = true;
106  }
107  break;
108  case 197: // Gold
109  if (Z == 79) {
110  set_beta_2(-0.131);
111  set_beta_4(-0.031);
112  } else {
113  listed = true;
114  }
115  break;
116  case 129: // Xenon
117  if (Z == 54) {
118  set_beta_2(0.162);
119  set_beta_4(-0.003);
120  } else {
121  listed = true;
122  }
123  break;
124  case 63: // Copper
125  if (Z == 29) {
126  set_beta_2(0.162);
127  set_beta_4(-0.006);
128  } else {
129  listed = true;
130  }
131  break;
132  case 96:
133  if (Z == 40) { // Zirconium
134  set_beta_2(0.0);
135  set_beta_4(0.0);
136  } else if (Z == 44) { // Ruthenium
137  set_beta_2(0.158);
138  set_beta_4(0.0);
139  } else {
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.\" ");
146  }
147  break;
148  default:
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.\" ");
153  }
154  if (listed) {
155  throw std::domain_error("Mass number is listed under " + A_map.at(A) +
156  " but the proton "
157  "number of " +
158  std::to_string(Z) +
159  " does not match "
160  "its " +
161  Z_map.at(A_map.at(A)) +
162  " protons."
163  "Please specify at least \"Beta_2\" and \"Beta_4\" "
164  "manually and set \"Automatic: False.\" ");
165  }
166 }
void set_beta_2(double b2)
Set deformation coefficient for Y_2_0.
void set_beta_4(double b4)
Set deformation coefficient for Y_4_0.
size_t number_of_protons() const
Number of physical protons in the nucleus:
Definition: nucleus.h:175
size_t number_of_particles() const
Number of physical particles in the nucleus:
Definition: nucleus.h:156

◆ set_deformation_parameters_from_config()

void smash::DeformedNucleus::set_deformation_parameters_from_config ( Configuration config)

Set parameters for spherical deformation of the nucleus from the values specified in the configuration file.

Parameters
configThe configuration for the deformation of this nucleus (projectile or target).

Definition at line 168 of file deformednucleus.cc.

169  {
170  if (has_projectile_or_target(config)) {
171  const bool is_projectile = is_about_projectile(config);
172  const auto &[beta2_key, beta3_key, beta4_key,
173  gamma_key] = [&is_projectile]() {
174  return is_projectile
175  ? std::make_tuple(
180  : std::make_tuple(
181  InputKeys::modi_collider_target_deformed_beta2,
182  InputKeys::modi_collider_target_deformed_beta3,
183  InputKeys::modi_collider_target_deformed_beta4,
184  InputKeys::modi_collider_target_deformed_gamma);
185  }();
186  // Deformation parameters
187  if (config.has_value(beta2_key)) {
188  beta2_ = config.take(beta2_key);
189  }
190  if (config.has_value(gamma_key)) {
191  gamma_ = config.take(gamma_key);
192  }
193  if (config.has_value(beta3_key)) {
194  beta3_ = config.take(beta3_key);
195  }
196  if (config.has_value(beta4_key)) {
197  beta4_ = config.take(beta4_key);
198  }
199  }
200 }
double beta4_
Deformation parameter for angular momentum l=4.
double gamma_
Triaxiality parameter for angular momentum l=2.
double beta3_
Deformation parameter for angular momentum l=3.
double beta2_
Deformation parameter for angular momentum l=2.
static const Key< double > modi_collider_projectile_deformed_beta3
See user guide description for more information.
Definition: input_keys.h:3487
static const Key< double > modi_collider_projectile_deformed_beta4
See user guide description for more information.
Definition: input_keys.h:3507
static const Key< double > modi_collider_projectile_deformed_beta2
See user guide description for more information.
Definition: input_keys.h:3467
static const Key< double > modi_collider_projectile_deformed_gamma
See user guide description for more information.
Definition: input_keys.h:3527

◆ get_saturation_density()

double smash::DeformedNucleus::get_saturation_density ( ) const
inline
Returns
the saturation density of the deformed_nucleus
See also
saturation_density_

Definition at line 90 of file deformednucleus.h.

90 { return saturation_density_; }
double saturation_density_
Saturation density of this nucleus.
Definition: nucleus.h:283

◆ nucleon_density()

double smash::DeformedNucleus::nucleon_density ( double  r,
double  cosx,
double  phi 
) const
overridevirtual

Return the deformed Woods-Saxon probability density for the given position.

This corresponds to the nuclear density at the very same position.

Parameters
[in]rThe radius at which to sample
[in]cosxThe cosine of the polar angle at which to sample
[in]phiThe azimuthal angle at which to sample
Returns
The Woods-Saxon density

Reimplemented from smash::Nucleus.

Definition at line 220 of file deformednucleus.cc.

221  {
223  (1 + std::exp((r - Nucleus::get_nuclear_radius() *
224  (1 +
225  beta2_ * (std::cos(gamma_) *
226  y_l_m(2, 0, cosx, phi) +
227  std::sqrt(2) * std::sin(gamma_) *
228  y_l_m(2, 2, cosx, phi)) +
229  beta3_ * y_l_m(3, 0, cosx, phi) +
230  beta4_ * y_l_m(4, 0, cosx, phi))) /
232 }
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.

◆ nucleon_density_unnormalized()

double smash::DeformedNucleus::nucleon_density_unnormalized ( double  r,
double  cosx,
double  phi 
) const
overridevirtual

Return the unnormalized deformed Woods-Saxon distribution for the given position.

Parameters
[in]rThe radius
[in]cosxThe cosine of the polar angle
[in]phiThe azimuthal angle
Returns
The unnormalized Woods-Saxon distribution

Reimplemented from smash::Nucleus.

Definition at line 234 of file deformednucleus.cc.

235  {
236  return 1.0 /
237  (1 + std::exp((r - Nucleus::get_nuclear_radius() *
238  (1 +
239  beta2_ * (std::cos(gamma_) *
240  y_l_m(2, 0, cosx, phi) +
241  std::sqrt(2) * std::sin(gamma_) *
242  y_l_m(2, 2, cosx, phi)) +
243  beta3_ * y_l_m(3, 0, cosx, phi) +
244  beta4_ * y_l_m(4, 0, cosx, phi))) /
246 }

◆ integrant_nucleon_density_phi()

double smash::DeformedNucleus::integrant_nucleon_density_phi ( double  r,
double  cosx 
) const

Return the integral over the azimuthal angle phi.

Parameters
[in]rThe radius
[in]cosxThe cosine of the polar angle
Returns
The unnormalized Woods-Saxon distribution integrated over dphi

Definition at line 248 of file deformednucleus.cc.

249  {
250  Integrator integrate;
251  // Perform the phi integration. This is needed if the triaxiality coefficient
252  // gamma is included, which includes a dependency around the phi axis.
253  // Unfortunately the Integrator class does not support 3d integration which is
254  // why this intermediate integral is needed. It has been checked that the
255  // integral factorizes.
256  const auto result = integrate(0.0, 2.0 * M_PI, [&](double phi) {
257  return nucleon_density_unnormalized(r, cosx, phi);
258  });
259  return result.value();
260 }
double nucleon_density_unnormalized(double r, double cosx, double phi) const override
Return the unnormalized deformed Woods-Saxon distribution for the given position.
static Integrator integrate
Definition: decaytype.cc:143

◆ calculate_saturation_density()

double smash::DeformedNucleus::calculate_saturation_density ( ) const
overridevirtual
Returns
the normalized ground state density for the corresponding Woods-Saxon parameter. This is done by integrating the Woods-Saxon distribution and setting the normalization such that the integral of the Woods-Saxon distribution yields the number of particles in the nucleus \(\int\rho(r)d^3r = N_{particles}\).

Reimplemented from smash::Nucleus.

Definition at line 262 of file deformednucleus.cc.

262  {
263  Integrator2d integrate;
264  // Transform integral from (0, oo) to (0, 1) via r = (1 - t) / t.
265  // To prevent overflow, the integration is only performed to t = 0.01 which
266  // corresponds to r = 99fm. Additionally the precision settings in the
267  // Integrator2d scheme are equally important. However both these point affect
268  // the result only after the seventh digit which should not be relevant here.
269  if (gamma_ == 0.0) {
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) *
273  nucleon_density_unnormalized(r, cosx, 0.0) / std::pow(t, 2.0);
274  });
275  const auto rho0 = number_of_particles() / result.value();
276  return rho0;
277  } else {
278  const auto result = integrate(0.01, 1, -1, 1, [&](double t, double cosx) {
279  const double r = (1 - t) / t;
280  return std::pow(r, 2.0) * integrant_nucleon_density_phi(r, cosx) /
281  std::pow(t, 2.0);
282  });
283  const auto rho0 = number_of_particles() / result.value();
284  return rho0;
285  }
286 }
double integrant_nucleon_density_phi(double r, double cosx) const
Return the integral over the azimuthal angle phi.
constexpr double twopi
.
Definition: constants.h:45

◆ set_beta_2()

void smash::DeformedNucleus::set_beta_2 ( double  b2)
inline

Set deformation coefficient for Y_2_0.

Parameters
[in]b2deformation coefficient for l=2

Definition at line 133 of file deformednucleus.h.

133 { beta2_ = b2; }

◆ set_gamma()

void smash::DeformedNucleus::set_gamma ( double  ga)
inline

Set the triaxiality coefficient gamma for Y_2_0 and Y_2_2.

Parameters
[in]gatriaxiality coefficient for l=2

Definition at line 138 of file deformednucleus.h.

138 { gamma_ = ga; }

◆ set_beta_3()

void smash::DeformedNucleus::set_beta_3 ( double  b3)
inline

Set deformation coefficient for Y_3_0.

Parameters
[in]b3deformation coefficient for l=3

Definition at line 143 of file deformednucleus.h.

143 { beta3_ = b3; }

◆ set_beta_4()

void smash::DeformedNucleus::set_beta_4 ( double  b4)
inline

Set deformation coefficient for Y_4_0.

Parameters
[in]b4deformation coefficient for l=4

Definition at line 148 of file deformednucleus.h.

148 { beta4_ = b4; }

◆ get_beta2()

double smash::DeformedNucleus::get_beta2 ( )
inline

return the beta2 value.

Definition at line 152 of file deformednucleus.h.

152 { return beta2_; }

◆ get_beta3()

double smash::DeformedNucleus::get_beta3 ( )
inline

return the beta3 value.

Definition at line 156 of file deformednucleus.h.

156 { return beta3_; }

◆ get_beta4()

double smash::DeformedNucleus::get_beta4 ( )
inline

return the beta4 value.

Definition at line 160 of file deformednucleus.h.

160 { return beta4_; }

Member Data Documentation

◆ beta2_

double smash::DeformedNucleus::beta2_ = 0.0
private

Deformation parameter for angular momentum l=2.

Definition at line 164 of file deformednucleus.h.

◆ gamma_

double smash::DeformedNucleus::gamma_ = 0.0
private

Triaxiality parameter for angular momentum l=2.

Definition at line 166 of file deformednucleus.h.

◆ beta3_

double smash::DeformedNucleus::beta3_ = 0.0
private

Deformation parameter for angular momentum l=3.

Definition at line 168 of file deformednucleus.h.

◆ beta4_

double smash::DeformedNucleus::beta4_ = 0.0
private

Deformation parameter for angular momentum l=4.

Definition at line 170 of file deformednucleus.h.


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