Go to the documentation of this file.00001
00002
00003
00004
00005
00006 #ifndef MOR_STKNODALMESHREDUCTION_HPP
00007 #define MOR_STKNODALMESHREDUCTION_HPP
00008
00009 #include "stk_mesh/base/BulkData.hpp"
00010 #include "stk_mesh/base/Part.hpp"
00011
00012 #include "Teuchos_ArrayView.hpp"
00013
00014 namespace MOR {
00015
00016 void addNodesToPart(
00017 const Teuchos::ArrayView<const stk::mesh::EntityId> &nodeIds,
00018 stk::mesh::Part &samplePart,
00019 stk::mesh::BulkData& bulkData);
00020
00021 void performNodalMeshReduction(
00022 stk::mesh::Part &samplePart,
00023 stk::mesh::BulkData& bulkData);
00024
00025 }
00026
00027 #endif