GEOS
PhysicsSolverBase.hpp
Go to the documentation of this file.
1 /*
2  * ------------------------------------------------------------------------------------------------------------
3  * SPDX-License-Identifier: LGPL-2.1-only
4  *
5  * Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
6  * Copyright (c) 2018-2024 TotalEnergies
7  * Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
8  * Copyright (c) 2023-2024 Chevron
9  * Copyright (c) 2019- GEOS/GEOSX Contributors
10  * All rights reserved
11  *
12  * See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
13  * ------------------------------------------------------------------------------------------------------------
14  */
15 
20 #ifndef GEOS_PHYSICSSOLVERS_PHYSICSSOLVERBASE_HPP_
21 #define GEOS_PHYSICSSOLVERS_PHYSICSSOLVERBASE_HPP_
22 
23 #include "codingUtilities/traits.hpp"
24 #include "common/DataTypes.hpp"
29 #include "mesh/MeshBody.hpp"
30 #include "physicsSolvers/NonlinearSolverParameters.hpp"
32 #include "physicsSolvers/SolverStatistics.hpp"
33 
34 #include <limits>
35 
36 namespace geos
37 {
38 
39 class DomainPartition;
40 
50 {
51 public:
52 
58  explicit PhysicsSolverBase( string const & name,
59  Group * const parent );
60 
65 
69  virtual ~PhysicsSolverBase() override;
70 
74  PhysicsSolverBase() = delete;
75 
79  PhysicsSolverBase( PhysicsSolverBase const & ) = delete;
80 
85 
90 
94  virtual string getCatalogName() const = 0;
95 
96 
101  virtual void registerDataOnMesh( Group & MeshBodies ) override;
102 
106  virtual void initialize_postMeshGeneration() override;
107 
112  void generateMeshTargetsFromTargetRegions( Group const & meshBodies );
113 
117  virtual void cleanup( real64 const time_n,
118  integer const cycleNumber,
119  integer const eventCounter,
120  real64 const eventProgress,
121  DomainPartition & domain ) override;
122 
126  virtual bool execute( real64 const time_n,
127  real64 const dt,
128  integer const cycleNumber,
129  integer const eventCounter,
130  real64 const eventProgress,
131  DomainPartition & domain ) override;
132 
138 
143  ParallelMatrix const & getSystemMatrix() const { return m_matrix; }
144 
150 
155  ParallelVector const & getSystemRhs() const { return m_rhs; }
156 
162 
167  ParallelVector const & getSystemSolution() const { return m_solution; }
168 
174 
179  DofManager const & getDofManager() const { return m_dofManager; }
180 
186 
192 
211  virtual real64 solverStep( real64 const & time_n,
212  real64 const & dt,
213  integer const cycleNumber,
214  DomainPartition & domain );
215 
223  virtual real64 setNextDt( real64 const & currentTime,
224  real64 const & currentDt,
225  DomainPartition & domain );
226 
232  virtual real64 setNextDtBasedOnIterNumber( real64 const & currentDt );
233 
240  virtual real64 setNextDtBasedOnStateChange( real64 const & currentDt,
241  DomainPartition & domain );
242 
251  virtual real64 explicitStep( real64 const & time_n,
252  real64 const & dt,
253  integer const cycleNumber,
254  DomainPartition & domain );
255 
269  virtual real64 nonlinearImplicitStep( real64 const & time_n,
270  real64 const & dt,
271  integer const cycleNumber,
272  DomainPartition & domain );
273 
293  virtual bool
294  lineSearch( real64 const & time_n,
295  real64 const & dt,
296  integer const cycleNumber,
297  DomainPartition & domain,
298  DofManager const & dofManager,
299  CRSMatrixView< real64, globalIndex const > const & localMatrix,
300  ParallelVector & rhs,
301  ParallelVector & solution,
302  real64 const scaleFactor,
303  real64 & lastResidual );
304 
321  virtual bool
323  real64 const & dt,
324  integer const cycleNumber,
325  DomainPartition & domain,
326  DofManager const & dofManager,
327  CRSMatrixView< real64, globalIndex const > const & localMatrix,
328  ParallelVector & rhs,
329  ParallelVector & solution,
330  real64 const scaleFactor,
331  real64 & lastResidual,
332  real64 & residualNormT );
333 
348  virtual real64 linearImplicitStep( real64 const & time_n,
349  real64 const & dt,
350  integer const cycleNumber,
351  DomainPartition & domain );
352 
365  virtual void
366  implicitStepSetup( real64 const & time_n,
367  real64 const & dt,
368  DomainPartition & domain );
369 
375  virtual void
376  setupDofs( DomainPartition const & domain,
377  DofManager & dofManager ) const;
378 
391  virtual void
393  DofManager & dofManager,
394  CRSMatrix< real64, globalIndex > & localMatrix,
395  ParallelVector & rhs,
396  ParallelVector & solution,
397  bool const setSparsity = true );
398 
417  virtual void
418  assembleSystem( real64 const time,
419  real64 const dt,
420  DomainPartition & domain,
421  DofManager const & dofManager,
422  CRSMatrixView< real64, globalIndex const > const & localMatrix,
423  arrayView1d< real64 > const & localRhs );
424 
437  virtual void
439  real64 const dt,
440  DomainPartition & domain,
441  DofManager const & dofManager,
442  CRSMatrixView< real64, globalIndex const > const & localMatrix,
443  arrayView1d< real64 > const & localRhs );
444 
453  void
454  debugOutputSystem( real64 const & time,
455  integer const cycleNumber,
456  integer const nonlinearIteration,
457  ParallelMatrix const & matrix,
458  ParallelVector const & rhs ) const;
459 
467  void
469  integer const cycleNumber,
470  integer const nonlinearIteration,
471  ParallelVector const & solution ) const;
472 
485  virtual real64
487  real64 const & dt,
488  DomainPartition const & domain,
489  DofManager const & dofManager,
490  arrayView1d< real64 const > const & localRhs );
491 
505  virtual void
506  solveLinearSystem( DofManager const & dofManager,
507  ParallelMatrix & matrix,
508  ParallelVector & rhs,
509  ParallelVector & solution );
510 
523  virtual bool
525  DofManager const & dofManager,
526  arrayView1d< real64 const > const & localSolution,
527  real64 const scalingFactor );
528 
536  virtual real64
538  DofManager const & dofManager,
539  arrayView1d< real64 const > const & localSolution );
540 
562  virtual void
563  applySystemSolution( DofManager const & dofManager,
564  arrayView1d< real64 const > const & localSolution,
565  real64 const scalingFactor,
566  real64 const dt,
567  DomainPartition & domain );
568 
574  virtual bool updateConfiguration( DomainPartition & domain );
575 
580  virtual void outputConfigurationStatistics( DomainPartition const & domain ) const;
581 
587 
593  virtual bool resetConfigurationToDefault( DomainPartition & domain ) const;
594 
595 
600  virtual void updateState( DomainPartition & domain );
601 
613  virtual void
615 
629  virtual void
631  real64 const & dt,
632  DomainPartition & domain );
633 
634 
639  virtual real64 getTimestepRequest( real64 const ) override
640  {return m_nextDt;};
648  {return m_nextDt;};
649 
656  virtual Group * createChild( string const & childKey, string const & childName ) override;
657 
662 
668 
673  {
675  static constexpr char const * cflFactorString() { return "cflFactor"; }
676 
678  static constexpr char const * initialDtString() { return "initialDt"; }
679 
681  static constexpr char const * minDtIncreaseIntervalString() { return "minDtIncreaseInterval"; }
682 
684  static constexpr char const * maxStableDtString() { return "maxStableDt"; }
685 
687  static constexpr char const * discretizationString() { return "discretization"; }
688 
690  static constexpr char const * targetRegionsString() { return "targetRegions"; }
691 
693  static constexpr char const * meshTargetsString() { return "meshTargets"; }
694 
696  static constexpr char const * writeLinearSystemString() { return "writeLinearSystem"; }
697  };
698 
703  {
705  static constexpr char const * linearSolverParametersString() { return "LinearSolverParameters"; }
706 
708  static constexpr char const * nonlinearSolverParametersString() { return "NonlinearSolverParameters"; }
709 
711  static constexpr char const * solverStatisticsString() { return "SolverStatistics"; }
712  };
713 
719 
726 
731  void setSystemSetupTimestamp( Timestamp timestamp ) { m_systemSetupTimestamp = timestamp; }
732 
741  R1Tensor const gravityVector() const;
742 
748  virtual bool checkSequentialSolutionIncrements( DomainPartition & domain ) const;
749 
755 
761  {
762  return m_linearSolverParameters.get();
763  }
764 
770  {
771  return m_linearSolverParameters.get();
772  }
773 
779  {
781  }
782 
788  {
790  }
791 
795  virtual void
797  { /* empty here, overriden in CoupledSolver */ }
798 
804  localIndex targetRegionIndex( string const & regionName ) const;
805 
806 
807 
815  template< typename LAMBDA >
816  void forDiscretizationOnMeshTargets( Group const & meshBodies, LAMBDA && lambda ) const
817  {
818  for( auto const & target: m_meshTargets )
819  {
820  string const meshBodyName = target.first.first;
821  string const meshLevelName = target.first.second;
822  string_array const & regionNames = target.second;
823  MeshBody const & meshBody = meshBodies.getGroup< MeshBody >( meshBodyName );
824 
825  MeshLevel const * meshLevelPtr = meshBody.getMeshLevels().getGroupPointer< MeshLevel >( meshLevelName );
826  if( meshLevelPtr==nullptr )
827  {
829  }
830  lambda( meshBodyName, *meshLevelPtr, regionNames );
831  }
832  }
833 
841  template< typename LAMBDA >
842  void forDiscretizationOnMeshTargets( Group & meshBodies, LAMBDA && lambda ) const
843  {
844  for( auto const & target: m_meshTargets )
845  {
846  string const meshBodyName = target.first.first;
847  string const meshLevelName = target.first.second;
848  string_array const & regionNames = target.second;
849  MeshBody & meshBody = meshBodies.getGroup< MeshBody >( meshBodyName );
850 
851  MeshLevel * meshLevelPtr = meshBody.getMeshLevels().getGroupPointer< MeshLevel >( meshLevelName );
852  if( meshLevelPtr==nullptr )
853  {
855  }
856  lambda( meshBodyName, *meshLevelPtr, regionNames );
857  }
858  }
859 
865 
874  virtual bool registerCallback( void * func, const std::type_info & funcType ) final override;
875 
881 
887 
888 #if defined(GEOS_USE_PYGEOSX)
893  virtual PyTypeObject * getPythonType() const override;
894 #endif
895 
901  {
902  return m_meshTargets;
903  }
904 protected:
905 
931  real64 eisenstatWalker( real64 const newNewtonNorm,
932  real64 const oldNewtonNorm,
933  LinearSolverParameters::Krylov const & krylovParams );
934 
942  template< typename CONSTITUTIVE_BASE_TYPE >
943  static string getConstitutiveName( ElementSubRegionBase const & subRegion );
944 
952  template< typename CONSTITUTIVE_BASE_TYPE >
953  static string getConstitutiveName( ParticleSubRegionBase const & subRegion ); // particle overload
954 
961  virtual void setConstitutiveNamesCallSuper( ElementSubRegionBase & subRegion ) const { GEOS_UNUSED_VAR( subRegion ); }
962 
963 
972  template< typename BASETYPE = constitutive::ConstitutiveBase, typename LOOKUP_TYPE >
973  static BASETYPE const & getConstitutiveModel( dataRepository::Group const & dataGroup, LOOKUP_TYPE const & key )
974  {
976  return constitutiveModels.getGroup< BASETYPE >( key );
977  }
978 
987  template< typename BASETYPE = constitutive::ConstitutiveBase, typename LOOKUP_TYPE >
988  static BASETYPE & getConstitutiveModel( dataRepository::Group & dataGroup, LOOKUP_TYPE const & key )
989  {
991  return constitutiveModels.getGroup< BASETYPE >( key );
992  }
993 
994 
995 
998 
1001 
1004 
1007 
1010 
1013 
1016 
1019 
1022 
1025 
1027  std::unique_ptr< PreconditionerBase< LAInterface > > m_precond;
1028 
1031 
1034 
1037 
1040 
1043 
1046 
1049 
1051  std::map< std::string, std::chrono::system_clock::duration > m_timers;
1052 
1053 private:
1055  string_array m_targetRegionNames;
1056 
1059 
1066  virtual void setConstitutiveNames( ElementSubRegionBase & subRegion ) const { GEOS_UNUSED_VAR( subRegion ); }
1067 
1076  bool solveNonlinearSystem( real64 const & time_n,
1077  real64 const & dt,
1078  integer const cycleNumber,
1079  DomainPartition & domain );
1080 
1087  void logEndOfCycleInformation( integer const cycleNumber,
1088  integer const numOfSubSteps,
1089  std::vector< real64 > const & subStepDt ) const;
1090 
1091 };
1092 
1093 template< typename CONSTITUTIVE_BASE_TYPE >
1095 {
1096  string validName;
1097  dataRepository::Group const & constitutiveModels = subRegion.getConstitutiveModels();
1098 
1099  constitutiveModels.forSubGroups< CONSTITUTIVE_BASE_TYPE >( [&]( dataRepository::Group const & model )
1100  {
1101  GEOS_ERROR_IF( !validName.empty(), "A valid constitutive model was already found." );
1102  validName = model.getName();
1103  } );
1104  return validName;
1105 }
1106 
1107 template< typename CONSTITUTIVE_BASE_TYPE >
1108 string PhysicsSolverBase::getConstitutiveName( ParticleSubRegionBase const & subRegion ) // particle overload
1109 {
1110  string validName;
1111  dataRepository::Group const & constitutiveModels = subRegion.getConstitutiveModels();
1112 
1113  constitutiveModels.forSubGroups< CONSTITUTIVE_BASE_TYPE >( [&]( dataRepository::Group const & model )
1114  {
1115  GEOS_ERROR_IF( !validName.empty(), "A valid constitutive model was already found." );
1116  validName = model.getName();
1117  } );
1118  return validName;
1119 }
1120 
1121 
1122 } // namespace geos
1123 
1124 
1125 #endif /* GEOS_PHYSICSSOLVERS_PHYSICSSOLVERBASE_HPP_ */
#define GEOS_UNUSED_VAR(...)
Mark an unused variable and silence compiler warnings.
Definition: GeosxMacros.hpp:84
#define GEOS_ERROR_IF(EXP, msg)
Conditionally raise a hard error and terminate the program.
Definition: Logger.hpp:142
The DoFManager is responsible for allocating global dofs, constructing sparsity patterns,...
Definition: DofManager.hpp:44
Partition of the decomposed physical domain. It also manages the connexion information to its neighbo...
dataRepository::Group const & getConstitutiveModels() const
Get the group in which the constitutive models of this subregion are registered.
Linear solver parameters with Group capabilities.
The class is used to manage mesh body.
Definition: MeshBody.hpp:36
Group & getMeshLevels()
Get the meshLevels group.
Definition: MeshBody.hpp:86
Class facilitating the representation of a multi-level discretization of a MeshBody.
Definition: MeshLevel.hpp:42
dataRepository::Group const & getConstitutiveModels() const
Get the group in which the constitutive models of this subregion are registered.
Base class for all physics solvers.
SolverStatistics const & getSolverStatistics() const
const accessor for the solver statistics.
void setSystemSetupTimestamp(Timestamp timestamp)
set the timestamp of the system setup
map< std::pair< string, string >, string_array > const & getMeshTargets() const
accessor for m_meshTargets
virtual void registerDataOnMesh(Group &MeshBodies) override
Register wrappers that contain data on the mesh objects.
PhysicsSolverBase(PhysicsSolverBase const &)=delete
Deleted copy constructor.
static BASETYPE const & getConstitutiveModel(dataRepository::Group const &dataGroup, LOOKUP_TYPE const &key)
Get the Constitutive Model object.
virtual string getCatalogName() const =0
DofManager & getDofManager()
Getter for degree-of-freedom manager.
SolverStatistics m_solverStatistics
Solver statistics.
real64 m_cflFactor
Courant–Friedrichs–Lewy factor for the timestep.
string m_discretizationName
name of the FV discretization object in the data repository
string getDiscretizationName() const
return the name of the discretization object
ParallelVector const & getSystemRhs() const
Getter for system rhs vector.
ParallelMatrix m_matrix
System matrix.
std::map< std::string, std::chrono::system_clock::duration > m_timers
Timers for the aggregate profiling of the solver.
LinearSolverParameters & getLinearSolverParameters()
accessor for the linear solver parameters.
static BASETYPE & getConstitutiveModel(dataRepository::Group &dataGroup, LOOKUP_TYPE const &key)
Get the Constitutive Model object.
void forDiscretizationOnMeshTargets(Group const &meshBodies, LAMBDA &&lambda) const
Loop over the target discretization on all mesh targets and apply callback.
virtual bool checkSequentialSolutionIncrements(DomainPartition &domain) const
Check if the solution increments are ok to use.
PhysicsSolverBase(string const &name, Group *const parent)
Constructor for PhysicsSolverBase.
ParallelMatrix & getSystemMatrix()
Getter for system matrix.
static string getConstitutiveName(ElementSubRegionBase const &subRegion)
Get the Constitutive Name object.
integer m_numTimestepsSinceLastDtCut
Number of cycles since last timestep cut.
virtual void setConstitutiveNamesCallSuper(ElementSubRegionBase &subRegion) const
This function sets constitutive name fields on an ElementSubRegionBase, and calls the base function i...
ParallelVector & getSystemRhs()
Getter for system rhs vector.
virtual void cleanup(real64 const time_n, integer const cycleNumber, integer const eventCounter, real64 const eventProgress, DomainPartition &domain) override
Called as the code exits the main run loop.
std::unique_ptr< PreconditionerBase< LAInterface > > m_precond
Custom preconditioner for the "native" iterative solver.
Timestamp getMeshModificationTimestamp(DomainPartition &domain) const
getter for the timestamp of the mesh modification on the mesh levels
void forDiscretizationOnMeshTargets(Group &meshBodies, LAMBDA &&lambda) const
Loop over the target discretization on all mesh targets and apply callback.
localIndex targetRegionIndex(string const &regionName) const
Get position of a given region within solver's target region list.
ParallelMatrix const & getSystemMatrix() const
Getter for system rhs vector.
integer m_writeLinearSystem
flag for debug output of matrix, rhs, and solution
PhysicsSolverBase()=delete
Deleted constructor.
LinearSolverParameters const & getLinearSolverParameters() const
const accessor for the linear solver parameters.
LinearSolverResult m_linearSolverResult
Result of the last linear solve.
virtual ~PhysicsSolverBase() override
Destructor for PhysicsSolverBase.
CRSMatrix< real64, globalIndex > m_localMatrix
Local system matrix and rhs.
ParallelVector const & getSystemSolution() const
Getter for system solution vector.
virtual void synchronizeNonlinearSolverParameters()
syncronize the nonlinear solver parameters.
virtual bool registerCallback(void *func, const std::type_info &funcType) final override
function to set the value of m_assemblyCallback
SolverStatistics & getSolverStatistics()
accessor for the solver statistics.
virtual bool execute(real64 const time_n, real64 const dt, integer const cycleNumber, integer const eventCounter, real64 const eventProgress, DomainPartition &domain) override
Main extension point of executable targets.
virtual Group * createChild(string const &childKey, string const &childName) override
creates a child group of of this PhysicsSolverBase instantiation
virtual void saveSequentialIterationState(DomainPartition &domain)
Save the state of the solver for sequential iteration.
PhysicsSolverBase(PhysicsSolverBase &&)=default
Move constructor for PhysicsSolverBase.
real64 getTimestepRequest()
getter for the next timestep size
PhysicsSolverBase & operator=(PhysicsSolverBase const &)=delete
Deleted copy assignment operator.
static CatalogInterface::CatalogType & getCatalog()
Get the singleton catalog for PhysicsSolverBase.
PhysicsSolverBase & operator=(PhysicsSolverBase &&)=delete
Deleted move assignment operator.
NonlinearSolverParameters const & getNonlinearSolverParameters() const
const accessor for the nonlinear solver parameters.
DofManager m_dofManager
Data structure to handle degrees of freedom.
R1Tensor const gravityVector() const
return the value of the gravity vector specified in PhysicsSolverManager
virtual void initialize_postMeshGeneration() override
Initialization tasks after mesh generation is completed.
real64 m_maxStableDt
maximum stable time step
real64 eisenstatWalker(real64 const newNewtonNorm, real64 const oldNewtonNorm, LinearSolverParameters::Krylov const &krylovParams)
Eisenstat-Walker adaptive tolerance.
ParallelVector m_solution
System solution vector.
ParallelVector m_rhs
System right-hand side vector.
std::function< void(CRSMatrix< real64, globalIndex >, array1d< real64 >) > m_assemblyCallback
Callback function for assembly step.
CRSMatrixView< real64 const, globalIndex const > getLocalMatrix() const
Getter for local matrix.
Timestamp getSystemSetupTimestamp() const
getter for the timestamp of the system setup
ParallelVector & getSystemSolution()
Getter for system solution vector.
NonlinearSolverParameters & getNonlinearSolverParameters()
accessor for the nonlinear solver parameters.
Timestamp m_systemSetupTimestamp
Timestamp of the last call to setup system.
LinearSolverParametersInput m_linearSolverParameters
Linear solver parameters.
CRSMatrix< real64, globalIndex > & getLocalMatrix()
Getter for local matrix.
NonlinearSolverParameters m_nonlinearSolverParameters
Nonlinear solver parameters.
real64 m_nextDt
timestep of the next cycle
void generateMeshTargetsFromTargetRegions(Group const &meshBodies)
Generate mesh targets from target regions.
DofManager const & getDofManager() const
Getter for degree-of-freedom manager.
This class is used to log the solver statistics.
This class provides the base class/interface for the catalog value objects.
std::unordered_map< std::string, std::unique_ptr< CatalogInterface< BASETYPE, ARGS... > > > CatalogType
This is the type that will be used for the catalog. The catalog is actually instantiated in the BASET...
T * getGroupPointer(KEY const &key)
Return a pointer to a sub-group of the current Group.
Definition: Group.hpp:299
T & getGroup(KEY const &key)
Return a reference to a sub-group of the current Group.
Definition: Group.hpp:318
void forSubGroups(LAMBDA &&lambda)
Apply the given functor to subgroups that can be casted to one of specified types.
Definition: Group.hpp:500
Base template for ordered and unordered maps.
Definition: DataTypes.hpp:329
virtual void updateState(DomainPartition &domain)
Recompute all dependent quantities from primary variables (including constitutive models)
virtual void applySystemSolution(DofManager const &dofManager, arrayView1d< real64 const > const &localSolution, real64 const scalingFactor, real64 const dt, DomainPartition &domain)
Function to apply the solution vector to the state.
virtual bool lineSearch(real64 const &time_n, real64 const &dt, integer const cycleNumber, DomainPartition &domain, DofManager const &dofManager, CRSMatrixView< real64, globalIndex const > const &localMatrix, ParallelVector &rhs, ParallelVector &solution, real64 const scaleFactor, real64 &lastResidual)
Function to perform line search.
virtual real64 setNextDtBasedOnStateChange(real64 const &currentDt, DomainPartition &domain)
function to set the next dt based on state change
virtual void resetStateToBeginningOfStep(DomainPartition &domain)
reset state of physics back to the beginning of the step.
virtual void assembleSystem(real64 const time, real64 const dt, DomainPartition &domain, DofManager const &dofManager, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
function to assemble the linear system matrix and rhs
virtual bool resetConfigurationToDefault(DomainPartition &domain) const
resets the configuration to the default value.
virtual real64 linearImplicitStep(real64 const &time_n, real64 const &dt, integer const cycleNumber, DomainPartition &domain)
Function for a linear implicit integration step.
virtual bool updateConfiguration(DomainPartition &domain)
updates the configuration (if needed) based on the state after a converged Newton loop.
virtual void applyBoundaryConditions(real64 const time, real64 const dt, DomainPartition &domain, DofManager const &dofManager, CRSMatrixView< real64, globalIndex const > const &localMatrix, arrayView1d< real64 > const &localRhs)
apply boundary condition to system
virtual real64 nonlinearImplicitStep(real64 const &time_n, real64 const &dt, integer const cycleNumber, DomainPartition &domain)
Function for a nonlinear implicit integration step.
virtual real64 scalingForSystemSolution(DomainPartition &domain, DofManager const &dofManager, arrayView1d< real64 const > const &localSolution)
Function to determine if the solution vector should be scaled back in order to maintain a known const...
virtual void implicitStepSetup(real64 const &time_n, real64 const &dt, DomainPartition &domain)
function to perform setup for implicit timestep
void debugOutputSolution(real64 const &time, integer const cycleNumber, integer const nonlinearIteration, ParallelVector const &solution) const
Output the linear system solution for debug purposes.
virtual void setupSystem(DomainPartition &domain, DofManager &dofManager, CRSMatrix< real64, globalIndex > &localMatrix, ParallelVector &rhs, ParallelVector &solution, bool const setSparsity=true)
Set up the linear system (DOF indices and sparsity patterns)
virtual real64 setNextDtBasedOnIterNumber(real64 const &currentDt)
function to set the next time step size based on convergence
virtual bool checkSystemSolution(DomainPartition &domain, DofManager const &dofManager, arrayView1d< real64 const > const &localSolution, real64 const scalingFactor)
Function to check system solution for physical consistency and constraint violation.
virtual real64 calculateResidualNorm(real64 const &time, real64 const &dt, DomainPartition const &domain, DofManager const &dofManager, arrayView1d< real64 const > const &localRhs)
calculate the norm of the global system residual
virtual real64 solverStep(real64 const &time_n, real64 const &dt, integer const cycleNumber, DomainPartition &domain)
entry function to perform a solver step
virtual void setupDofs(DomainPartition const &domain, DofManager &dofManager) const
Populate degree-of-freedom manager with fields relevant to this solver.
virtual void implicitStepComplete(real64 const &time, real64 const &dt, DomainPartition &domain)
perform cleanup for implicit timestep
virtual real64 setNextDt(real64 const &currentTime, real64 const &currentDt, DomainPartition &domain)
function to set the next time step size
virtual void outputConfigurationStatistics(DomainPartition const &domain) const
void debugOutputSystem(real64 const &time, integer const cycleNumber, integer const nonlinearIteration, ParallelMatrix const &matrix, ParallelVector const &rhs) const
Output the assembled linear system for debug purposes.
virtual void solveLinearSystem(DofManager const &dofManager, ParallelMatrix &matrix, ParallelVector &rhs, ParallelVector &solution)
function to apply a linear system solver to the assembled system.
virtual real64 getTimestepRequest(real64 const) override
getter for the next timestep size
virtual bool lineSearchWithParabolicInterpolation(real64 const &time_n, real64 const &dt, integer const cycleNumber, DomainPartition &domain, DofManager const &dofManager, CRSMatrixView< real64, globalIndex const > const &localMatrix, ParallelVector &rhs, ParallelVector &solution, real64 const scaleFactor, real64 &lastResidual, real64 &residualNormT)
Function to perform line search using a parabolic interpolation to find the scaling factor.
virtual void resetConfigurationToBeginningOfStep(DomainPartition &domain)
resets the configuration to the beginning of the time-step.
virtual real64 explicitStep(real64 const &time_n, real64 const &dt, integer const cycleNumber, DomainPartition &domain)
Entry function for an explicit time integration step.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
Definition: DataTypes.hpp:180
unsigned long long int Timestamp
Timestamp type (used to perform actions such a sparsity pattern computation after mesh modifications)
Definition: DataTypes.hpp:127
LvArray::CRSMatrixView< T, COL_INDEX, localIndex const, LvArray::ChaiBuffer > CRSMatrixView
Alias for CRS Matrix View.
Definition: DataTypes.hpp:310
double real64
64-bit floating point type.
Definition: DataTypes.hpp:99
GEOS_LOCALINDEX_TYPE localIndex
Local index type (for indexing objects within an MPI partition).
Definition: DataTypes.hpp:85
std::int32_t integer
Signed integer type.
Definition: DataTypes.hpp:82
LvArray::CRSMatrix< T, COL_INDEX, localIndex, LvArray::ChaiBuffer > CRSMatrix
Alias for CRS Matrix class.
Definition: DataTypes.hpp:306
LAInterface::ParallelMatrix ParallelMatrix
Alias for ParallelMatrix.
std::vector< string > string_array
A 1-dimensional array of geos::string types.
Definition: DataTypes.hpp:393
Array< T, 1 > array1d
Alias for 1D array.
Definition: DataTypes.hpp:176
LAInterface::ParallelVector ParallelVector
Alias for ParallelVector.
Set of parameters for a linear solver or preconditioner.
Results/stats of a linear solve.
static constexpr char const * baseDiscretizationString()
Definition: MeshBody.hpp:217
Structure to hold scoped key names.
static constexpr char const * nonlinearSolverParametersString()
static constexpr char const * solverStatisticsString()
static constexpr char const * linearSolverParametersString()
Structure to hold scoped key names.
static constexpr char const * cflFactorString()
static constexpr char const * discretizationString()
static constexpr char const * writeLinearSystemString()
static constexpr char const * targetRegionsString()
static constexpr char const * maxStableDtString()
static constexpr char const * minDtIncreaseIntervalString()
static constexpr char const * initialDtString()
static constexpr char const * meshTargetsString()