Version: SMASH-3.2
smash::ICOutput Class Reference

#include <icoutput.h>

SMASH output in ASCII format containing initial conditions for hydrodynamic codes.

Formatted such that it can be directly processed by vHLLE Karpenko:2015xea [31].

Definition at line 31 of file icoutput.h.

Inheritance diagram for smash::ICOutput:
smash::OutputInterface

Public Member Functions

 ICOutput (const std::filesystem::path &path, const std::string &name, const OutputParameters &out_par)
 Create a new IC output. More...
 
 ~ICOutput ()
 
void at_eventstart (const Particles &, const EventLabel &event_label, const EventInfo &event) override
 Write event start line. More...
 
void at_eventend (const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
 Write event end line. More...
 
void at_intermediate_time (const Particles &, const std::unique_ptr< Clock > &, const DensityParameters &, const EventLabel &, const EventInfo &) override
 Unused, but needed since virtually declared in mother class. More...
 
void at_interaction (const Action &action, const double) override
 Write particle data at the hypersurface crossing point to the IC output. More...
 
- Public Member Functions inherited from smash::OutputInterface
 OutputInterface (std::string name)
 Construct output interface. More...
 
virtual ~OutputInterface ()=0
 Pure virtual destructor to make class abstract and prevent its instantiation. More...
 
virtual void at_eventstart (const std::vector< Particles > &, int)
 Output launched at event start after initialization, when particles are generated but not yet propagated. More...
 
virtual void at_eventstart (const int, const ThermodynamicQuantity, const DensityType, RectangularLattice< DensityOnLattice >)
 Output launched at event start after initialization, when particles are generated but not yet propagated. More...
 
virtual void at_eventstart (const int, const ThermodynamicQuantity, const DensityType, RectangularLattice< EnergyMomentumTensor >)
 Output launched at event start after initialization, when particles are generated but not yet propagated. More...
 
virtual void at_eventend (const ThermodynamicQuantity)
 Output launched at event end. More...
 
virtual void at_eventend (const std::vector< Particles > &, const int)
 Output launched at event end. More...
 
virtual void at_intermediate_time (const std::vector< Particles > &, const std::unique_ptr< Clock > &, const DensityParameters &)
 Output launched after every N'th timestep. More...
 
virtual void thermodynamics_output (const ThermodynamicQuantity, const DensityType, RectangularLattice< DensityOnLattice > &)
 Output to write thermodynamics from the lattice. More...
 
virtual void thermodynamics_output (const ThermodynamicQuantity, const DensityType, RectangularLattice< EnergyMomentumTensor > &)
 Output to write energy-momentum tensor and related quantities from the lattice. More...
 
virtual void thermodynamics_lattice_output (RectangularLattice< DensityOnLattice > &, const double)
 Output to write thermodynamics from the lattice. More...
 
virtual void thermodynamics_lattice_output (RectangularLattice< DensityOnLattice > &, const double, const std::vector< Particles > &, const DensityParameters &)
 Output to write thermodynamics from the lattice. More...
 
virtual void thermodynamics_lattice_output (const ThermodynamicQuantity, RectangularLattice< EnergyMomentumTensor > &, const double)
 Output to write energy-momentum tensor and related quantities from the lattice. More...
 
virtual void thermodynamics_output (const GrandCanThermalizer &)
 Output to write energy-momentum tensor and related quantities from the thermalizer class. More...
 
virtual void fields_output (const std::string, const std::string, RectangularLattice< std::pair< ThreeVector, ThreeVector >> &)
 Write fields in vtk output Fields are a pair of threevectors for example electric and magnetic field. More...
 
bool is_dilepton_output () const
 Get, whether this is the dilepton output? More...
 
bool is_photon_output () const
 Get, whether this is the photon output? More...
 
bool is_IC_output () const
 Get, whether this is the IC output? More...
 
const char * to_string (const ThermodynamicQuantity tq)
 Convert thermodynamic quantities to strings. More...
 
const char * to_string (const DensityType dens_type)
 Convert density types to strings. More...
 

Private Attributes

RenamingFilePtr file_
 Pointer to output file. More...
 
const OutputParameters out_par_
 Structure that holds all the information about what to printout. More...
 
double IC_proper_time_ = -1.0
 Proper time of the particles removed when extracting initial conditions. More...
 

Additional Inherited Members

- Protected Attributes inherited from smash::OutputInterface
const bool is_dilepton_output_
 Is this the dilepton output? More...
 
const bool is_photon_output_
 Is this the photon output? More...
 
const bool is_IC_output_
 Is this the IC output? More...
 

Constructor & Destructor Documentation

◆ ICOutput()

smash::ICOutput::ICOutput ( const std::filesystem::path &  path,
const std::string &  name,
const OutputParameters out_par 
)

Create a new IC output.

Parameters
[in]pathPath to the output file.
[in]nameName of the output.
[in]out_parAdditional information on the configured output.

Definition at line 106 of file icoutput.cc.

108  : OutputInterface(name),
109  file_{path / "SMASH_IC.dat", "w"},
110  out_par_(out_par) {
111  std::fprintf(
112  file_.get(),
113  "# %s initial conditions: hypersurface of constant proper time\n",
114  SMASH_VERSION);
115  std::fprintf(file_.get(),
116  "# tau x y eta mt px py Rap pdg charge "
117  "baryon_number strangeness\n");
118  std::fprintf(file_.get(),
119  "# fm fm fm none GeV GeV GeV none none e "
120  "none none\n");
121 }
RenamingFilePtr file_
Pointer to output file.
Definition: icoutput.h:76
const OutputParameters out_par_
Structure that holds all the information about what to printout.
Definition: icoutput.h:78
OutputInterface(std::string name)
Construct output interface.
FILE * get()
Get the underlying FILE* pointer.
Definition: file.cc:27

◆ ~ICOutput()

smash::ICOutput::~ICOutput ( )

Definition at line 123 of file icoutput.cc.

123 {}

Member Function Documentation

◆ at_eventstart()

void smash::ICOutput::at_eventstart ( const Particles ,
const EventLabel event_label,
const EventInfo event 
)
overridevirtual

Write event start line.

Parameters
[in]event_labelNumbers of the current event and ensemble.
[in]eventEvent info, see event_info

Reimplemented from smash::OutputInterface.

Definition at line 125 of file icoutput.cc.

126  {
127  if (event.n_ensembles != 1) {
128  throw std::logic_error(
129  "ICOutput shouldn't be used with multiple parallel ensembles.");
130  }
131  std::fprintf(file_.get(), "# event %i ensemble %i start\n",
132  event_label.event_number, event_label.ensemble_number);
133 }

◆ at_eventend()

void smash::ICOutput::at_eventend ( const Particles particles,
const EventLabel event_label,
const EventInfo event 
)
overridevirtual

Write event end line.

Parameters
[in]particlesParticles at end of event, expected to be empty
[in]event_labelNumbers of the current event and ensemble.
[in]eventEvent info, see event_info

Reimplemented from smash::OutputInterface.

Definition at line 135 of file icoutput.cc.

137  {
138  if (event.n_ensembles != 1) {
139  throw std::logic_error(
140  "ICOutput shouldn't be used with multiple parallel ensembles.");
141  }
142  std::fprintf(file_.get(), "# event %i ensemble %i end\n",
143  event_label.event_number, event_label.ensemble_number);
144 
145  // If the runtime is too short some particles might not yet have
146  // reached the hypersurface. Warning is printed.
147  if (particles.size() != 0 && !event.impose_kinematic_cut_for_SMASH_IC) {
149  "End time might be too small for initial conditions output. "
150  "Hypersurface has not yet been crossed by ",
151  particles.size(), " particle(s).");
152  }
153 }
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
static constexpr int LHyperSurfaceCrossing
Definition: binaryoutput.cc:22

◆ at_intermediate_time()

void smash::ICOutput::at_intermediate_time ( const Particles ,
const std::unique_ptr< Clock > &  ,
const DensityParameters ,
const EventLabel ,
const EventInfo  
)
overridevirtual

Unused, but needed since virtually declared in mother class.

Reimplemented from smash::OutputInterface.

Definition at line 155 of file icoutput.cc.

158  {
159  // Dummy, but virtual function needs to be declared.
160 }

◆ at_interaction()

void smash::ICOutput::at_interaction ( const Action action,
const double   
)
overridevirtual

Write particle data at the hypersurface crossing point to the IC output.

Parameters
[in]actionDetails about the action

Reimplemented from smash::OutputInterface.

Definition at line 162 of file icoutput.cc.

162  {
163  assert(action.get_type() == ProcessType::HyperSurfaceCrossing);
164  assert(action.incoming_particles().size() == 1);
165 
166  ParticleData particle = action.incoming_particles()[0];
167 
168  // transverse mass
169  const double m_trans =
170  std::sqrt(particle.effective_mass() * particle.effective_mass() +
171  particle.momentum()[1] * particle.momentum()[1] +
172  particle.momentum()[2] * particle.momentum()[2]);
173  // momentum space rapidity
174  const double rapidity =
175  0.5 * std::log((particle.momentum()[0] + particle.momentum()[3]) /
176  (particle.momentum()[0] - particle.momentum()[3]));
177 
178  // Determine if particle is spectator:
179  // Fulfilled if particle is initial nucleon, aka has no prior interactions
180  bool is_spectator = particle.get_history().collisions_per_particle == 0;
181 
182  // write particle data excluding spectators
183  if (!is_spectator) {
184  std::fprintf(file_.get(), "%g %g %g %g %g %g %g %g %s %i %i %i \n",
185  particle.position().tau(), particle.position()[1],
186  particle.position()[2], particle.position().eta(), m_trans,
187  particle.momentum()[1], particle.momentum()[2], rapidity,
188  particle.pdgcode().string().c_str(), particle.type().charge(),
189  particle.type().baryon_number(),
190  particle.type().strangeness());
191  }
192 
193  if (IC_proper_time_ < 0.0) {
194  // First particle that is removed, overwrite negative default
195  IC_proper_time_ = particle.position().tau();
196  } else {
197  // Verify that all other particles have the same proper time
198  const double next_proper_time = particle.position().tau();
199  if (!((next_proper_time - IC_proper_time_) < really_small))
200  throw std::runtime_error(
201  "Hypersurface proper time changed during evolution.");
202  }
203 }
double IC_proper_time_
Proper time of the particles removed when extracting initial conditions.
Definition: icoutput.h:89
@ HyperSurfaceCrossing
See here for a short description.
constexpr double really_small
Numerical error tolerance.
Definition: constants.h:37

Member Data Documentation

◆ file_

RenamingFilePtr smash::ICOutput::file_
private

Pointer to output file.

Definition at line 76 of file icoutput.h.

◆ out_par_

const OutputParameters smash::ICOutput::out_par_
private

Structure that holds all the information about what to printout.

Definition at line 78 of file icoutput.h.

◆ IC_proper_time_

double smash::ICOutput::IC_proper_time_ = -1.0
private

Proper time of the particles removed when extracting initial conditions.

Parameter used for testing purposes only. Used to verify that the initial proper time remains unchanged during the evolution. Determined from the actually removed particles. By construction, tau > 0. Nevertheless it is initialized with a negative number to easily find the first particle that is removed from the evolution in at_interaction().

Definition at line 89 of file icoutput.h.


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