Skip to content

Commit

Permalink
removed vestigial integrated_postprocessed_fields
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalsbyx committed Dec 11, 2024
1 parent 5077e2f commit 4d82c8e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions include/core/matrixFreePDE.h
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,6 @@ class MatrixFreePDE : public Subscriptor
/*Timer and logging object*/
mutable TimerOutput computing_timer;

std::vector<double> integrated_postprocessed_fields;

bool first_integrated_var_output_complete;

// Methods and variables for integration
Expand Down
2 changes: 0 additions & 2 deletions src/core/outputResults.cc
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ MatrixFreePDE<dim, degree>::outputResults()
{
output_file << "\t" << pp_variable.name << "\t" << integrated_field;
}
integrated_postprocessed_fields.at(
userInputs.integrated_field_indices[pp_index]) = integrated_field;
}
}
if (Utilities::MPI::this_mpi_process(MPI_COMM_WORLD) == 0)
Expand Down
6 changes: 0 additions & 6 deletions src/core/postprocessing/postprocessor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ MatrixFreePDE<dim, degree>::computePostProcessedFields(
matrixFreeObject.initialize_dof_vector(*U, 0);
}

integrated_postprocessed_fields.clear();
for (unsigned int index = 0; index < userInputs.num_integrated_fields; index++)
{
integrated_postprocessed_fields.push_back(0.0);
}

// call to integrate and assemble
matrixFreeObject.cell_loop(&MatrixFreePDE<dim, degree>::getPostProcessedFields,
this,
Expand Down

0 comments on commit 4d82c8e

Please sign in to comment.