|
Panzer Version of the Day
|
#include <Panzer_STK_CubeHexMeshFactory.hpp>

Public Member Functions | |
| CubeHexMeshFactory () | |
| Constructor. | |
| virtual | ~CubeHexMeshFactory () |
| Destructor. | |
| Teuchos::RCP< STK_Interface > | buildMesh (stk::ParallelMachine parallelMach) const |
| Build the mesh object. | |
| virtual Teuchos::RCP< STK_Interface > | buildUncommitedMesh (stk::ParallelMachine parallelMach) const |
| virtual void | completeMeshConstruction (STK_Interface &mesh, stk::ParallelMachine parallelMach) const |
| void | setParameterList (const Teuchos::RCP< Teuchos::ParameterList > ¶mList) |
| From ParameterListAcceptor. | |
| Teuchos::RCP< const Teuchos::ParameterList > | getValidParameters () const |
| From ParameterListAcceptor. | |
| Teuchos::Tuple< std::size_t, 3 > | procRankToProcTuple (std::size_t procRank) const |
| what is the 3D tuple describe this processor distribution | |
Public Member Functions inherited from panzer_stk::STK_MeshFactory | |
| STK_MeshFactory () | |
| void | enableRebalance (bool enable, const Teuchos::RCP< const Teuchos::ParameterList > &rebalanceList=Teuchos::null) |
| void | rebalance (STK_Interface &mesh) const |
| double | getMeshCoord (const int nx, const double deltaX, const double x0) const |
Protected Member Functions | |
| void | initializeWithDefaults () |
| void | buildMetaData (stk::ParallelMachine parallelMach, STK_Interface &mesh) const |
| void | buildElements (stk::ParallelMachine parallelMach, STK_Interface &mesh) const |
| void | buildBlock (stk::ParallelMachine machRank, int xBlock, int yBlock, int zBlock, STK_Interface &mesh) const |
| std::pair< panzer::GlobalOrdinal, panzer::GlobalOrdinal > | determineXElemSizeAndStart (int xBlock, unsigned int size, unsigned int rank) const |
| std::pair< panzer::GlobalOrdinal, panzer::GlobalOrdinal > | determineYElemSizeAndStart (int yBlock, unsigned int size, unsigned int rank) const |
| std::pair< panzer::GlobalOrdinal, panzer::GlobalOrdinal > | determineZElemSizeAndStart (int zBlock, unsigned int size, unsigned int rank) const |
| void | addSides (STK_Interface &mesh) const |
| void | addSideSets (STK_Interface &mesh) const |
| void | addNodeSets (STK_Interface &mesh) const |
| void | addEdgeBlocks (STK_Interface &mesh) const |
| void | addFaceBlocks (STK_Interface &mesh) const |
Protected Attributes | |
| double | x0_ |
| double | y0_ |
| double | z0_ |
| double | xf_ |
| double | yf_ |
| double | zf_ |
| int | xBlocks_ |
| int | yBlocks_ |
| int | zBlocks_ |
| panzer::GlobalOrdinal | nXElems_ |
| panzer::GlobalOrdinal | nYElems_ |
| panzer::GlobalOrdinal | nZElems_ |
| int | xProcs_ |
| int | yProcs_ |
| int | zProcs_ |
| unsigned int | machRank_ |
| unsigned int | machSize_ |
| bool | buildInterfaceSidesets_ |
| bool | buildSubcells_ |
| bool | createEdgeBlocks_ |
| bool | createFaceBlocks_ |
| Teuchos::Tuple< std::size_t, 3 > | procTuple_ |
| std::string | edgeBlockName_ |
| std::string | faceBlockName_ |
Protected Attributes inherited from panzer_stk::STK_MeshFactory | |
| std::vector< Teuchos::RCP< const PeriodicBC_MatcherBase > > | periodicBCVec_ |
| bool | useBBoxSearch_ |
| bool | enableRebalance_ |
| Teuchos::RCP< const Teuchos::ParameterList > | rebalanceList_ |
Additional Inherited Members | |
Static Public Member Functions inherited from panzer_stk::STK_MeshFactory | |
| static void | parsePeriodicBCList (const Teuchos::RCP< Teuchos::ParameterList > &pl, std::vector< Teuchos::RCP< const PeriodicBC_MatcherBase > > &periodicBC, bool &useBBoxSearch) |
This builds a parallel mesh object. Note that the local IDs are ordered by going up the z, then y axis and across the X-axis (in that order). See the SquareQuad mesh factory for more information.
Definition at line 27 of file Panzer_STK_CubeHexMeshFactory.hpp.
| panzer_stk::CubeHexMeshFactory::CubeHexMeshFactory | ( | ) |
Constructor.
Definition at line 21 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
virtual |
Destructor.
Definition at line 27 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
virtual |
Build the mesh object.
Implements panzer_stk::STK_MeshFactory.
Definition at line 32 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
virtual |
This builds all the meta data of the mesh. Does not call metaData->commit. Allows user to add solution fields and other pieces. The mesh can be "completed" by calling completeMeshConstruction.
Implements panzer_stk::STK_MeshFactory.
Definition at line 48 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
virtual |
Finishes building a mesh object started by buildUncommitedMesh.
Implements panzer_stk::STK_MeshFactory.
Definition at line 116 of file Panzer_STK_CubeHexMeshFactory.cpp.
| void panzer_stk::CubeHexMeshFactory::setParameterList | ( | const Teuchos::RCP< Teuchos::ParameterList > & | paramList | ) |
From ParameterListAcceptor.
Definition at line 169 of file Panzer_STK_CubeHexMeshFactory.cpp.
| Teuchos::RCP< const Teuchos::ParameterList > panzer_stk::CubeHexMeshFactory::getValidParameters | ( | ) | const |
From ParameterListAcceptor.
Definition at line 223 of file Panzer_STK_CubeHexMeshFactory.cpp.
| Teuchos::Tuple< std::size_t, 3 > panzer_stk::CubeHexMeshFactory::procRankToProcTuple | ( | std::size_t | procRank | ) | const |
what is the 3D tuple describe this processor distribution
Convert processor rank to a tuple.
Definition at line 766 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 266 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 283 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 347 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 361 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 424 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 447 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 473 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 499 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 567 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 719 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 735 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 751 of file Panzer_STK_CubeHexMeshFactory.cpp.
|
protected |
Definition at line 67 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 67 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 67 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 68 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 68 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 68 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 70 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 70 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 70 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 72 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 72 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 72 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
mutableprotected |
Definition at line 74 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 74 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 74 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
mutableprotected |
Definition at line 76 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 76 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 78 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 79 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 80 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 81 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
mutableprotected |
Definition at line 83 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 85 of file Panzer_STK_CubeHexMeshFactory.hpp.
|
protected |
Definition at line 86 of file Panzer_STK_CubeHexMeshFactory.hpp.