|
| KRATOS_CLASS_POINTER_DEFINITION (PFEM2_Explicit_Strategy) |
|
| PFEM2_Explicit_Strategy (ModelPart &model_part, const int dimension, const bool MoveMeshFlag) |
|
virtual | ~PFEM2_Explicit_Strategy () |
|
void | CreatePartition (unsigned int number_of_threads, const int number_of_rows, vector< unsigned int > &partitions) |
|
void | AssembleLoop () |
|
void | InitializeSolutionStep () override |
| Performs all the required operations that should be done (for each step) before solving the solution step. More...
|
|
void | FinalizeSolutionStep () override |
| Performs all the required operations that should be done (for each step) after solving the solution step. More...
|
|
void | SetToZeroVariablesInViscousIterations (ProcessInfo &CurrentProcessInfo) |
|
void | UpdateLoopForViscousIterationsWithNormalization (ProcessInfo &CurrentProcessInfo) |
|
void | SetToZeroVariablesInPresureIterations (ProcessInfo &CurrentProcessInfo) |
|
void | SetToZeroVariablesForVolumetricStrain (ProcessInfo &CurrentProcessInfo) |
|
void | SetToZeroVariablesForPressure (ProcessInfo &CurrentProcessInfo) |
|
void | UpdateLoopForPressureIterationsWithNormalization (ProcessInfo &CurrentProcessInfo) |
|
void | SetToZeroVariablesInPresureProjection (ProcessInfo &CurrentProcessInfo) |
|
void | NormalizePressureProjection (ProcessInfo &CurrentProcessInfo) |
|
void | UpdateLoopForVolumetricStrain (ProcessInfo &CurrentProcessInfo) |
|
void | UpdateLoopForPressure (ProcessInfo &CurrentProcessInfo) |
|
void | SetToZeroVariablesInPresureViscousCorrection (ProcessInfo &CurrentProcessInfo) |
|
void | UpdateLoopForPressureViscousCorrection (ProcessInfo &CurrentProcessInfo) |
|
void | SetToZeroMassAndArea (ProcessInfo &CurrentProcessInfo) |
|
void | UpdateLoopForMassAndArea (ProcessInfo &CurrentProcessInfo) |
|
| 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...
|
|
| 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 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...
|
|