Skip to content
Snippets Groups Projects
Commit 632ec4ca authored by sniklas142's avatar sniklas142 Committed by Cristian Lalescu
Browse files

changed variable name

parent eec00ff2
No related branches found
No related tags found
No related merge requests found
......@@ -102,14 +102,14 @@ int NSVE_field_stats<rnumber>::read_current_cvorticity(void)
return EXIT_SUCCESS;
}
template <typename rnumber>
int NSVE_field_stats<rnumber>::read_arbitrary_cvorticity(int iter)
int NSVE_field_stats<rnumber>::read_arbitrary_cvorticity(int arbitrary_iteration)
{
TIMEZONE("NSVE_field_stats::read_arbitrary_cvorticity");
this->vorticity->real_space_representation = false;
if (this->bin_IO != NULL)
{
char itername[16];
sprintf(itername, "i%.5x", iter);
sprintf(itername, "i%.5x", arbitrary_iteration);
std::string native_binary_fname = (
this->simname +
std::string("_cvorticity_") +
......@@ -123,7 +123,7 @@ int NSVE_field_stats<rnumber>::read_arbitrary_cvorticity(int iter)
this->vorticity->io(
this->simname + std::string("_fields.h5"),
"vorticity",
iter,
arbitrary_iteration,
true);
}
return EXIT_SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment