21namespace HydroMechanics
 
   23class HydroMechanicsLocalAssemblerInterface;
 
   25template <
int DisplacementDim>
 
   28    static_assert(DisplacementDim == 2 || DisplacementDim == 3,
 
   29                  "Currently LIE::HydroMechanicsProcess " 
   30                  "supports only 2D or 3D.");
 
   36        std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&&
 
   38        std::vector<std::unique_ptr<ParameterLib::ParameterBase>> 
const&
 
   40        unsigned const integration_order,
 
   41        std::vector<std::vector<std::reference_wrapper<ProcessVariable>>>&&
 
   45        bool const use_monolithic_scheme);
 
   53                                     std::vector<GlobalVector*> 
const& x_prev,
 
   54                                     double const t, 
double const dt,
 
   55                                     int const process_id) 
override;
 
   65        unsigned const integration_order) 
override;
 
   68                                 std::vector<GlobalVector*> 
const& x,
 
   69                                 std::vector<GlobalVector*> 
const& x_prev,
 
   74        const double t, 
double const dt, std::vector<GlobalVector*> 
const& x,
 
   75        std::vector<GlobalVector*> 
const& x_prev, 
int const process_id,
 
   78                                    double const t, 
double const dt,
 
   79                                    int const process_id) 
override;
 
   93    std::vector<std::vector<MeshLib::Element*>>
 
   96    std::vector<std::unique_ptr<MeshLib::MeshSubset const>>
 
 
Global vector based on Eigen vector.
HydroMechanicsProcess(std::string name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, std::vector< std::vector< std::reference_wrapper< ProcessVariable > > > &&process_variables, HydroMechanicsProcessData< DisplacementDim > &&process_data, SecondaryVariableCollection &&secondary_variables, bool const use_monolithic_scheme)
void postTimestepConcreteProcess(std::vector< GlobalVector * > const &x, std::vector< GlobalVector * > const &x_prev, double const t, double const dt, int const process_id) override
void initializeConcreteProcess(NumLib::LocalToGlobalIndexMap const &dof_table, MeshLib::Mesh const &mesh, unsigned const integration_order) override
Process specific initialization called by initialize().
std::vector< std::unique_ptr< MeshLib::MeshSubset const  > > _mesh_subset_fracture_nodes
std::vector< std::vector< MeshLib::Node * > > _vec_fracture_nodes
std::vector< MeshLib::Element * > _vec_matrix_elements
std::vector< int > _vec_fracture_mat_IDs
std::vector< std::vector< MeshLib::Element * > > _vec_junction_fracture_matrix_elements
void preTimestepConcreteProcess(std::vector< GlobalVector * > const &x, double const t, double const dt, int const process_id) override
std::unique_ptr< MeshLib::MeshSubset const  > _mesh_subset_matrix_nodes
std::vector< MeshLib::Node * > _vec_junction_nodes
void assembleConcreteProcess(const double t, double const dt, std::vector< GlobalVector * > const &x, std::vector< GlobalVector * > const &x_prev, int const process_id, GlobalMatrix &M, GlobalMatrix &K, GlobalVector &b) override
void constructDofTable() override
std::unique_ptr< MeshLib::MeshSubset const  > _mesh_subset_junction_nodes
void updateElementLevelSets(MeshLib::Element const &e, MeshLib::Mesh &mesh)
std::unique_ptr< MeshLib::MeshSubset const  > _mesh_subset_nodes_p
std::vector< std::vector< MeshLib::Element * > > _vec_fracture_elements
HydroMechanicsProcessData< DisplacementDim > _process_data
std::vector< MeshLib::Node * > _mesh_nodes_p
void assembleWithJacobianConcreteProcess(const double t, double const dt, std::vector< GlobalVector * > const &x, std::vector< GlobalVector * > const &x_prev, int const process_id, GlobalVector &b, GlobalMatrix &Jac) override
bool isLinear() const override
std::vector< std::unique_ptr< LocalAssemblerInterface > > _local_assemblers
std::vector< std::vector< MeshLib::Element * > > _vec_fracture_matrix_elements
Handles configuration of several secondary variables from the project file.