From: Michael P. <mpo...@pu...> - 2017-11-15 04:05:41
|
Dear Libmesh community, I would like to output a nodal data stored in NumericVector, using void libMesh::MeshOutput< MT >::write_nodal_data ( const std::string & fname, const NumericVector< Number > & parallel_soln, const std::vector< std::string > & names ) I need to fill NumericVector with values. As far as I understand, I need to provide data both for active and non-active nodes, because the NumericVector contains entities for all local nodes. Questions: 1. Will I get correct order if I iterate from mesh.local_nodes_begin() to mesh.local_nodes_end() ? 2. Will the values I set for non active nodes matter for the output? Thank you, Michael. |