Version: SMASH-3.2
alphaclusterednucleus.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2024-2025
3  * SMASH Team
4  *
5  * GNU General Public License (GPLv3 or later)
6  */
8 
9 #include <cmath>
10 #include <map>
11 #include <stdexcept>
12 
13 #include "smash/configuration.h"
14 #include "smash/constants.h"
15 #include "smash/fourvector.h"
16 #include "smash/numerics.h"
17 #include "smash/random.h"
18 #include "smash/threevector.h"
19 
20 namespace smash {
21 
23  bool automatic)
24  : Nucleus(config, n_test) {
27  if (A == 16 && Z == 8) {
28  // Set the Woods-Saxon parameters to those of Helium
29  set_diffusiveness(0.322);
30  set_nuclear_radius(1.676);
31  } else {
32  throw std::domain_error(
33  "Alpha-clustering is only implemented for oxygen nuclei. Please, check "
34  "the 'Alpha_Clustered' section in your input file.");
35  }
36 
37  /* NOTE: Here the Nucleus parent class has been initialised and the Projectile
38  * or Target subsection could be already be entirely extracted. Therefore
39  * unconditionally call here the is_about_projectile function might fail.
40  * This has to be called where appropriate and repeating it is not a problem.
41  */
42  if (!automatic && has_projectile_or_target(config)) {
43  const bool is_projectile = is_about_projectile(config);
44  const auto &side_length_key = [&is_projectile]() {
45  return is_projectile
48  }();
49  tetrahedron_side_length_ = config.take(side_length_key);
50  }
52  if (has_projectile_or_target(config)) {
53  const bool is_projectile = is_about_projectile(config);
54  const auto &orientation_section = [&is_projectile]() {
55  return is_projectile ? InputSections::m_c_p_orientation
57  }();
58  if (config.has_section(orientation_section)) {
59  Configuration sub_conf =
60  config.extract_complete_sub_configuration(orientation_section);
62  }
63  }
64 }
65 
67  ThreeVector alpha_clustering_shift =
71 
72  return Nucleus::distribute_nucleon() + alpha_clustering_shift;
73 }
74 
76  double side_length) {
77  for (auto &position : tetrahedron_vertex_positions_) {
78  position = position / position.abs() * std::sqrt(6) / 4 * side_length;
79  }
80 }
81 
82 } // namespace smash
AlphaClusteredNucleus(Configuration &config, int n_test, bool automatic)
Constructor which takes a configuration and the number of test particles.
int tetrahedron_vertex_index_
An index to iterate through the vertices of the tetrahedron.
void scale_tetrahedron_vertex_positions(double side_length)
Scales the tetrahedron vertex positions to have the specified side length.
double tetrahedron_side_length_
Side length of the tetrahedron used for alpha-clustering.
std::vector< ThreeVector > tetrahedron_vertex_positions_
Positions of the vertices of the regular tetrahedron with center at (0,0,0) used for alpha-clustering...
ThreeVector distribute_nucleon() override
Alpha-clustering sampling routine.
Interface to the SMASH configuration files.
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 nucleus is a collection of particles that are initialized, before the beginning of the simulation a...
Definition: nucleus.h:27
void set_nuclear_radius(double rad)
Sets the nuclear radius.
Definition: nucleus.h:356
void set_diffusiveness(double diffuse)
Sets the diffusiveness of the nucleus.
Definition: nucleus.h:323
size_t number_of_protons() const
Number of physical protons in the nucleus:
Definition: nucleus.h:175
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
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.
Definition: action.h:24
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
Generic numerical functions.
static const Key< double > modi_collider_target_alphaClustered_sideLength
See user guide description for more information.
Definition: input_keys.h:3595
static const Key< double > modi_collider_projectile_alphaClustered_sideLength
See user guide description for more information.
Definition: input_keys.h:3589
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