Panzer  Version of the Day
Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.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_TpetraVector_ReadOnly_GlobalEvaluationData_hpp__
44 #define __Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_hpp__
45 
46 #include "Tpetra_Import.hpp"
47 #include "Tpetra_Vector.hpp"
48 #include "Tpetra_Map.hpp"
49 
50 #include "Teuchos_RCP.hpp"
51 
52 #include "Thyra_VectorSpaceBase.hpp"
53 #include "Thyra_VectorBase.hpp"
54 
55 #include "Panzer_NodeType.hpp"
57 
58 namespace panzer {
59 
63 template <typename ScalarT,typename LocalOrdinalT,typename GlobalOrdinalT,
64  typename NodeT=panzer::TpetraNodeType>
66 public:
67  typedef Tpetra::Vector<ScalarT,LocalOrdinalT,GlobalOrdinalT,NodeT> VectorType;
68  typedef Tpetra::Map<LocalOrdinalT,GlobalOrdinalT,NodeT> MapType;
69  typedef Tpetra::Import<LocalOrdinalT,GlobalOrdinalT,NodeT> ImportType;
70 
73  : isInitialized_(false) { }
74 
76  : isInitialized_(false) { initialize(src.importer_, src.ghostedMap_, src.ownedMap_); }
77 
87  const Teuchos::RCP<const MapType>& ghostedMap,
88  const Teuchos::RCP<const MapType>& ownedMap)
89  : isInitialized_(false) { initialize(importer, ghostedMap, ownedMap); }
90 
98  void useConstantValues(const std::vector<GlobalOrdinalT> & indices,double value);
99 
108  void initialize(const Teuchos::RCP<const ImportType>& importer,
109  const Teuchos::RCP<const MapType>& ghostedMap,
110  const Teuchos::RCP<const MapType>& ownedMap);
111 
115  virtual void globalToGhost(int mem);
116 
118  virtual void initializeData();
119 
121  virtual void ghostToGlobal(int /* mem */) {}
122 
124  virtual bool requiresDirichletAdjustment() const { return false; }
125 
127  void setOwnedVector_Tpetra(const Teuchos::RCP<const VectorType>& ownedVector);
128 
131 
134 
136  void setOwnedVector(const Teuchos::RCP<const Thyra::VectorBase<double> >& ownedVector);
137 
140 
143 
145  bool isInitialized() const { return isInitialized_; }
146 
148  void print(std::ostream & os) const;
149 
150 private:
152 
155 
158 
162 
163  typedef std::pair<std::vector<GlobalOrdinalT>,double> FilteredGlobalPair;
164  typedef std::pair<std::vector<LocalOrdinalT>,double> FilteredLocalPair;
165  std::vector<FilteredGlobalPair> globalFilteredPairs_;
166  std::vector<FilteredLocalPair> filteredPairs_;
167 };
168 
169 }
170 
171 #endif
panzer::ReadOnlyVector_GlobalEvaluationData
Definition: Panzer_ReadOnlyVector_GlobalEvaluationData.hpp:61
Teuchos_RCP.hpp
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::getOwnedVector
Teuchos::RCP< const Thyra::VectorBase< double > > getOwnedVector() const
Get the owned vector (Thyra version)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:192
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::VectorType
Tpetra::Vector< ScalarT, LocalOrdinalT, GlobalOrdinalT, NodeT > VectorType
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:67
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ghostedSpace_
Teuchos::RCP< const Thyra::VectorSpaceBase< double > > ghostedSpace_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:156
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ghostedVector_
Teuchos::RCP< VectorType > ghostedVector_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:160
Panzer_ReadOnlyVector_GlobalEvaluationData.hpp
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ownedVector_
Teuchos::RCP< const VectorType > ownedVector_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:161
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::MapType
Tpetra::Map< LocalOrdinalT, GlobalOrdinalT, NodeT > MapType
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:68
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::FilteredLocalPair
std::pair< std::vector< LocalOrdinalT >, double > FilteredLocalPair
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:164
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::importer_
Teuchos::RCP< const ImportType > importer_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:159
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::globalToGhost
virtual void globalToGhost(int mem)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:113
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ghostedMap_
Teuchos::RCP< const MapType > ghostedMap_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:153
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::TpetraVector_ReadOnly_GlobalEvaluationData
TpetraVector_ReadOnly_GlobalEvaluationData(const TpetraVector_ReadOnly_GlobalEvaluationData &src)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:75
panzer::TpetraVector_ReadOnly_GlobalEvaluationData
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:65
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::useConstantValues
void useConstantValues(const std::vector< GlobalOrdinalT > &indices, double value)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:55
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::TpetraVector_ReadOnly_GlobalEvaluationData
TpetraVector_ReadOnly_GlobalEvaluationData()
Default constructor.
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:72
Teuchos::RCP< const ImportType >
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::setOwnedVector_Tpetra
void setOwnedVector_Tpetra(const Teuchos::RCP< const VectorType > &ownedVector)
Set the owned vector (Tpetra version)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:152
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::print
void print(std::ostream &os) const
Diagnostic function.
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:213
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::TpetraVector_ReadOnly_GlobalEvaluationData
TpetraVector_ReadOnly_GlobalEvaluationData(const Teuchos::RCP< const ImportType > &importer, const Teuchos::RCP< const MapType > &ghostedMap, const Teuchos::RCP< const MapType > &ownedMap)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:86
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::filteredPairs_
std::vector< FilteredLocalPair > filteredPairs_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:166
Panzer_NodeType.hpp
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::isInitialized_
bool isInitialized_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:151
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ImportType
Tpetra::Import< LocalOrdinalT, GlobalOrdinalT, NodeT > ImportType
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:69
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::FilteredGlobalPair
std::pair< std::vector< GlobalOrdinalT >, double > FilteredGlobalPair
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:163
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::globalFilteredPairs_
std::vector< FilteredGlobalPair > globalFilteredPairs_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:165
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::requiresDirichletAdjustment
virtual bool requiresDirichletAdjustment() const
Nothing to do (its read only)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:124
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ownedSpace_
Teuchos::RCP< const Thyra::VectorSpaceBase< double > > ownedSpace_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:157
Thyra::VectorBase< double >
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::isInitialized
bool isInitialized() const
Is this object initialized.
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:145
panzer
Definition: Panzer_BasisValues_Evaluator_decl.hpp:54
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::getOwnedVector_Tpetra
Teuchos::RCP< const VectorType > getOwnedVector_Tpetra() const
Get the owned vector (Tpetra version)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:161
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::getGhostedVector_Tpetra
Teuchos::RCP< VectorType > getGhostedVector_Tpetra() const
Get the ghosted vector (Tpetra version)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:170
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::getGhostedVector
Teuchos::RCP< Thyra::VectorBase< double > > getGhostedVector() const
Get the ghosted vector (Thyra version)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:202
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::initialize
void initialize(const Teuchos::RCP< const ImportType > &importer, const Teuchos::RCP< const MapType > &ghostedMap, const Teuchos::RCP< const MapType > &ownedMap)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:70
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::initializeData
virtual void initializeData()
Clear out the ghosted vector.
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:129
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::setOwnedVector
void setOwnedVector(const Teuchos::RCP< const Thyra::VectorBase< double > > &ownedVector)
Set the owned vector (Thyra version)
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData_impl.hpp:181
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ownedMap_
Teuchos::RCP< const MapType > ownedMap_
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:154
panzer::TpetraNodeType
Kokkos::Compat::KokkosDeviceWrapperNode< PHX::Device > TpetraNodeType
Definition: Panzer_NodeType.hpp:55
panzer::TpetraVector_ReadOnly_GlobalEvaluationData::ghostToGlobal
virtual void ghostToGlobal(int)
For this class this method does nothing.
Definition: Panzer_TpetraVector_ReadOnly_GlobalEvaluationData.hpp:121