KratosMultiphysics
KRATOS Multiphysics (Kratos) is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.
|
#include <pfem_2_monolithic_slip_strategy.h>
Public Member Functions | |
Private Operations | |
void | InitializeStrategy (SolverSettingsType &rSolverConfig, bool PredictorCorrector) |
Un accessible methods | |
FSStrategy & | operator= (FSStrategy const &rOther) |
Assignment operator. More... | |
FSStrategy (FSStrategy const &rOther) | |
Copy constructor. More... | |
Public Member Functions inherited from Kratos::ImplicitSolvingStrategy< TSparseSpace, TDenseSpace, TLinearSolver > | |
ImplicitSolvingStrategy () | |
Default constructor. More... | |
ImplicitSolvingStrategy (ModelPart &rModelPart, Parameters ThisParameters) | |
Default constructor. (with parameters) More... | |
ImplicitSolvingStrategy (ModelPart &rModelPart, bool MoveMeshFlag=false) | |
Default constructor. More... | |
virtual | ~ImplicitSolvingStrategy () |
BaseType::Pointer | Create (ModelPart &rModelPart, Parameters ThisParameters) const override |
Create method. More... | |
void | SetRebuildLevel (int Level) override |
This sets the build level. More... | |
int | GetRebuildLevel () const override |
This returns the build level. More... | |
void | SetStiffnessMatrixIsBuilt (const bool StiffnessMatrixIsBuilt) |
This method sets the flag mStiffnessMatrixIsBuilt. More... | |
bool | GetStiffnessMatrixIsBuilt () const |
This method gets the flag mStiffnessMatrixIsBuilt. More... | |
std::string | Info () const override |
Turn back information as a string. More... | |
KRATOS_CLASS_POINTER_DEFINITION (ImplicitSolvingStrategy) | |
Parameters | GetDefaultParameters () const override |
This method provides the defaults parameters to avoid conflicts between the different constructors. More... | |
Public Member Functions inherited from Kratos::SolvingStrategy< TSparseSpace, TDenseSpace > | |
SolvingStrategy () | |
Default constructor. More... | |
SolvingStrategy (ModelPart &rModelPart, Parameters ThisParameters) | |
Default constructor. (with parameters) More... | |
SolvingStrategy (ModelPart &rModelPart, bool MoveMeshFlag=false) | |
Default constructor. More... | |
virtual | ~SolvingStrategy () |
virtual void | PrintInfo (std::ostream &rOStream) const |
Print information about this object. More... | |
virtual void | PrintData (std::ostream &rOStream) const |
Print object's data. More... | |
KRATOS_CLASS_POINTER_DEFINITION (SolvingStrategy) | |
virtual void | Predict () |
Operation to predict the solution ... if it is not called a trivial predictor is used in which the values of the solution step of interest are assumed equal to the old values. More... | |
virtual void | Initialize () |
Initialization of member variables and prior operations. More... | |
virtual double | Solve () |
The problem of interest is solved. More... | |
virtual void | Clear () |
Clears the internal storage. More... | |
virtual bool | IsConverged () |
This should be considered as a "post solution" convergence check which is useful for coupled analysis. More... | |
virtual void | CalculateOutputData () |
This operations should be called before printing the results when non trivial results (e.g. stresses) need to be calculated given the solution of the step. More... | |
virtual void | InitializeSolutionStep () |
Performs all the required operations that should be done (for each step) before solving the solution step. More... | |
virtual void | FinalizeSolutionStep () |
Performs all the required operations that should be done (for each step) after solving the solution step. More... | |
virtual bool | SolveSolutionStep () |
Solves the current step. This function returns true if a solution has been found, false otherwise. More... | |
virtual void | SetEchoLevel (const int Level) |
This sets the level of echo for the solving strategy. More... | |
int | GetEchoLevel () |
This returns the level of echo for the solving strategy. More... | |
void | SetMoveMeshFlag (bool Flag) |
This function sets the flag that says if the mesh is moved. More... | |
bool | MoveMeshFlag () |
This function returns the flag that says if the mesh is moved. More... | |
bool | GetMoveMeshFlag () |
This function returns the flag that says if the mesh is moved. More... | |
virtual void | MoveMesh () |
This function is designed to move the mesh. More... | |
ModelPart & | GetModelPart () |
Operations to get the pointer to the model. More... | |
const ModelPart & | GetModelPart () const |
Operations to get the pointer to the model. More... | |
virtual double | GetResidualNorm () |
Operations to get the residual norm. More... | |
virtual int | Check () |
Function to perform expensive checks. More... | |
virtual TSystemMatrixType & | GetSystemMatrix () |
This method returns the LHS matrix. More... | |
virtual TSystemVectorType & | GetSystemVector () |
This method returns the RHS vector. More... | |
virtual TSystemVectorType & | GetSolutionVector () |
This method returns the solution vector. More... | |
Public Attributes | |
TLinearSolver::Pointer bool double int unsigned int | DomainSize |
double | mPressureTolerance |
unsigned int | mMaxVelocityIter |
unsigned int | mMaxPressureIter |
unsigned int | mDomainSize |
unsigned int | mTimeOrder |
bool | mPredictorCorrector |
bool | mUseSlipConditions |
bool | mReformDofSet |
StrategyPointerType | mpMomentumStrategy |
Scheme for the solution of the momentum equation. More... | |
StrategyPointerType | mpPressureStrategy |
Scheme for the solution of the mass equation. More... | |
std::vector< Process::Pointer > | mExtraIterationSteps |
const Kratos::Variable< int > & | mrPeriodicIdVar |
Life Cycle | |
TLinearSolver::Pointer | pLinearSolver |
TLinearSolver::Pointer bool | ReformDofSet = true |
TLinearSolver::Pointer bool double | Tol = 0.01 |
TLinearSolver::Pointer bool double int | MaxIterations = 3 |
PFEM2MonolithicSlipStrategy (ModelPart &rModelPart, SolverSettingsType &rSolverConfig, bool PredictorCorrector) | |
PFEM2MonolithicSlipStrategy (ModelPart &rModelPart, SolverSettingsType &rSolverConfig, bool PredictorCorrector, const Kratos::Variable< int > &PeriodicVar) | |
SolvingStrategyPython (self.model_part, self.time_scheme, self.monolithic_linear_solver, self.conv_criteria, CalculateReactionFlag, ReformDofSetAtEachStep, MoveMeshFlag) self.monolithic_solver.SetMaximumIterations(self.maximum_nonlin_iterations) PFEM2MonolithicSlipStrategy(ModelPart &rModelPart | |
Additional Inherited Members | |
Static Public Member Functions inherited from Kratos::ImplicitSolvingStrategy< TSparseSpace, TDenseSpace, TLinearSolver > | |
static std::string | Name () |
Returns the name of the class as used in the settings (snake_case format) More... | |
Static Public Member Functions inherited from Kratos::SolvingStrategy< TSparseSpace, TDenseSpace > | |
static std::string | Name () |
Returns the name of the class as used in the settings (snake_case format) More... | |
Protected Member Functions inherited from Kratos::ImplicitSolvingStrategy< TSparseSpace, TDenseSpace, TLinearSolver > | |
void | AssignSettings (const Parameters ThisParameters) override |
This method assigns settings to member variables. More... | |
Protected Member Functions inherited from Kratos::SolvingStrategy< TSparseSpace, TDenseSpace > | |
virtual Parameters | ValidateAndAssignParameters (Parameters ThisParameters, const Parameters DefaultParameters) const |
This method validate and assign default parameters. More... | |
Protected Attributes inherited from Kratos::ImplicitSolvingStrategy< TSparseSpace, TDenseSpace, TLinearSolver > | |
int | mRebuildLevel |
bool | mStiffnessMatrixIsBuilt |
The current rebuild level. More... | |
Protected Attributes inherited from Kratos::SolvingStrategy< TSparseSpace, TDenseSpace > | |
int | mEchoLevel |
typedef ImplicitSolvingStrategy<TSparseSpace, TDenseSpace, TLinearSolver> Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::BaseType |
typedef BaseType::DofsArrayType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::DofsArrayType |
typedef BaseType::LocalSystemMatrixType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::LocalSystemMatrixType |
typedef BaseType::LocalSystemVectorType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::LocalSystemVectorType |
typedef boost::shared_ptr< FSStrategy<TSparseSpace, TDenseSpace, TLinearSolver> > Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::Pointer |
Counted pointer of FSStrategy.
typedef SolverSettings<TSparseSpace,TDenseSpace,TLinearSolver> Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::SolverSettingsType |
typedef ImplicitSolvingStrategy<TSparseSpace, TDenseSpace, TLinearSolver>::Pointer Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::StrategyPointerType |
typedef BaseType::TDataType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::TDataType |
typedef BaseType::TSystemMatrixType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::TSystemMatrixType |
typedef BaseType::TSystemVectorType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::TSystemVectorType |
|
inline |
|
inline |
|
inline |
Copy constructor.
|
inline |
|
inline |
Assignment operator.
Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::SolvingStrategyPython | ( | self. | model_part, |
self. | time_scheme, | ||
self. | monolithic_linear_solver, | ||
self. | conv_criteria, | ||
CalculateReactionFlag | , | ||
ReformDofSetAtEachStep | , | ||
MoveMeshFlag | |||
) | & |
TLinearSolver::Pointer bool double int unsigned int Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::DomainSize |
TLinearSolver::Pointer bool double int Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::MaxIterations = 3 |
unsigned int Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mDomainSize |
std::vector< Process::Pointer > Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mExtraIterationSteps |
unsigned int Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mMaxPressureIter |
unsigned int Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mMaxVelocityIter |
StrategyPointerType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mpMomentumStrategy |
Scheme for the solution of the momentum equation.
StrategyPointerType Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mpPressureStrategy |
Scheme for the solution of the mass equation.
bool Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mPredictorCorrector |
double Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mPressureTolerance |
bool Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mReformDofSet |
const Kratos::Variable<int>& Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mrPeriodicIdVar |
unsigned int Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mTimeOrder |
bool Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::mUseSlipConditions |
TLinearSolver::Pointer Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::pLinearSolver |
TLinearSolver::Pointer bool Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::ReformDofSet = true |
TLinearSolver::Pointer bool double Kratos::PFEM2MonolithicSlipStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::Tol = 0.01 |