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.
List of all members
Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver > Class Template Reference

#include <structure_adjoint_sensitivity_strategy.h>

Inheritance diagram for Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >:
Collaboration diagram for Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >:

Public Member Functions

Life Cycle
 StructureAdjointSensitivityStrategy (ModelPart &rStructureModelPart, typename TLinearSolver::Pointer pNewLinearSolver, const int dimension=3)
 
 ~StructureAdjointSensitivityStrategy () override
 virtual ~StructureAdjointSensitivityStrategy() More...
 
Operations
void ComputeStrainEnergySensitivities ()
 Computes DCDX sensitivities from the adjoint solution. More...
 
void ComputeVolumeFractionSensitivities ()
 Computes DVDX sensitivities from the adjoint solution. 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 std::string Info () const
 Turn back information as a string. More...
 
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 ClassType::Pointer Create (ModelPart &rModelPart, Parameters ThisParameters) const
 Create method. More...
 
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 SetRebuildLevel (int Level)
 Set the Rebuild Level value This functions sets the rebuild level of the strategy It is only intended to be used in implicit strategies. More...
 
virtual int GetRebuildLevel () const
 Get the Rebuild Level value This function returns the rebuild level of the strategy It is only intended to be used in implicit strategies. More...
 
virtual void MoveMesh ()
 This function is designed to move the mesh. More...
 
ModelPartGetModelPart ()
 Operations to get the pointer to the model. More...
 
const ModelPartGetModelPart () 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 Parameters GetDefaultParameters () const
 This method provides the defaults parameters to avoid conflicts between the different constructors. More...
 
virtual TSystemMatrixTypeGetSystemMatrix ()
 This method returns the LHS matrix. More...
 
virtual TSystemVectorTypeGetSystemVector ()
 This method returns the RHS vector. More...
 
virtual TSystemVectorTypeGetSolutionVector ()
 This method returns the solution vector. More...
 

Type Definitions

typedef SolvingStrategy< TSparseSpace, TDenseSpace > BaseType
 
typedef Scheme< TSparseSpace, TDenseSpace >::Pointer SchemePointerType
 
typedef BuilderAndSolver< TSparseSpace, TDenseSpace, TLinearSolver >::Pointer BuilderAndSolverPointerType
 
 KRATOS_CLASS_POINTER_DEFINITION (StructureAdjointSensitivityStrategy)
 

Additional Inherited Members

- Public Types inherited from Kratos::SolvingStrategy< TSparseSpace, TDenseSpace >
typedef TSparseSpace::DataType TDataType
 
typedef TSparseSpace::MatrixType TSystemMatrixType
 
typedef TSparseSpace::VectorType TSystemVectorType
 
typedef TSparseSpace::MatrixPointerType TSystemMatrixPointerType
 
typedef TSparseSpace::VectorPointerType TSystemVectorPointerType
 
typedef TDenseSpace::MatrixType LocalSystemMatrixType
 
typedef TDenseSpace::VectorType LocalSystemVectorType
 
typedef SolvingStrategy< TSparseSpace, TDenseSpace > ClassType
 
typedef ModelPart::DofType TDofType
 
typedef ModelPart::DofsArrayType DofsArrayType
 
typedef ModelPart::NodesContainerType NodesArrayType
 
typedef ModelPart::ElementsContainerType ElementsArrayType
 
typedef ModelPart::ConditionsContainerType ConditionsArrayType
 
- 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::SolvingStrategy< TSparseSpace, TDenseSpace >
virtual Parameters ValidateAndAssignParameters (Parameters ThisParameters, const Parameters DefaultParameters) const
 This method validate and assign default parameters. More...
 
virtual void AssignSettings (const Parameters ThisParameters)
 This method assigns settings to member variables. More...
 
- Protected Attributes inherited from Kratos::SolvingStrategy< TSparseSpace, TDenseSpace >
int mEchoLevel
 

Detailed Description

template<class TSparseSpace, class TDenseSpace, class TLinearSolver>
class Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >

Solution strategy to calculate the sensitivities. Derives from the previously defined Solving Strategy

Member Typedef Documentation

◆ BaseType

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
typedef SolvingStrategy<TSparseSpace,TDenseSpace> Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::BaseType

◆ BuilderAndSolverPointerType

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
typedef BuilderAndSolver<TSparseSpace,TDenseSpace,TLinearSolver>::Pointer Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::BuilderAndSolverPointerType

◆ SchemePointerType

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
typedef Scheme<TSparseSpace,TDenseSpace>::Pointer Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::SchemePointerType

Constructor & Destructor Documentation

◆ StructureAdjointSensitivityStrategy()

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::StructureAdjointSensitivityStrategy ( ModelPart rStructureModelPart,
typename TLinearSolver::Pointer  pNewLinearSolver,
const int  dimension = 3 
)
inline

◆ ~StructureAdjointSensitivityStrategy()

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::~StructureAdjointSensitivityStrategy ( )
inlineoverride

Member Function Documentation

◆ ComputeStrainEnergySensitivities()

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
void Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::ComputeStrainEnergySensitivities ( )
inline

Computes DCDX sensitivities from the adjoint solution.

◆ ComputeVolumeFractionSensitivities()

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
void Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::ComputeVolumeFractionSensitivities ( )
inline

Computes DVDX sensitivities from the adjoint solution.

◆ KRATOS_CLASS_POINTER_DEFINITION()

template<class TSparseSpace , class TDenseSpace , class TLinearSolver >
Kratos::StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >::KRATOS_CLASS_POINTER_DEFINITION ( StructureAdjointSensitivityStrategy< TSparseSpace, TDenseSpace, TLinearSolver >  )

The documentation for this class was generated from the following file: