|
Flow123d
DF_patch_fe_darcy_complete-579fe1e
|
#include <assembly_dg.hh>


Public Types | |
| typedef TEqData::EqFields | EqFields |
| typedef TEqData | EqData |
Public Member Functions | |
| StiffnessAssemblyDG (EqData *eq_data, AssemblyInternals *asm_internals) | |
| Constructor. More... | |
| ~StiffnessAssemblyDG () | |
| Destructor. More... | |
| void | initialize () |
| Initialize auxiliary vectors and other data members. More... | |
| void | cell_integral (DHCellAccessor cell, unsigned int element_patch_idx) |
| Assembles the cell (volume) integral into the stiffness matrix. More... | |
| void | boundary_side_integral (DHCellSide cell_side) |
| Assembles the fluxes on the boundary. More... | |
| void | edge_integral (RangeConvert< DHEdgeSide, DHCellSide > edge_side_range) |
| Assembles the fluxes between sides of elements of the same dimension. More... | |
| void | dimjoin_intergral (DHCellAccessor cell_lower_dim, DHCellSide neighb_side) |
| Assembles the fluxes between elements of different dimensions. More... | |
Public Member Functions inherited from AssemblyBasePatch< dim > | |
| AssemblyBasePatch (unsigned int quad_order, AssemblyInternals *asm_internals) | |
| unsigned int | n_dofs () |
| Return number of DOFs. More... | |
| unsigned int | n_dofs_high () |
| Return number of DOFs of higher dim element. More... | |
Public Member Functions inherited from AssemblyBase< dim > | |
| AssemblyBase (unsigned int quad_order, AssemblyInternals *asm_internals) | |
| virtual | ~AssemblyBase () |
| Destructor. More... | |
| virtual void | cell_integral (FMT_UNUSED DHCellAccessor cell, FMT_UNUSED unsigned int element_patch_idx) |
| virtual void | boundary_side_integral (FMT_UNUSED DHCellSide cell_side) |
| virtual void | edge_integral (FMT_UNUSED RangeConvert< DHEdgeSide, DHCellSide > edge_side_range) |
| virtual void | dimjoin_intergral (FMT_UNUSED DHCellAccessor cell_lower_dim, FMT_UNUSED DHCellSide neighb_side) |
| virtual void | begin () |
| virtual void | end () |
| std::shared_ptr< BulkIntegralAcc< dim > > | create_bulk_integral (Quadrature *quad) |
| std::shared_ptr< EdgeIntegralAcc< dim > > | create_edge_integral (Quadrature *quad) |
| std::shared_ptr< CouplingIntegralAcc< dim > > | create_coupling_integral (Quadrature *quad) |
| std::shared_ptr< BoundaryIntegralAcc< dim > > | create_boundary_integral (Quadrature *quad) |
| bool | add_integrals_of_computing_step (DHCellAccessor cell) |
| virtual void | assemble_cell_integrals () |
| void | assemble_boundary_side_integrals () |
| void | assemble_edge_integrals () |
| void | assemble_neighbour_integrals () |
| void | set_min_edge_sides (unsigned int val) |
| Setter of min_edge_sides_. More... | |
| void | clean_integral_data () |
| const DimIntegrals< dim > & | integrals () const |
| Getter of integrals_. More... | |
| const IntegralData & | integral_data () const |
| Getter of integral_data_. More... | |
Static Public Member Functions | |
| static constexpr const char * | name () |
Private Attributes | |
| EqFields * | eq_fields_ |
| Data objects shared with TransportDG. More... | |
| EqData * | eq_data_ |
| FieldSet | used_fields_ |
| Sub field set contains fields used in calculation. More... | |
| unsigned int | ndofs_ |
| Number of dofs. More... | |
| unsigned int | qsize_lower_dim_ |
| Size of quadrature of dim-1. More... | |
| vector< LongIdx > | dof_indices_ |
| Vector of global DOF indices. More... | |
| vector< vector< LongIdx > > | side_dof_indices_ |
| Vector of vectors of side DOF indices. More... | |
| vector< LongIdx > | side_dof_indices_vb_ |
| Vector of side DOF indices (assemble element-side fluxex) More... | |
| vector< PetscScalar > | local_matrix_ |
| Auxiliary vector for assemble methods. More... | |
| vector< double * > | averages |
| Auxiliary storage for averages of shape functions. More... | |
| vector< double * > | waverages |
| Auxiliary storage for weighted averages of shape functions. More... | |
| vector< double * > | jumps |
| Auxiliary storage for jumps of shape functions. More... | |
| std::shared_ptr< BulkIntegralAcc< dim > > | conc_bulk_integral_ |
| Bulk integral of assembly class. More... | |
| std::shared_ptr< EdgeIntegralAcc< dim > > | conc_edge_integral_ |
| Edge integral of assembly class. More... | |
| std::shared_ptr< BoundaryIntegralAcc< dim > > | conc_bdr_integral_ |
| Boundary integral of assembly class. More... | |
| std::shared_ptr< CouplingIntegralAcc< dim > > | conc_join_integral_ |
| Coupling integral of assembly class. More... | |
| FeQ< Scalar > | JxW_ |
| FeQ< Scalar > | JxW_side_ |
| FeQ< Scalar > | JxW_bdr_ |
| FeQ< Scalar > | JxW_join_ |
| ElQ< Vector > | normal_ |
| ElQ< Vector > | normal_bdr_ |
| ElQ< Vector > | normal_join_ |
| FeQArray< Scalar > | conc_shape_ |
| FeQArray< Scalar > | conc_shape_side_ |
| FeQArray< Scalar > | conc_shape_bdr_ |
| FeQArray< Vector > | conc_grad_ |
| FeQArray< Vector > | conc_grad_sidw_ |
| FeQArray< Vector > | conc_grad_bdr_ |
| FeQJoin< Scalar > | conc_join_shape_ |
Friends | |
| template<template< IntDim... > class DimAssembly> | |
| class | GenericAssembly |
Additional Inherited Members | |
Protected Member Functions inherited from AssemblyBase< dim > | |
| AssemblyBase () | |
| void | add_volume_integrals (const DHCellAccessor &cell) |
| void | add_edge_integrals (const DHCellSide &cell_side) |
| void | add_boundary_integrals (const DHCellSide &bdr_side) |
| void | add_coupling_integrals (const DHCellAccessor &cell) |
| template<template< unsigned int > class IntegralAcc> | |
| void | add_side_points (std::shared_ptr< IntegralAcc< dim > > &integral, DHCellSide cell_side, PatchPointValues< 3 > &ppv) |
| std::string | print_update_flags (UpdateFlags u) const |
| Print update flags to string format. More... | |
Protected Attributes inherited from AssemblyBase< dim > | |
| Quadrature * | quad_ |
| Quadrature used in assembling methods. More... | |
| Quadrature * | quad_low_ |
| Quadrature used in assembling methods (dim-1). More... | |
| DimIntegrals< dim > | integrals_ |
| Set of used integrals. More... | |
| AssemblyInternals * | asm_internals_ |
| Holds shared internals data with GeneriAssembly. More... | |
| unsigned int | min_edge_sides_ |
| IntegralData | integral_data_ |
| Holds patch data for computing different types of integrals. More... | |
Auxiliary container class for Finite element and related objects of given dimension.
Definition at line 224 of file assembly_dg.hh.
| typedef TEqData StiffnessAssemblyDG< dim, TEqData >::EqData |
Definition at line 228 of file assembly_dg.hh.
| typedef TEqData::EqFields StiffnessAssemblyDG< dim, TEqData >::EqFields |
Definition at line 227 of file assembly_dg.hh.
|
inline |
Constructor.
Definition at line 233 of file assembly_dg.hh.
|
inline |
Destructor.
Definition at line 264 of file assembly_dg.hh.
|
inline |
Assembles the fluxes on the boundary.
Definition at line 331 of file assembly_dg.hh.
|
inline |
Assembles the cell (volume) integral into the stiffness matrix.
Definition at line 298 of file assembly_dg.hh.
|
inline |
Assembles the fluxes between elements of different dimensions.
Definition at line 578 of file assembly_dg.hh.
|
inline |
Assembles the fluxes between sides of elements of the same dimension.
Definition at line 410 of file assembly_dg.hh.
|
inline |
Initialize auxiliary vectors and other data members.
Definition at line 271 of file assembly_dg.hh.
|
inlinestaticconstexpr |
Definition at line 230 of file assembly_dg.hh.
|
friend |
Definition at line 683 of file assembly_dg.hh.
|
private |
Auxiliary storage for averages of shape functions.
Definition at line 658 of file assembly_dg.hh.
|
private |
Boundary integral of assembly class.
Definition at line 664 of file assembly_dg.hh.
|
private |
Bulk integral of assembly class.
Definition at line 662 of file assembly_dg.hh.
|
private |
Edge integral of assembly class.
Definition at line 663 of file assembly_dg.hh.
|
private |
Definition at line 677 of file assembly_dg.hh.
|
private |
Definition at line 679 of file assembly_dg.hh.
|
private |
Definition at line 678 of file assembly_dg.hh.
|
private |
Coupling integral of assembly class.
Definition at line 665 of file assembly_dg.hh.
|
private |
Definition at line 680 of file assembly_dg.hh.
|
private |
Definition at line 674 of file assembly_dg.hh.
|
private |
Definition at line 676 of file assembly_dg.hh.
|
private |
Definition at line 675 of file assembly_dg.hh.
|
private |
Vector of global DOF indices.
Definition at line 653 of file assembly_dg.hh.
|
private |
Definition at line 645 of file assembly_dg.hh.
|
private |
Data objects shared with TransportDG.
Definition at line 644 of file assembly_dg.hh.
|
private |
Auxiliary storage for jumps of shape functions.
Definition at line 660 of file assembly_dg.hh.
|
private |
Definition at line 667 of file assembly_dg.hh.
|
private |
Definition at line 669 of file assembly_dg.hh.
|
private |
Definition at line 670 of file assembly_dg.hh.
|
private |
Definition at line 668 of file assembly_dg.hh.
|
private |
Auxiliary vector for assemble methods.
Definition at line 656 of file assembly_dg.hh.
|
private |
Number of dofs.
Definition at line 650 of file assembly_dg.hh.
|
private |
Definition at line 671 of file assembly_dg.hh.
|
private |
Definition at line 672 of file assembly_dg.hh.
|
private |
Definition at line 673 of file assembly_dg.hh.
|
private |
Size of quadrature of dim-1.
Definition at line 651 of file assembly_dg.hh.
|
private |
Vector of vectors of side DOF indices.
Definition at line 654 of file assembly_dg.hh.
|
private |
Vector of side DOF indices (assemble element-side fluxex)
Definition at line 655 of file assembly_dg.hh.
|
private |
Sub field set contains fields used in calculation.
Definition at line 648 of file assembly_dg.hh.
|
private |
Auxiliary storage for weighted averages of shape functions.
Definition at line 659 of file assembly_dg.hh.