Version: SMASH-3.2
vtkoutput.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2014-2022,2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #ifndef SRC_INCLUDE_SMASH_VTKOUTPUT_H_
11 #define SRC_INCLUDE_SMASH_VTKOUTPUT_H_
12 
13 #include <filesystem>
14 #include <map>
15 #include <memory>
16 #include <string>
17 #include <utility>
18 
19 #include "density.h"
20 #include "forwarddeclarations.h"
21 #include "outputinterface.h"
22 #include "outputparameters.h"
23 
24 namespace smash {
25 
30 class VtkOutput : public OutputInterface {
31  public:
39  VtkOutput(const std::filesystem::path &path, const std::string &name,
40  const OutputParameters &out_par);
41  ~VtkOutput();
42 
51  void at_eventstart(const Particles &particles, const EventLabel &event_label,
52  const EventInfo &event) override;
53 
63  void at_eventend(const Particles &particles, const EventLabel &event_label,
64  const EventInfo &event) override;
65 
75  void at_intermediate_time(const Particles &particles,
76  const std::unique_ptr<Clock> &clock,
77  const DensityParameters &dens_param,
78  const EventLabel &event_label,
79  const EventInfo &event) override;
80 
90  const ThermodynamicQuantity tq, const DensityType dt,
91  RectangularLattice<DensityOnLattice> &lattice) override;
92 
102  const ThermodynamicQuantity tq, const DensityType dt,
103  RectangularLattice<EnergyMomentumTensor> &lattice) override;
104 
111  void thermodynamics_output(const GrandCanThermalizer &gct) override;
112 
114  void fields_output(
115  const std::string name1, const std::string name2,
116  RectangularLattice<std::pair<ThreeVector, ThreeVector>> &lat) override;
117 
118  private:
124  void write(const Particles &particles);
125 
132  std::string make_filename(const std::string &description, int counter);
133 
140  std::string make_varname(const ThermodynamicQuantity tq,
141  const DensityType dens_type);
142 
150  template <typename T>
151  void write_vtk_header(std::ofstream &file, RectangularLattice<T> &lat,
152  const std::string &description);
153 
162  template <typename T, typename F>
163  void write_vtk_scalar(std::ofstream &file, RectangularLattice<T> &lat,
164  const std::string &varname, F &&function);
165 
174  template <typename T, typename F>
175  void write_vtk_vector(std::ofstream &file, RectangularLattice<T> &lat,
176  const std::string &varname, F &&function);
177 
183  std::pair<int, int> counter_key() {
185  }
186 
188  const std::filesystem::path base_path_;
189 
191  int current_event_ = 0;
199  std::map<std::pair<int, int>, int> vtk_output_counter_{};
200 
217 };
218 
219 } // namespace smash
220 
221 #endif // SRC_INCLUDE_SMASH_VTKOUTPUT_H_
A class to pre-calculate and store parameters relevant for density calculation.
Definition: density.h:92
The GrandCanThermalizer class implements the following functionality:
Abstraction of generic output.
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
A container class to hold all the arrays on the lattice and access them.
Definition: lattice.h:49
SMASH output in a paraview format, intended for simple visualization.
Definition: vtkoutput.h:30
void write_vtk_scalar(std::ofstream &file, RectangularLattice< T > &lat, const std::string &varname, F &&function)
Write a VTK scalar.
Definition: vtkoutput.cc:202
int vtk_density_output_counter_
Number of density lattice vtk output in current event.
Definition: vtkoutput.h:202
void fields_output(const std::string name1, const std::string name2, RectangularLattice< std::pair< ThreeVector, ThreeVector >> &lat) override
Write fields in vtk output Fields are a pair of threevectors for example electric and magnetic field.
Definition: vtkoutput.cc:323
bool is_fields_output_
Is the VTK output an output for fields.
Definition: vtkoutput.h:216
std::pair< int, int > counter_key()
Create the key to access the vtk_output_counter_ map.
Definition: vtkoutput.h:183
void write(const Particles &particles)
Write the given particles to the output.
Definition: vtkoutput.cc:97
int vtk_fluidization_counter_
Number of fluidization output.
Definition: vtkoutput.h:210
int current_event_
Event number.
Definition: vtkoutput.h:191
VtkOutput(const std::filesystem::path &path, const std::string &name, const OutputParameters &out_par)
Create a new VTK output.
Definition: vtkoutput.cc:24
int current_ensemble_
Ensemble number.
Definition: vtkoutput.h:193
void write_vtk_header(std::ofstream &file, RectangularLattice< T > &lat, const std::string &description)
Write the VTK header.
Definition: vtkoutput.cc:185
int vtk_fields_output_counter_
Number of fields output in current event.
Definition: vtkoutput.h:212
void write_vtk_vector(std::ofstream &file, RectangularLattice< T > &lat, const std::string &varname, F &&function)
Write a VTK vector.
Definition: vtkoutput.cc:220
std::map< std::pair< int, int >, int > vtk_output_counter_
Counters to keep track of time steps per event and per ensemble.
Definition: vtkoutput.h:199
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Writes the final particle information list of an event to the VTK output.
Definition: vtkoutput.cc:80
std::string make_varname(const ThermodynamicQuantity tq, const DensityType dens_type)
Make a variable name given quantity and density type.
Definition: vtkoutput.cc:240
bool is_thermodynamics_output_
Is the VTK output a thermodynamics output.
Definition: vtkoutput.h:214
int vtk_tmn_landau_output_counter_
Number of Landau frame energy-momentum tensor vtk output in current event.
Definition: vtkoutput.h:206
void thermodynamics_output(const ThermodynamicQuantity tq, const DensityType dt, RectangularLattice< DensityOnLattice > &lattice) override
Prints the density lattice in VTK format on a grid.
Definition: vtkoutput.cc:246
int vtk_v_landau_output_counter_
Number of Landau rest frame velocity vtk output in current event.
Definition: vtkoutput.h:208
void at_intermediate_time(const Particles &particles, const std::unique_ptr< Clock > &clock, const DensityParameters &dens_param, const EventLabel &event_label, const EventInfo &event) override
Writes out all current particles.
Definition: vtkoutput.cc:84
const std::filesystem::path base_path_
filesystem path for output
Definition: vtkoutput.h:188
void at_eventstart(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Writes the initial particle information list of an event to the VTK output.
Definition: vtkoutput.cc:62
std::string make_filename(const std::string &description, int counter)
Make a file name given a description and a counter.
Definition: vtkoutput.cc:233
int vtk_tmn_output_counter_
Number of energy-momentum tensor lattice vtk output in current event.
Definition: vtkoutput.h:204
ThermodynamicQuantity
Represents thermodynamic quantities that can be printed out See user guide description for more infor...
DensityType
Allows to choose which kind of density to calculate.
Definition: action.h:24
Structure to contain custom data for output.
Structure to contain information about the event and ensemble numbers.
Helper structure for Experiment to hold output options and parameters.