11 #ifndef __Panzer_GatherTangent_BlockedEpetra_impl_hpp__
12 #define __Panzer_GatherTangent_BlockedEpetra_impl_hpp__
21 #include "Epetra_Map.h"
32 #include "Phalanx_DataLayout.hpp"
35 #include "Teuchos_Assert.hpp"
36 #include "Teuchos_FancyOStream.hpp"
39 #include "Thyra_ProductVectorBase.hpp"
40 #include "Thyra_SpmdVectorBase.hpp"
47 template<
typename EvalT,
typename TRAITS,
typename LO,
typename GO>
55 useTimeDerivativeSolutionVector_(false),
56 globalDataKey_(
"Tangent Gather Container")
70 if (p.
isType<
bool>(
"Use Time Derivative Solution Vector"))
72 p.
get<
bool>(
"Use Time Derivative Solution Vector");
73 if (p.
isType<
string>(
"Global Data Key"))
82 MDField<ScalarT, Cell, NODE>(names[fd], basis->functional);
87 string firstName(
"<none>");
90 string n(
"GatherTangent (Blocked Epetra): " + firstName +
" (" +
91 print<EvalT>() +
")");
100 template<
typename EvalT,
typename TRAITS,
typename LO,
typename GO>
104 typename TRAITS::SetupData ,
117 const string& fieldName((*indexerNames_)[fd]);
119 subFieldIds_[fd] = indexers_[indexerIds_[fd]]->getFieldNum(fieldName);
122 indexerNames_ = null;
130 template<
typename EvalT,
typename TRAITS,
typename LO,
typename GO>
134 typename TRAITS::PreEvalData d)
136 using std::logic_error;
138 using Teuchos::rcp_dynamic_cast;
143 if (d.gedc->containsDataObject(globalDataKey_))
145 RCP<GED> ged = d.gedc->getDataObject(globalDataKey_);
146 xBvRoGed_ = rcp_dynamic_cast<BVROGED>(ged,
true);
155 template<
typename EvalT,
typename TRAITS,
typename LO,
typename GO>
159 typename TRAITS::EvalData workset)
166 using Teuchos::ptrFromRef;
168 using Teuchos::rcp_dynamic_cast;
170 using Thyra::SpmdVectorBase;
174 if (xBvRoGed_.is_null())
178 string blockId(this->wda(workset).block_id);
179 const vector<size_t>& localCellIds = this->wda(workset).cell_local_ids;
180 int numFields(gatherFields_.size()), numCells(localCellIds.size());
183 for (
int fieldIndex(0); fieldIndex <
numFields; ++fieldIndex)
185 MDField<ScalarT, Cell, NODE>&
field = gatherFields_[fieldIndex];
186 int indexerId(indexerIds_[fieldIndex]),
187 subFieldNum(subFieldIds_[fieldIndex]);
190 auto xEvRoGed = xBvRoGed_->getGEDBlock(indexerId);
191 auto subRowIndexer = indexers_[indexerId];
192 const vector<int>& elmtOffset =
193 subRowIndexer->getGIDFieldOffsets(blockId, subFieldNum);
194 int numBases(elmtOffset.size());
197 for (
int cell(0); cell < numCells; ++cell)
199 LO cellLocalId = localCellIds[cell];
200 auto LIDs = subRowIndexer->getElementLIDs(cellLocalId);
203 for (
int basis(0); basis < numBases; ++basis)
205 int offset(elmtOffset[basis]), lid(LIDs[offset]);
206 field(cell, basis) = (*xEvRoGed)[lid];
212 #endif // __Panzer_GatherTangent_BlockedEpetra_impl_hpp__
bool useTimeDerivativeSolutionVector_
A flag indicating whether we're to be working with or .
T & get(const std::string &name, T def_value)
Teuchos::RCP< std::vector< std::string > > indexerNames_
A list of the names of the fields to be gathered.
std::string globalDataKey_
The key identifying the GlobalEvaluationData.
This class encapsulates the needs of a gather operation to do a halo exchange for blocked vectors...
void preEvaluate(typename TRAITS::PreEvalData d)
Pre-Evaluate: Sets the tangent vector.
std::vector< PHX::MDField< ScalarT, Cell, NODE > > gatherFields_
The fields to be gathered.
int getFieldBlock(const std::string &fieldName, const std::vector< Teuchos::RCP< const GlobalIndexer >> &ugis)
GatherTangent_BlockedEpetra()
Default Constructor (disabled)
void evaluateFields(typename TRAITS::EvalData d)
Evaluate Fields: Gather operation.
PHX::MDField< ScalarT, panzer::Cell, panzer::BASIS > field
A field to which we'll contribute, or in which we'll store, the result of computing this integral...
bool isType(const std::string &name) const
Description and data layouts associated with a particular basis.
#define TEUCHOS_ASSERT(assertion_test)
void postRegistrationSetup(typename TRAITS::SetupData d, PHX::FieldManager< TRAITS > &vm)
Post-Registration Setup.
std::string typeName(const T &t)