Skip to content

Commit

Permalink
Update function names in VTK writer.
Browse files Browse the repository at this point in the history
  • Loading branch information
aprilnovak committed Aug 6, 2019
1 parent 45fbd7f commit c4c9b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vtk_viz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ void SurrogateVtkWriter::write_data(ofstream& vtk_file)
for (size_t i = 0; i < n_axial_sections_; i++) {
for (size_t j = 0; j < n_radial_fuel_sections_; j++) {
for (size_t k = 0; k < radial_res_; k++) {
vtk_file << surrogate_.temperature(pin, i, j) << "\n";
vtk_file << surrogate_.solid_temperature(pin, i, j) << "\n";
}
}
}
Expand All @@ -265,7 +265,7 @@ void SurrogateVtkWriter::write_data(ofstream& vtk_file)
for (size_t i = 0; i < n_axial_sections_; i++) {
for (size_t j = 0; j < n_radial_clad_sections_; j++) {
for (size_t k = 0; k < radial_res_; k++) {
vtk_file << surrogate_.temperature(pin, i, j + n_radial_fuel_sections_)
vtk_file << surrogate_.solid_temperature(pin, i, j + n_radial_fuel_sections_)
<< "\n";
}
}
Expand Down

0 comments on commit c4c9b00

Please sign in to comment.