45 #include "Teuchos_Assert.hpp"
46 #include "Intrepid2_CellTools.hpp"
47 #include "Shards_CellTopology.hpp"
53 : intrepidBasis_(intrepidBasis) {
58 iend = dofOrd.extent(0),
59 jend = dofOrd.extent(1);
62 for (
int i=0;i<iend;++i) {
64 for (
int j=0;j<jend;++j) {
65 const int ord = dofOrd(i, j, 0);
67 const int ndofs = dofTag(ord, 3);
69 for (
int k=0;k<ndofs;++k)
83 const shards::CellTopology ct =
intrepidBasis_->getBaseCellTopology();
84 return ct.getSubcellCount(dim);
87 const std::vector<int> &
108 const shards::CellTopology ct =
intrepidBasis_->getBaseCellTopology();
110 std::set<std::pair<unsigned,unsigned> > closure;
114 std::set<std::pair<unsigned,unsigned> >::const_iterator itr;
115 for (itr=closure.begin();itr!=closure.end();++itr) {
117 const std::vector<int> & subcellIndices =
getSubcellIndices(itr->first,itr->second);
120 indices.insert(indices.end(),subcellIndices.begin(),subcellIndices.end());
142 std::vector<unsigned> & nodes)
145 nodes.push_back(subCell);
150 unsigned subCellNodeCount = cellTopo.getNodeCount(dim,subCell);
151 for(
unsigned node=0;node<subCellNodeCount;++node)
152 nodes.push_back(cellTopo.getNodeMap(dim,subCell,node));
155 std::sort(nodes.begin(),nodes.end());
161 const std::vector<unsigned> & nodes,
162 std::set<std::pair<unsigned,unsigned> > & subCells)
164 unsigned subCellCount = cellTopo.getSubcellCount(dim);
165 for(
unsigned subCellOrd=0;subCellOrd<subCellCount;++subCellOrd) {
167 std::vector<unsigned> subCellNodes;
171 bool isSubset = std::includes( nodes.begin(), nodes.end(),
172 subCellNodes.begin(), subCellNodes.end());
174 subCells.insert(std::make_pair(dim,subCellOrd));
188 std::set<std::pair<unsigned,unsigned> > & closure)
192 closure.insert(std::make_pair(0,subCell));
195 closure.insert(std::make_pair(0,cellTopo.getNodeMap(dim,subCell,0)));
196 closure.insert(std::make_pair(0,cellTopo.getNodeMap(dim,subCell,1)));
197 closure.insert(std::make_pair(1,subCell));
201 unsigned cnt = (shards::CellTopology(cellTopo.getCellTopologyData(dim,subCell))).getSubcellCount(dim-1);
202 for(
unsigned i=0;i<cnt;i++) {
203 int edge = mapCellFaceEdge(cellTopo.getCellTopologyData(),subCell,i);
206 closure.insert(std::make_pair(2,subCell));
245 Kokkos::DynRankView<double,PHX::Device> & coords)
const
249 int numCells = cellVertices.extent(0);
252 Kokkos::DynRankView<double,PHX::Device> localCoords;
256 coords = Kokkos::DynRankView<double,PHX::Device>(
"coords",numCells,localCoords.extent(0),
getDimension());
259 Intrepid2::CellTools<PHX::Device> cellTools;
260 cellTools.mapToPhysicalFrame(coords,localCoords,cellVertices,
intrepidBasis_->getBaseCellTopology());