Panzer
Version of the Day
Toggle main menu visibility
Loading...
Searching...
No Matches
adapters-stk
src
stk_interface
Panzer_STK_MeshFactory.hpp
Go to the documentation of this file.
1
// @HEADER
2
// ***********************************************************************
3
//
4
// Panzer: A partial differential equation assembly
5
// engine for strongly coupled complex multiphysics systems
6
// Copyright (2011) Sandia Corporation
7
//
8
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9
// the U.S. Government retains certain rights in this software.
10
//
11
// Redistribution and use in source and binary forms, with or without
12
// modification, are permitted provided that the following conditions are
13
// met:
14
//
15
// 1. Redistributions of source code must retain the above copyright
16
// notice, this list of conditions and the following disclaimer.
17
//
18
// 2. Redistributions in binary form must reproduce the above copyright
19
// notice, this list of conditions and the following disclaimer in the
20
// documentation and/or other materials provided with the distribution.
21
//
22
// 3. Neither the name of the Corporation nor the names of the
23
// contributors may be used to endorse or promote products derived from
24
// this software without specific prior written permission.
25
//
26
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
//
38
// Questions? Contact Roger P. Pawlowski (rppawlo@sandia.gov) and
39
// Eric C. Cyr (eccyr@sandia.gov)
40
// ***********************************************************************
41
// @HEADER
42
43
#ifndef Panzer_STK_MeshFactory_hpp__
44
#define Panzer_STK_MeshFactory_hpp__
45
46
#include <Teuchos_RCP.hpp>
47
#include <Teuchos_ParameterListAcceptorDefaultBase.hpp>
48
49
#include <stk_util/parallel/Parallel.hpp>
50
51
#include "
Panzer_STK_PeriodicBC_Parser.hpp
"
52
53
namespace
panzer_stk
{
54
55
class
STK_Interface
;
56
60
class
STK_MeshFactory
:
public
Teuchos::ParameterListAcceptorDefaultBase {
61
public
:
62
STK_MeshFactory
() :
enableRebalance_
(false) {}
63
72
virtual
Teuchos::RCP<STK_Interface>
buildMesh
(stk::ParallelMachine parallelMach)
const
= 0;
73
78
virtual
Teuchos::RCP<STK_Interface>
buildUncommitedMesh
(stk::ParallelMachine parallelMach)
const
= 0;
79
82
virtual
void
completeMeshConstruction
(
STK_Interface
& mesh,stk::ParallelMachine parallelMach)
const
= 0;
83
87
static
void
parsePeriodicBCList
(
const
Teuchos::RCP<Teuchos::ParameterList> & pl,
88
std::vector<Teuchos::RCP<const PeriodicBC_MatcherBase> > & periodicBC,
89
bool
& useBBoxSearch)
90
{
91
panzer_stk::PeriodicBC_Parser
parser;
92
parser.
setParameterList
(pl);
93
periodicBC = parser.
getMatchers
();
94
useBBoxSearch = parser.
useBoundingBoxSearch
();
95
}
96
97
void
enableRebalance
(
bool
enable,
const
Teuchos::RCP<const Teuchos::ParameterList> & rebalanceList=Teuchos::null)
98
{
enableRebalance_
= enable;
99
rebalanceList_
= rebalanceList; }
100
101
void
rebalance
(
STK_Interface
& mesh)
const
102
{
103
if
(
rebalanceList_
!=Teuchos::null) {
104
// loop over user specified partitioning lists
105
for
(Teuchos::ParameterList::ConstIterator itr=
rebalanceList_
->begin();
106
itr!=
rebalanceList_
->end();++itr) {
107
108
const
Teuchos::ParameterEntry & entry =
rebalanceList_
->entry(itr);
109
TEUCHOS_TEST_FOR_EXCEPTION(!entry.isList(),std::runtime_error,
110
"Rebalance list is incorrect:\n"
<< entry <<
"\nA Zoltan list formated with strings is expected."
);
111
112
// partition according to the list
113
mesh.
rebalance
(Teuchos::getValue<Teuchos::ParameterList>(entry));
114
115
// rebuild mesh internals
116
mesh.
buildLocalElementIDs
();
117
}
118
}
119
else
if
(
enableRebalance_
) {
120
// do the default thing, once
121
Teuchos::ParameterList emptyList;
122
mesh.
rebalance
(emptyList);
123
124
// rebuild mesh internals
125
mesh.
buildLocalElementIDs
();
126
}
127
}
128
129
double
getMeshCoord
(
const
int
nx,
const
double
deltaX,
const
double
x0)
const
{
130
double
x =
static_cast<
double
>
(nx)*deltaX;
131
double
modX = std::abs(x);
132
double
modX0 = std::abs(x0);
133
double
val = x+x0;
134
if
((x0*x < 0.0) && (std::abs(modX-modX0) < std::numeric_limits<double>::epsilon()*modX0)) val=0.0;
135
return
(val);
136
}
137
138
protected
:
139
// vector of periodic boundary condition objects
140
std::vector<Teuchos::RCP<const PeriodicBC_MatcherBase> >
periodicBCVec_
;
141
// flag indicating which periodic search algorithm to use (bounding box or direct search)
142
bool
useBBoxSearch_
;
143
144
// for managing rebalance
145
bool
enableRebalance_
;
146
Teuchos::RCP<const Teuchos::ParameterList>
rebalanceList_
;
147
};
148
149
}
150
151
#endif
Panzer_STK_PeriodicBC_Parser.hpp
panzer_stk::PeriodicBC_Parser
Definition
Panzer_STK_PeriodicBC_Parser.hpp:61
panzer_stk::PeriodicBC_Parser::getMatchers
const std::vector< Teuchos::RCP< const PeriodicBC_MatcherBase > > & getMatchers() const
Definition
Panzer_STK_PeriodicBC_Parser.cpp:60
panzer_stk::PeriodicBC_Parser::useBoundingBoxSearch
const bool & useBoundingBoxSearch() const
Definition
Panzer_STK_PeriodicBC_Parser.cpp:65
panzer_stk::PeriodicBC_Parser::setParameterList
void setParameterList(const Teuchos::RCP< Teuchos::ParameterList > &pl)
Definition
Panzer_STK_PeriodicBC_Parser.cpp:70
panzer_stk::STK_Interface
Definition
Panzer_STK_Interface.hpp:104
panzer_stk::STK_Interface::rebalance
void rebalance(const Teuchos::ParameterList ¶ms)
Definition
Panzer_STK_Interface.cpp:2034
panzer_stk::STK_Interface::buildLocalElementIDs
void buildLocalElementIDs()
Definition
Panzer_STK_Interface.cpp:1744
panzer_stk::STK_MeshFactory::enableRebalance_
bool enableRebalance_
Definition
Panzer_STK_MeshFactory.hpp:145
panzer_stk::STK_MeshFactory::STK_MeshFactory
STK_MeshFactory()
Definition
Panzer_STK_MeshFactory.hpp:62
panzer_stk::STK_MeshFactory::buildMesh
virtual Teuchos::RCP< STK_Interface > buildMesh(stk::ParallelMachine parallelMach) const =0
panzer_stk::STK_MeshFactory::completeMeshConstruction
virtual void completeMeshConstruction(STK_Interface &mesh, stk::ParallelMachine parallelMach) const =0
panzer_stk::STK_MeshFactory::rebalance
void rebalance(STK_Interface &mesh) const
Definition
Panzer_STK_MeshFactory.hpp:101
panzer_stk::STK_MeshFactory::parsePeriodicBCList
static void parsePeriodicBCList(const Teuchos::RCP< Teuchos::ParameterList > &pl, std::vector< Teuchos::RCP< const PeriodicBC_MatcherBase > > &periodicBC, bool &useBBoxSearch)
Definition
Panzer_STK_MeshFactory.hpp:87
panzer_stk::STK_MeshFactory::useBBoxSearch_
bool useBBoxSearch_
Definition
Panzer_STK_MeshFactory.hpp:142
panzer_stk::STK_MeshFactory::getMeshCoord
double getMeshCoord(const int nx, const double deltaX, const double x0) const
Definition
Panzer_STK_MeshFactory.hpp:129
panzer_stk::STK_MeshFactory::buildUncommitedMesh
virtual Teuchos::RCP< STK_Interface > buildUncommitedMesh(stk::ParallelMachine parallelMach) const =0
panzer_stk::STK_MeshFactory::rebalanceList_
Teuchos::RCP< const Teuchos::ParameterList > rebalanceList_
Definition
Panzer_STK_MeshFactory.hpp:146
panzer_stk::STK_MeshFactory::periodicBCVec_
std::vector< Teuchos::RCP< const PeriodicBC_MatcherBase > > periodicBCVec_
Definition
Panzer_STK_MeshFactory.hpp:140
panzer_stk::STK_MeshFactory::enableRebalance
void enableRebalance(bool enable, const Teuchos::RCP< const Teuchos::ParameterList > &rebalanceList=Teuchos::null)
Definition
Panzer_STK_MeshFactory.hpp:97
panzer_stk
Definition
Panzer_STK_GatherFields_decl.hpp:58
Generated by
1.17.0