Skip to content

Commit

Permalink
Fix parallel vector layout
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscn committed Feb 1, 2021
1 parent 316c201 commit 15fee79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/mf_elasticity.h
Original file line number Diff line number Diff line change
Expand Up @@ -1141,11 +1141,13 @@ namespace FSI
*mf_data_reference->get_vector_partitioner().get()),
ExcInternalError());

// TODO: Use initialize_dof_vector
adjust_ghost_range_if_necessary(partitioner, newton_update);
adjust_ghost_range_if_necessary(partitioner, system_rhs);

adjust_ghost_range_if_necessary(partitioner, total_displacement);
adjust_ghost_range_if_necessary(partitioner, acceleration);
total_displacement.update_ghost_values();
acceleration.update_ghost_values();
}
else
// FIXME: interpolate_to_mg will resize MG vector, make sure it has the
Expand Down

0 comments on commit 15fee79

Please sign in to comment.