Version: SMASH-3.2
nucleus.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014-2022,2024
3  * SMASH Team
4  *
5  * GNU General Public License (GPLv3 or later)
6  */
7 #ifndef SRC_INCLUDE_SMASH_NUCLEUS_H_
8 #define SRC_INCLUDE_SMASH_NUCLEUS_H_
9 
10 #include <map>
11 #include <stdexcept>
12 #include <vector>
13 
14 #include "configuration.h"
15 #include "constants.h"
16 #include "forwarddeclarations.h"
17 #include "fourvector.h"
18 #include "particledata.h"
19 #include "threevector.h"
20 
21 namespace smash {
22 
27 class Nucleus {
28  public:
30  Nucleus() = default;
31 
40  Nucleus(Configuration &config, int nTest);
41 
51  Nucleus(const std::map<PdgCode, int> &particle_list, int nTest);
52  virtual ~Nucleus() = default;
53 
58  double mass() const;
59 
70 
76  double woods_saxon(double x);
77 
79  virtual void arrange_nucleons();
80 
89  virtual void set_parameters_automatic();
90 
99  virtual void generate_fermi_momenta();
100 
110  void boost(double beta_scalar);
111 
122  void fill_from_list(const std::map<PdgCode, int> &particle_list,
123  int testparticles);
124 
133  void shift(double z_offset, double x_offset, double simulation_time);
134 
138  virtual void rotate();
139 
145  void copy_particles(Particles *particles);
146 
148  inline size_t size() const { return particles_.size(); }
149 
156  inline size_t number_of_particles() const {
157  size_t nop = particles_.size() / testparticles_;
158  /* If size() is not a multiple of testparticles_, this will throw an
159  * error. */
160  if (nop * testparticles_ != particles_.size()) {
161  throw TestparticleConfusion(
162  "Number of test particles and test particles"
163  "per particle are incompatible.");
164  }
165  return nop;
166  }
167 
175  inline size_t number_of_protons() const {
176  size_t proton_counter = 0;
177  /* If n_protons is not a multiple of testparticles_, this will throw an
178  * error. */
179  for (auto &particle : particles_) {
180  if (particle.type().pdgcode() == pdg::p) {
181  proton_counter++;
182  }
183  }
184 
185  size_t n_protons = proton_counter / testparticles_;
186 
187  if (n_protons * testparticles_ != proton_counter) {
188  throw TestparticleConfusion(
189  "Number of test protons and test particles"
190  "per proton are incompatible.");
191  }
192 
193  return n_protons;
194  }
195 
201  FourVector center() const;
202 
204  void set_label(BelongsTo label) {
205  for (ParticleData &data : particles_) {
206  data.set_belongs_to(label);
207  }
208  }
209 
214  void align_center() {
215  FourVector centerpoint = center();
216  for (auto p = particles_.begin(); p != particles_.end(); ++p) {
217  p->set_4position(p->position() - centerpoint);
218  }
219  }
220 
228  // This function as well as nucleon_density_unnormalized could in principle
229  // be defined without the second argument
230  virtual double nucleon_density(double r, double, double) const;
238  virtual double nucleon_density_unnormalized(double r, double, double) const;
247  virtual double calculate_saturation_density() const;
252  virtual void set_saturation_density(double density) {
253  saturation_density_ = density;
254  }
255 
257  struct TestparticleConfusion : public std::length_error {
258  using std::length_error::length_error;
259  };
260 
261  private:
273  double proton_radius_ = 1.2;
275  size_t testparticles_ = 1;
276 
277  protected:
279  std::vector<ParticleData> particles_;
280 
282  // Needed as public member for inheritance to deformed nuclei
284 
289  void random_euler_angles();
290 
296  double euler_phi_ = 0.0;
298  double euler_theta_ = 0.0;
300  double euler_psi_ = 0.0;
302  bool random_rotation_ = false;
303 
304  public:
306  inline std::vector<ParticleData>::iterator begin() {
307  return particles_.begin();
308  }
310  inline std::vector<ParticleData>::iterator end() { return particles_.end(); }
312  inline std::vector<ParticleData>::const_iterator cbegin() const {
313  return particles_.cbegin();
314  }
316  inline std::vector<ParticleData>::const_iterator cend() const {
317  return particles_.cend();
318  }
323  inline void set_diffusiveness(double diffuse) { diffusiveness_ = diffuse; }
328  inline double get_diffusiveness() const { return diffusiveness_; }
333  inline double get_saturation_density() const { return saturation_density_; }
341  inline double default_nuclear_radius() {
342  int A = number_of_particles();
343 
344  if (A <= 16) {
345  // radius: rough guess for all nuclei not listed explicitly with A <= 16
346  return (proton_radius_ * std::cbrt(A));
347  } else {
348  // radius taken from \iref{Rybczynski:2013yba}
349  return (1.12 * std::pow(A, 1.0 / 3.0) - 0.86 * std::pow(A, -1.0 / 3.0));
350  }
351  }
356  inline void set_nuclear_radius(double rad) { nuclear_radius_ = rad; }
361  inline double get_nuclear_radius() const { return nuclear_radius_; }
367  void set_orientation_from_config(Configuration &orientation_config);
372  friend std::ostream &operator<<(std::ostream &, const Nucleus &);
373 };
374 
380 bool has_projectile_or_target(const Configuration &config);
381 
390 bool is_about_projectile(const Configuration &config);
391 
392 } // namespace smash
393 
394 #endif // SRC_INCLUDE_SMASH_NUCLEUS_H_
Interface to the SMASH configuration files.
The FourVector class holds relevant values in Minkowski spacetime with (+, −, −, −) metric signature.
Definition: fourvector.h:33
A nucleus is a collection of particles that are initialized, before the beginning of the simulation a...
Definition: nucleus.h:27
double proton_radius_
Single proton radius in fm.
Definition: nucleus.h:273
Nucleus()=default
default constructor
double get_diffusiveness() const
Definition: nucleus.h:328
double euler_theta_
Euler angle theta.
Definition: nucleus.h:298
std::vector< ParticleData >::const_iterator cbegin() const
For const iterators over the particle list:
Definition: nucleus.h:312
virtual double nucleon_density_unnormalized(double r, double, double) const
Return the unnormalized Woods-Saxon distribution for the given position without deformation.
Definition: nucleus.cc:555
void shift(double z_offset, double x_offset, double simulation_time)
Shifts the nucleus to correct impact parameter and z displacement.
Definition: nucleus.cc:516
double get_saturation_density() const
Definition: nucleus.h:333
double woods_saxon(double x)
Woods-Saxon distribution.
Definition: nucleus.cc:281
void random_euler_angles()
Randomly generate Euler angles.
Definition: nucleus.cc:543
virtual ~Nucleus()=default
virtual void arrange_nucleons()
Sets the positions of the nucleons inside a nucleus.
Definition: nucleus.cc:285
virtual double calculate_saturation_density() const
Definition: nucleus.cc:559
double default_nuclear_radius()
Default nuclear radius calculated as:
Definition: nucleus.h:341
double diffusiveness_
Diffusiveness of Woods-Saxon distribution of this nucleus in fm (for diffusiveness_ == 0,...
Definition: nucleus.h:266
double saturation_density_
Saturation density of this nucleus.
Definition: nucleus.h:283
FourVector center() const
Calculate geometrical center of the nucleus.
Definition: nucleus.cc:534
virtual void generate_fermi_momenta()
Generates momenta according to Fermi motion for the nucleons.
Definition: nucleus.cc:411
virtual void set_parameters_automatic()
Sets the deformation parameters of the Woods-Saxon distribution according to the current mass number.
Definition: nucleus.cc:302
std::vector< ParticleData >::const_iterator cend() const
For const iterators over the particle list:
Definition: nucleus.h:316
size_t size() const
Number of numerical (=test-)particles in the nucleus:
Definition: nucleus.h:148
size_t testparticles_
Number of testparticles per physical particle.
Definition: nucleus.h:275
double get_nuclear_radius() const
Definition: nucleus.h:361
virtual double nucleon_density(double r, double, double) const
Return the Woods-Saxon probability density for the given position.
Definition: nucleus.cc:550
double euler_phi_
The Euler angle phi of the three Euler angles used to apply rotations to the nucleus.
Definition: nucleus.h:296
double nuclear_radius_
Nuclear radius of this nucleus.
Definition: nucleus.h:268
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.
Definition: nucleus.cc:502
std::vector< ParticleData > particles_
Particles associated with this nucleus.
Definition: nucleus.h:279
double euler_psi_
Euler angle psi.
Definition: nucleus.h:300
double mass() const
Definition: nucleus.cc:75
void align_center()
Shifts the nucleus so that its center is at (0,0,0)
Definition: nucleus.h:214
void copy_particles(Particles *particles)
Copies the particles from this nucleus into the particle list.
Definition: nucleus.cc:528
virtual void set_saturation_density(double density)
Sets the saturation density of the nucleus.
Definition: nucleus.h:252
void set_nuclear_radius(double rad)
Sets the nuclear radius.
Definition: nucleus.h:356
void set_label(BelongsTo label)
Sets target / projectile labels on nucleons.
Definition: nucleus.h:204
bool random_rotation_
Whether the nucleus should be rotated randomly.
Definition: nucleus.h:302
void set_diffusiveness(double diffuse)
Sets the diffusiveness of the nucleus.
Definition: nucleus.h:323
virtual void rotate()
Rotates the nucleus using the three euler angles phi, theta and psi.
Definition: nucleus.cc:391
std::vector< ParticleData >::iterator begin()
For iterators over the particle list:
Definition: nucleus.h:306
size_t number_of_protons() const
Number of physical protons in the nucleus:
Definition: nucleus.h:175
void boost(double beta_scalar)
Boosts the nuclei into the computational frame, such that the nucleons have the appropriate momentum ...
Definition: nucleus.cc:472
virtual ThreeVector distribute_nucleon()
The distribution of return values from this function is according to a spherically symmetric Woods-Sa...
Definition: nucleus.cc:235
size_t number_of_particles() const
Number of physical particles in the nucleus:
Definition: nucleus.h:156
void set_orientation_from_config(Configuration &orientation_config)
Set angles for rotation of the nucleus from config file.
Definition: nucleus.cc:360
std::vector< ParticleData >::iterator end()
For iterators over the particle list:
Definition: nucleus.h:310
ParticleData contains the dynamic information of a certain particle.
Definition: particledata.h:58
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
The ThreeVector class represents a physical three-vector with the components .
Definition: threevector.h:31
Collection of useful constants that are known at compile time.
friend std::ostream & operator<<(std::ostream &, const Nucleus &)
Writes the state of the Nucleus object to the output stream.
Definition: nucleus.cc:575
constexpr int p
Proton.
Definition: action.h:24
constexpr double nuclear_density
Ground state density of symmetric nuclear matter [fm^-3].
Definition: constants.h:48
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