28#include <dune/grid/common/gridenums.hh>
30#include <dune/common/dynmatrix.hh>
31#include <dune/common/dynvector.hh>
33#include <opm/grid/utility/ElementChunks.hpp>
35#include <opm/material/common/MathToolbox.hpp>
44#include <unordered_map>
54template <
class TypeTag>
69 enum { dimWorld = GridView::dimensionworld };
70 enum { historySize = getPropValue<TypeTag, Properties::SolutionHistorySizeTPSA>() };
71 enum { numEq = getPropValue<TypeTag, Properties::NumEqTPSA>() };
73 enum { disp0Idx = Indices::disp0Idx };
74 enum { rot0Idx = Indices::rot0Idx };
75 enum { solidPres0Idx = Indices::solidPres0Idx };
77 using MaterialState = MaterialStateTPSA<Evaluation>;
79 using DimVector = Dune::FieldVector<Scalar, dimWorld>;
80 using SymTensor = Dune::FieldVector<Scalar, 6>;
81 using PotForceVector = Dune::BlockVector<Scalar>;
144 return std::equal(this->blockVector_.begin(), this->blockVector_.end(),
153 template<
class Serializer>
169 : linearizer_(std::make_unique<Linearizer>())
170 , newtonMethod_(simulator)
171 , simulator_(simulator)
172 , element_chunks_(simulator.gridView(),
Dune::Partitions::all,
ThreadManager::maxThreads())
175 eqWeights_.resize(numEq, 1.0);
179 const std::size_t numDof = simulator_.model().numGridDof();
180 for (
unsigned timeIdx = 0; timeIdx < historySize; ++timeIdx) {
181 solution_[timeIdx] = std::make_unique<TpsaBlockVectorWrapper>(
"solution", numDof);
185 mechPotPresForce_.resize(numDof);
194 linearizer_->init(simulator_);
231 auto ghostSync = GhostSyncHandle(
solution(0),
232 simulator_.model().dofMapper());
234 simulator_.gridView().communicate(ghostSync,
235 Dune::InteriorBorder_All_Interface,
236 Dune::ForwardCommunication);
249 const auto& elementMapper = simulator_.model().elementMapper();
251#pragma omp parallel for
253 for (
const auto& chunk : element_chunks_) {
254 for (
const auto& elem : chunk) {
255 const unsigned globalIdx = elementMapper.index(elem);
256 auto& currSol =
solution(0)[globalIdx];
257 setMaterialState_(globalIdx, 0, currSol);
292 return newtonMethod_;
302 return newtonMethod_;
311 const SolutionVector&
solution(
unsigned timeIdx)
const
313 return solution_[timeIdx]->blockVector();
324 return solution_[timeIdx]->blockVector();
333 return simulator_.model().numGridDof();
353 return simulator_.model().dofTotalVolume(globalIdx);
365 return eqWeights_[eqIdx];
376 eqWeights_[eqIdx] = value;
406 const MaterialState&
materialState(
const unsigned globalIdx,
unsigned )
const
408 return materialState_[globalIdx];
420 DimVector
disp(
const unsigned globalIdx,
const bool )
const
423 for (std::size_t i = 0; i < 3; ++i) {
424 d[i] = decay<Scalar>(materialState_[globalIdx].displacement(i));
438 for (std::size_t i = 0; i < 3; ++i) {
439 rot[i] = decay<Scalar>(materialState_[globalIdx].
rotation(i));
452 return decay<Scalar>(materialState_[globalIdx].
solidPressure());
463 return stress(globalIdx,
false);
492 SymTensor linStressTensor =
stress(globalIdx,
false);
494 for (
unsigned dirIdx = 0; dirIdx < 3; ++dirIdx) {
495 linStressTensor[dirIdx] -= potForce;
497 return -1.0 * linStressTensor;
510 SymTensor
stress(
const unsigned globalIdx,
const bool )
const
512 SymTensor stressOutput;
513 const auto& stressInfo = linearizer_->getStressInfo();
514 if (!stressInfo.empty()) {
515 const auto& stressInfoGlobI = stressInfo[globalIdx];
520 std::unordered_multimap<int, std::size_t> faceIdMap;
521 std::size_t mapSize = 0;
522 for (std::size_t sInfoIdx = 0; sInfoIdx < stressInfoGlobI.size(); ++sInfoIdx) {
523 const auto faceId = stressInfoGlobI[sInfoIdx].faceId;
527 if (faceId < 0 || stressInfoGlobI[sInfoIdx].faceArea == 0.0) {
530 if (!faceIdMap.contains(faceId)) {
533 faceIdMap.insert({faceId, sInfoIdx});
541 Dune::DynamicMatrix<Scalar> mat(3 * mapSize, 6);
542 Dune::DynamicVector<Scalar> rhs(3 * mapSize);
543 std::size_t rowIdx = 0;
544 for (
auto it = faceIdMap.begin(); it != faceIdMap.end();) {
545 auto [first, last] = faceIdMap.equal_range(it->first);
548 Scalar sumFaceArea = 0.0;
549 for (
auto inner = first; inner != last; ++inner) {
550 const auto sInfoIdx = inner->second;
551 const auto& faceStressInfo = stressInfoGlobI[sInfoIdx];
554 if (inner == first) {
555 const auto& fNormal = faceStressInfo.faceNormal;
556 mat[3*rowIdx][0] = fNormal[0];
557 mat[3*rowIdx][3] = fNormal[1];
558 mat[3*rowIdx][4] = fNormal[2];
560 mat[3*rowIdx + 1][1] = fNormal[1];
561 mat[3*rowIdx + 1][3] = fNormal[0];
562 mat[3*rowIdx + 1][5] = fNormal[2];
564 mat[3*rowIdx + 2][2] = fNormal[2];
565 mat[3*rowIdx + 2][4] = fNormal[0];
566 mat[3*rowIdx + 2][5] = fNormal[1];
570 const auto& fTraction = faceStressInfo.traction;
571 rhs[3*rowIdx] += fTraction[0];
572 rhs[3*rowIdx + 1] += fTraction[1];
573 rhs[3*rowIdx + 2] += fTraction[2];
576 sumFaceArea += faceStressInfo.faceArea;
579 rhs[3*rowIdx] /= sumFaceArea;
580 rhs[3*rowIdx + 1] /= sumFaceArea;
581 rhs[3*rowIdx + 2] /= sumFaceArea;
594 stressOutput[0] =
stress[0];
595 stressOutput[1] =
stress[1];
596 stressOutput[2] =
stress[2];
597 stressOutput[3] =
stress[5];
598 stressOutput[4] =
stress[4];
599 stressOutput[5] =
stress[3];
611 SymTensor
strain(
const unsigned globalIdx,
const bool )
const
614 auto stressDev = this->
linstress(globalIdx);
615 Scalar traceStress = 1.0 / 3.0 * (stressDev[0] + stressDev[1] + stressDev[2]);
616 stressDev[0] -= traceStress;
617 stressDev[1] -= traceStress;
618 stressDev[2] -= traceStress;
621 auto& problem = simulator_.problem();
622 const auto sMod = problem.shearModulus(globalIdx);
623 SymTensor strainDev = 1.0 / (2.0 * sMod) * stressDev;
626 const auto lameParam = problem.lame(globalIdx);
627 Scalar strainVolTerm = traceStress / (3.0 * lameParam + 2 * sMod);
630 strainVol[0] = strainVolTerm;
631 strainVol[1] = strainVolTerm;
632 strainVol[2] = strainVolTerm;
635 SymTensor strainOutput = strainDev + strainVol;
658 return mechPotPresForce_[globalIdx];
663 mechPotPresForce_[globalIdx] = val;
690 const std::size_t numDof = simulator_.model().numGridDof();
691 materialState_.resize(numDof);
707 void setMaterialState_(
const unsigned globalIdx,
const unsigned , PrimaryVariables& values)
709 auto& dofMaterialState = materialState_[globalIdx];
710 for (
unsigned dirIdx = 0; dirIdx < 3; ++dirIdx) {
711 dofMaterialState.setDisplacement(dirIdx, values.makeEvaluation(disp0Idx + dirIdx, 0));
712 dofMaterialState.setRotation(dirIdx, values.makeEvaluation(rot0Idx + dirIdx, 0));
714 dofMaterialState.setSolidPressure(values.makeEvaluation(solidPres0Idx, 0));
717 std::unique_ptr<Linearizer> linearizer_;
718 NewtonMethod newtonMethod_;
719 Simulator& simulator_;
720 ElementChunks<GridView, Dune::Partitions::All> element_chunks_;
722 std::array<std::unique_ptr<TpsaBlockVectorWrapper>, historySize> solution_;
723 std::vector<Scalar> eqWeights_;
724 std::vector<MaterialState> materialState_;
725 PotForceVector mechPotPresForce_;
Data handle for parallel communication which can be used to set the values values of ghost and overla...
Definition: gridcommhandles.hh:109
Linear least squares calculations and properties.
Definition: linearleastsquares.hpp:45
const Vector & x() const
Read-only vector of calculated coefficient vector.
Definition: linearleastsquares.hpp:76
void solve()
Solve linear least squares system.
Definition: linearleastsquares.hpp:66
static void registerParameters()
Register all run-time parameters for the Newton method.
Definition: newtonmethod.hh:135
Simplifies multi-threaded capabilities.
Definition: threadmanager.hpp:36
Small block vector wrapper class for model solutions.
Definition: tpsamodel.hpp:88
bool operator==(const TpsaBlockVectorWrapper &wrapper) const
Check if incoming block vector is the same as current.
Definition: tpsamodel.hpp:142
static TpsaBlockVectorWrapper serializationTestObject()
Test function for serialization.
Definition: tpsamodel.hpp:110
TpsaBlockVectorWrapper()=default
Default constructor.
TpsaBlockVectorWrapper(const std::string &, const std::size_t size)
Constructor.
Definition: tpsamodel.hpp:98
void serializeOp(Serializer &serializer)
Serializing operation.
Definition: tpsamodel.hpp:154
const SolutionVector & blockVector() const
Get const reference of block vector.
Definition: tpsamodel.hpp:133
SolutionVector & blockVector()
Get reference of block vector.
Definition: tpsamodel.hpp:125
SolutionVector blockVector_
Definition: tpsamodel.hpp:90
TPSA geomechanics model.
Definition: tpsamodel.hpp:56
SymTensor delstress(const unsigned globalIdx) const
Output stress tensor without fracture contribution.
Definition: tpsamodel.hpp:461
NewtonMethod & newtonMethod()
Return the Newton method.
Definition: tpsamodel.hpp:300
std::size_t numAuxiliaryDof() const
Return number of auxillary degrees of freedom.
Definition: tpsamodel.hpp:392
SymTensor stress(const unsigned globalIdx, const bool) const
Output stress tensor.
Definition: tpsamodel.hpp:510
SymTensor strain(const unsigned globalIdx, const bool) const
Output strain tensor.
Definition: tpsamodel.hpp:611
DimVector disp(const unsigned globalIdx, const bool) const
Output displacement vector.
Definition: tpsamodel.hpp:420
void finishInit()
Initialize TPSA model.
Definition: tpsamodel.hpp:191
void setEqWeight(unsigned eqIdx, Scalar value)
Set weights for equation.
Definition: tpsamodel.hpp:374
std::size_t numGridDof() const
Return number of degrees of freedom in the grid from the Flow model.
Definition: tpsamodel.hpp:331
const Linearizer & linearizer() const
Return the linearizer.
Definition: tpsamodel.hpp:270
const NewtonMethod & newtonMethod() const
Return the Newton method.
Definition: tpsamodel.hpp:290
std::size_t numAuxiliaryModules() const
Return number of auxillary modules.
Definition: tpsamodel.hpp:383
void updateMaterialState(const unsigned)
Update material state for all cells.
Definition: tpsamodel.hpp:246
Scalar mechPotentialPressForce(unsigned globalIdx) const
Output potential pressure forces.
Definition: tpsamodel.hpp:656
Scalar mechPotentialTempForce(unsigned) const
Output potential temparature forces.
Definition: tpsamodel.hpp:674
SymTensor linstress(const unsigned globalIdx) const
Output linear stress tensor.
Definition: tpsamodel.hpp:488
const SolutionVector & solution(unsigned timeIdx) const
Get reference to history solution vector.
Definition: tpsamodel.hpp:311
const MaterialState & materialState(const unsigned globalIdx, unsigned) const
Return current material state.
Definition: tpsamodel.hpp:406
Scalar dofTotalVolume(unsigned globalIdx) const
Return the total grid volume from the Flow model.
Definition: tpsamodel.hpp:351
void resizeMaterialState_()
Resize material state vector.
Definition: tpsamodel.hpp:688
static void registerParameters()
Register runtime parameters.
Definition: tpsamodel.hpp:203
void setMechPotentialPressForce(unsigned globalIdx, Scalar val)
Definition: tpsamodel.hpp:661
Scalar eqWeight(unsigned, unsigned eqIdx) const
Return equation weights.
Definition: tpsamodel.hpp:363
TpsaModel(Simulator &simulator)
Constructor.
Definition: tpsamodel.hpp:168
SolutionVector & solution(unsigned timeIdx)
Get reference to history solution vector.
Definition: tpsamodel.hpp:322
void prepareTPSA()
Prepare TPSA model for coupled Flow-TPSA scheme.
Definition: tpsamodel.hpp:212
Scalar solidPressure(const unsigned globalIdx) const
Output solid pressure.
Definition: tpsamodel.hpp:450
SymTensor fractureStress(const unsigned) const
Output fracture stress tensor.
Definition: tpsamodel.hpp:474
std::size_t numTotalDof() const
Return the total number of degrees of freedom.
Definition: tpsamodel.hpp:340
Linearizer & linearizer()
Return the linearizer.
Definition: tpsamodel.hpp:280
void syncOverlap()
Sync primary variables in overlapping cells.
Definition: tpsamodel.hpp:223
DimVector rotation(const unsigned globalIdx) const
Output rotation vector.
Definition: tpsamodel.hpp:435
Scalar mechPotentialForce(unsigned globalIdx) const
Output potential forces.
Definition: tpsamodel.hpp:645
Definition: fvbaseprimaryvariables.hh:161
Definition: blackoilbioeffectsmodules.hh:45
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property (equivalent to old macro GET_PROP_TYPE(....
Definition: propertysystem.hh:233
The Opm property system, traits with inheritance.