From 60a0b9e791db752fe0a671d9aa2bb84863dd13c7 Mon Sep 17 00:00:00 2001 From: Derek Gaston Date: Sat, 14 Apr 2018 17:08:10 -0600 Subject: [PATCH] Addressing comments refs #11274 --- .../systems/AuxKernels/VectorPostprocessorVisualizationAux.md | 2 +- framework/src/auxkernels/VectorPostprocessorVisualizationAux.C | 2 -- framework/src/problems/FEProblemBase.C | 2 -- framework/src/vectorpostprocessors/WorkBalance.C | 2 -- .../vector_postprocessor_visualization.i | 2 +- 5 files changed, 2 insertions(+), 8 deletions(-) diff --git a/framework/doc/content/documentation/systems/AuxKernels/VectorPostprocessorVisualizationAux.md b/framework/doc/content/documentation/systems/AuxKernels/VectorPostprocessorVisualizationAux.md index 1686c53a3ef1..be0227eaba37 100644 --- a/framework/doc/content/documentation/systems/AuxKernels/VectorPostprocessorVisualizationAux.md +++ b/framework/doc/content/documentation/systems/AuxKernels/VectorPostprocessorVisualizationAux.md @@ -12,7 +12,7 @@ This object is intended to let you view VectorPostprocessor vectors that are of Note: the VectorPostprocessor must be syncing the vectors it's computing to all processors. By default many just compute to processor 0 (because that's where output occurrs). -For instance: this is the case for [WorkBalance]. By default it only syncs to processor 0, but it has a parameter (`sync_to_all_procs`) to tell it to create copies of the vectors on all processors. +For instance: this is the case for [WorkBalance](WorkBalance.md). By default it only syncs to processor 0, but it has a parameter (`sync_to_all_procs`) to tell it to create copies of the vectors on all processors. !syntax parameters /AuxKernels/VectorPostprocessorVisualizationAux diff --git a/framework/src/auxkernels/VectorPostprocessorVisualizationAux.C b/framework/src/auxkernels/VectorPostprocessorVisualizationAux.C index d06082f3dac4..d52dccea0d55 100644 --- a/framework/src/auxkernels/VectorPostprocessorVisualizationAux.C +++ b/framework/src/auxkernels/VectorPostprocessorVisualizationAux.C @@ -35,8 +35,6 @@ VectorPostprocessorVisualizationAux::VectorPostprocessorVisualizationAux( _vpp_vector(getVectorPostprocessorValue("vpp", getParam("vector_name"))), _my_pid(processor_id()) { - std::cout << "In Aux" << std::endl; - std::cout << "_vpp_vector: " << &_vpp_vector << std::endl; } void diff --git a/framework/src/problems/FEProblemBase.C b/framework/src/problems/FEProblemBase.C index 05aa995301cf..ee4ff64723ce 100644 --- a/framework/src/problems/FEProblemBase.C +++ b/framework/src/problems/FEProblemBase.C @@ -2720,9 +2720,7 @@ VectorPostprocessorValue & FEProblemBase::getVectorPostprocessorValue(const VectorPostprocessorName & name, const std::string & vector_name) { - std::cout << "Getting: " << name << ": " << vector_name << std::endl; auto & val = _vpps_data.getVectorPostprocessorValue(name, vector_name); - std::cout << &val << std::endl; return val; } diff --git a/framework/src/vectorpostprocessors/WorkBalance.C b/framework/src/vectorpostprocessors/WorkBalance.C index 3d7249a0d385..d9cdd2627aae 100644 --- a/framework/src/vectorpostprocessors/WorkBalance.C +++ b/framework/src/vectorpostprocessors/WorkBalance.C @@ -60,8 +60,6 @@ WorkBalance::WorkBalance(const InputParameters & parameters) _num_partition_sides(declareVector("num_partition_sides")), _partition_surface_area(declareVector("partition_surface_area")) { - std::cout << "In WorkBalance" << std::endl; - std::cout << "num_elems: " << &_num_elems << std::endl; } void diff --git a/test/tests/auxkernels/vector_postprocessor_visualization/vector_postprocessor_visualization.i b/test/tests/auxkernels/vector_postprocessor_visualization/vector_postprocessor_visualization.i index bd1e4bdbd7a1..f76a7640ebad 100644 --- a/test/tests/auxkernels/vector_postprocessor_visualization/vector_postprocessor_visualization.i +++ b/test/tests/auxkernels/vector_postprocessor_visualization/vector_postprocessor_visualization.i @@ -79,4 +79,4 @@ sync_to_all_procs = 'true' execute_on = 'INITIAL' [] -[] \ No newline at end of file +[]