Skip to content

Commit

Permalink
Addressing comments refs #11274
Browse files Browse the repository at this point in the history
  • Loading branch information
friedmud committed May 3, 2018
1 parent 7e899ce commit 60a0b9e
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 8 deletions.
Expand Up @@ -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

Expand Down
Expand Up @@ -35,8 +35,6 @@ VectorPostprocessorVisualizationAux::VectorPostprocessorVisualizationAux(
_vpp_vector(getVectorPostprocessorValue("vpp", getParam<std::string>("vector_name"))),
_my_pid(processor_id())
{
std::cout << "In Aux" << std::endl;
std::cout << "_vpp_vector: " << &_vpp_vector << std::endl;
}

void
Expand Down
2 changes: 0 additions & 2 deletions framework/src/problems/FEProblemBase.C
Expand Up @@ -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;
}

Expand Down
2 changes: 0 additions & 2 deletions framework/src/vectorpostprocessors/WorkBalance.C
Expand Up @@ -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
Expand Down
Expand Up @@ -79,4 +79,4 @@
sync_to_all_procs = 'true'
execute_on = 'INITIAL'
[]
[]
[]

0 comments on commit 60a0b9e

Please sign in to comment.