Version: SMASH-3.2
vtkoutput.cc
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 #include "smash/vtkoutput.h"
11 
12 #include <fstream>
13 #include <memory>
14 #include <utility>
15 
16 #include "smash/clock.h"
17 #include "smash/config.h"
18 #include "smash/file.h"
20 #include "smash/particles.h"
21 
22 namespace smash {
23 
24 VtkOutput::VtkOutput(const std::filesystem::path &path, const std::string &name,
25  const OutputParameters &out_par)
26  : OutputInterface(name),
27  base_path_(std::move(path)),
28  is_thermodynamics_output_(name == "Thermodynamics"),
29  is_fields_output_(name == "Fields") {
30  if (out_par.part_extended) {
31  logg[LOutput].warn()
32  << "Creating VTK output: There is no extended VTK format.";
33  }
34 }
35 
37 
62 void VtkOutput::at_eventstart(const Particles &particles,
63  const EventLabel &event_label,
64  const EventInfo &) {
70 
71  current_event_ = event_label.event_number;
72  current_ensemble_ = event_label.ensemble_number;
75  write(particles);
77  }
78 }
79 
80 void VtkOutput::at_eventend(const Particles & /*particles*/,
81  const EventLabel & /*event_number*/,
82  const EventInfo &) {}
83 
85  const std::unique_ptr<Clock> &,
86  const DensityParameters &,
87  const EventLabel &event_label,
88  const EventInfo &) {
89  current_event_ = event_label.event_number;
90  current_ensemble_ = event_label.ensemble_number;
92  write(particles);
94  }
95 }
96 
97 void VtkOutput::write(const Particles &particles) {
98  char filename[64];
99  snprintf(filename, sizeof(filename), "pos_ev%05i_ens%05i_tstep%05i.vtk",
102  FilePtr file_{std::fopen((base_path_ / filename).native().c_str(), "w")};
103 
104  /* Legacy VTK file format */
105  std::fprintf(file_.get(), "# vtk DataFile Version 2.0\n");
106  std::fprintf(file_.get(), "Generated from molecular-offset data %s\n",
107  SMASH_VERSION);
108  std::fprintf(file_.get(), "ASCII\n");
109 
110  /* Unstructured data sets are composed of points, lines, polygons, .. */
111  std::fprintf(file_.get(), "DATASET UNSTRUCTURED_GRID\n");
112  std::fprintf(file_.get(), "POINTS %zu double\n", particles.size());
113  for (const auto &p : particles) {
114  std::fprintf(file_.get(), "%g %g %g\n", p.position().x1(),
115  p.position().x2(), p.position().x3());
116  }
117  std::fprintf(file_.get(), "CELLS %zu %zu\n", particles.size(),
118  particles.size() * 2);
119  for (size_t point_index = 0; point_index < particles.size(); point_index++) {
120  std::fprintf(file_.get(), "1 %zu\n", point_index);
121  }
122  std::fprintf(file_.get(), "CELL_TYPES %zu\n", particles.size());
123  for (size_t point_index = 0; point_index < particles.size(); point_index++) {
124  std::fprintf(file_.get(), "1\n");
125  }
126  std::fprintf(file_.get(), "POINT_DATA %zu\n", particles.size());
127  std::fprintf(file_.get(), "SCALARS pdg_codes int 1\n");
128  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
129  for (const auto &p : particles) {
130  std::fprintf(file_.get(), "%s\n", p.pdgcode().string().c_str());
131  }
132  std::fprintf(file_.get(), "SCALARS is_formed int 1\n");
133  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
134  double current_time = particles.time();
135  for (const auto &p : particles) {
136  std::fprintf(file_.get(), "%s\n",
137  (p.formation_time() > current_time) ? "0" : "1");
138  }
139  std::fprintf(file_.get(), "SCALARS cross_section_scaling_factor double 1\n");
140  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
141  for (const auto &p : particles) {
142  std::fprintf(file_.get(), "%g\n", p.xsec_scaling_factor());
143  }
144  std::fprintf(file_.get(), "SCALARS mass double 1\n");
145  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
146  for (const auto &p : particles) {
147  std::fprintf(file_.get(), "%g\n", p.effective_mass());
148  }
149  std::fprintf(file_.get(), "SCALARS N_coll int 1\n");
150  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
151  for (const auto &p : particles) {
152  std::fprintf(file_.get(), "%i\n", p.get_history().collisions_per_particle);
153  }
154  std::fprintf(file_.get(), "SCALARS particle_ID int 1\n");
155  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
156  for (const auto &p : particles) {
157  std::fprintf(file_.get(), "%i\n", p.id());
158  }
159  std::fprintf(file_.get(), "SCALARS baryon_number int 1\n");
160  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
161  for (const auto &p : particles) {
162  std::fprintf(file_.get(), "%i\n", p.pdgcode().baryon_number());
163  }
164  std::fprintf(file_.get(), "SCALARS strangeness int 1\n");
165  std::fprintf(file_.get(), "LOOKUP_TABLE default\n");
166  for (const auto &p : particles) {
167  std::fprintf(file_.get(), "%i\n", p.pdgcode().strangeness());
168  }
169  std::fprintf(file_.get(), "VECTORS momentum double\n");
170  for (const auto &p : particles) {
171  std::fprintf(file_.get(), "%g %g %g\n", p.momentum().x1(),
172  p.momentum().x2(), p.momentum().x3());
173  }
174 }
175 
184 template <typename T>
185 void VtkOutput::write_vtk_header(std::ofstream &file,
186  RectangularLattice<T> &lattice,
187  const std::string &description) {
188  const auto dim = lattice.n_cells();
189  const auto cs = lattice.cell_sizes();
190  const auto orig = lattice.origin();
191  file << "# vtk DataFile Version 2.0\n"
192  << description << "\n"
193  << "ASCII\n"
194  << "DATASET STRUCTURED_POINTS\n"
195  << "DIMENSIONS " << dim[0] << " " << dim[1] << " " << dim[2] << "\n"
196  << "SPACING " << cs[0] << " " << cs[1] << " " << cs[2] << "\n"
197  << "ORIGIN " << orig[0] << " " << orig[1] << " " << orig[2] << "\n"
198  << "POINT_DATA " << lattice.size() << "\n";
199 }
200 
201 template <typename T, typename F>
202 void VtkOutput::write_vtk_scalar(std::ofstream &file,
203  RectangularLattice<T> &lattice,
204  const std::string &varname, F &&get_quantity) {
205  file << "SCALARS " << varname << " double 1\n"
206  << "LOOKUP_TABLE default\n";
207  file << std::setprecision(3);
208  file << std::fixed;
209  const auto dim = lattice.n_cells();
210  lattice.iterate_sublattice({0, 0, 0}, dim, [&](T &node, int ix, int, int) {
211  const double f_from_node = get_quantity(node);
212  file << f_from_node << " ";
213  if (ix == dim[0] - 1) {
214  file << "\n";
215  }
216  });
217 }
218 
219 template <typename T, typename F>
220 void VtkOutput::write_vtk_vector(std::ofstream &file,
221  RectangularLattice<T> &lattice,
222  const std::string &varname, F &&get_quantity) {
223  file << "VECTORS " << varname << " double\n";
224  file << std::setprecision(3);
225  file << std::fixed;
226  const auto dim = lattice.n_cells();
227  lattice.iterate_sublattice({0, 0, 0}, dim, [&](T &node, int, int, int) {
228  const ThreeVector v = get_quantity(node);
229  file << v.x1() << " " << v.x2() << " " << v.x3() << "\n";
230  });
231 }
232 
233 std::string VtkOutput::make_filename(const std::string &descr, int counter) {
234  char suffix[22];
235  snprintf(suffix, sizeof(suffix), "_%05i_tstep%05i.vtk", current_event_,
236  counter);
237  return base_path_.string() + std::string("/") + descr + std::string(suffix);
238 }
239 
241  const DensityType dens_type) {
242  return std::string(to_string(dens_type)) + std::string("_") +
243  std::string(to_string(tq));
244 }
245 
247  const ThermodynamicQuantity tq, const DensityType dens_type,
250  return;
251  }
252  std::ofstream file;
253  const std::string varname = make_varname(tq, dens_type);
254  file.open(make_filename(varname, vtk_density_output_counter_), std::ios::out);
255  write_vtk_header(file, lattice, varname);
256  write_vtk_scalar(file, lattice, varname,
257  [&](DensityOnLattice &node) { return node.rho(); });
259 }
260 
276  const ThermodynamicQuantity tq, const DensityType dens_type,
279  return;
280  }
281  std::ofstream file;
282  const std::string varname = make_varname(tq, dens_type);
283 
284  if (tq == ThermodynamicQuantity::Tmn) {
285  file.open(make_filename(varname, vtk_tmn_output_counter_++), std::ios::out);
286  write_vtk_header(file, Tmn_lattice, varname);
287  for (int i = 0; i < 4; i++) {
288  for (int j = i; j < 4; j++) {
289  write_vtk_scalar(file, Tmn_lattice,
290  varname + std::to_string(i) + std::to_string(j),
291  [&](EnergyMomentumTensor &node) {
292  return node[EnergyMomentumTensor::tmn_index(i, j)];
293  });
294  }
295  }
296  } else if (tq == ThermodynamicQuantity::TmnLandau) {
297  file.open(make_filename(varname, vtk_tmn_landau_output_counter_++),
298  std::ios::out);
299  write_vtk_header(file, Tmn_lattice, varname);
300  for (int i = 0; i < 4; i++) {
301  for (int j = i; j < 4; j++) {
302  write_vtk_scalar(file, Tmn_lattice,
303  varname + std::to_string(i) + std::to_string(j),
304  [&](EnergyMomentumTensor &node) {
305  const FourVector u = node.landau_frame_4velocity();
306  const EnergyMomentumTensor Tmn_L = node.boosted(u);
307  return Tmn_L[EnergyMomentumTensor::tmn_index(i, j)];
308  });
309  }
310  }
311  } else {
312  file.open(make_filename(varname, vtk_v_landau_output_counter_++),
313  std::ios::out);
314  write_vtk_header(file, Tmn_lattice, varname);
315  write_vtk_vector(file, Tmn_lattice, varname,
316  [&](EnergyMomentumTensor &node) {
317  const FourVector u = node.landau_frame_4velocity();
318  return -u.velocity();
319  });
320  }
321 }
322 
324  const std::string name1, const std::string name2,
325  RectangularLattice<std::pair<ThreeVector, ThreeVector>> &lat) {
326  if (!is_fields_output_) {
327  return;
328  }
329  std::ofstream file1;
330  file1.open(make_filename(name1, vtk_fields_output_counter_), std::ios::out);
331  write_vtk_header(file1, lat, name1);
333  file1, lat, name1,
334  [&](std::pair<ThreeVector, ThreeVector> &node) { return node.first; });
335  std::ofstream file2;
336  file2.open(make_filename(name2, vtk_fields_output_counter_), std::ios::out);
337  write_vtk_header(file2, lat, name2);
339  file2, lat, name2,
340  [&](std::pair<ThreeVector, ThreeVector> &node) { return node.second; });
342 }
343 
346  return;
347  }
348  std::ofstream file;
349  file.open(make_filename("fluidization_td", vtk_fluidization_counter_++),
350  std::ios::out);
351  write_vtk_header(file, gct.lattice(), "fluidization_td");
352  write_vtk_scalar(file, gct.lattice(), "e",
353  [&](ThermLatticeNode &node) { return node.e(); });
354  write_vtk_scalar(file, gct.lattice(), "p",
355  [&](ThermLatticeNode &node) { return node.p(); });
356  write_vtk_vector(file, gct.lattice(), "v",
357  [&](ThermLatticeNode &node) { return node.v(); });
358  write_vtk_scalar(file, gct.lattice(), "T",
359  [&](ThermLatticeNode &node) { return node.T(); });
360  write_vtk_scalar(file, gct.lattice(), "mub",
361  [&](ThermLatticeNode &node) { return node.mub(); });
362  write_vtk_scalar(file, gct.lattice(), "mus",
363  [&](ThermLatticeNode &node) { return node.mus(); });
364 }
365 
366 } // namespace smash
A class for time-efficient (time-memory trade-off) calculation of density on the lattice.
Definition: density.h:299
double rho(const double norm_factor=1.0)
Compute the net Eckart density on the local lattice.
Definition: density.h:368
A class to pre-calculate and store parameters relevant for density calculation.
Definition: density.h:92
The EnergyMomentumTensor class represents a symmetric positive semi-definite energy-momentum tensor .
EnergyMomentumTensor boosted(const FourVector &u) const
Boost to a given 4-velocity.
FourVector landau_frame_4velocity() const
Find the Landau frame 4-velocity from energy-momentum tensor.
static std::int8_t tmn_index(std::int8_t mu, std::int8_t nu)
Access the index of component .
The FourVector class holds relevant values in Minkowski spacetime with (+, −, −, −) metric signature.
Definition: fourvector.h:33
ThreeVector velocity() const
Get the velocity (3-vector divided by zero component).
Definition: fourvector.h:333
The GrandCanThermalizer class implements the following functionality:
RectangularLattice< ThermLatticeNode > & lattice() const
Getter function for the lattice.
Abstraction of generic output.
const char * to_string(const ThermodynamicQuantity tq)
Convert thermodynamic quantities to strings.
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
double time() const
Returns the time of the computational frame.
Definition: particles.h:100
size_t size() const
Definition: particles.h:87
A container class to hold all the arrays on the lattice and access them.
Definition: lattice.h:49
const std::array< double, 3 > & origin() const
Definition: lattice.h:165
const std::array< int, 3 > & n_cells() const
Definition: lattice.h:159
void iterate_sublattice(const std::array< int, 3 > &lower_bounds, const std::array< int, 3 > &upper_bounds, F &&func)
A sub-lattice iterator, which iterates in a 3D-structured manner and calls a function on every cell.
Definition: lattice.h:581
std::size_t size() const
Definition: lattice.h:190
const std::array< double, 3 > & cell_sizes() const
Definition: lattice.h:162
The ThermLatticeNode class is intended to compute thermodynamical quantities in a cell given a set of...
The ThreeVector class represents a physical three-vector with the components .
Definition: threevector.h:31
double x3() const
Definition: threevector.h:185
double x2() const
Definition: threevector.h:181
double x1() const
Definition: threevector.h:177
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...
@ Tmn
Energy-momentum tensor in lab frame.
@ TmnLandau
Energy-momentum tensor in Landau rest frame.
DensityType
Allows to choose which kind of density to calculate.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
constexpr int p
Proton.
Definition: action.h:24
std::unique_ptr< std::FILE, FileDeleter > FilePtr
A RAII type to replace std::FILE *.
Definition: file.h:61
FilePtr fopen(const std::filesystem::path &filename, const std::string &mode)
Open a file with given mode.
Definition: file.cc:14
static constexpr int LOutput
Structure to contain custom data for output.
Structure to contain information about the event and ensemble numbers.
int32_t ensemble_number
The number of the ensemble.
int32_t event_number
The number of the event.
Helper structure for Experiment to hold output options and parameters.
bool part_extended
Extended format for particles output.