|
| | Assembler (Discretization &discretization, Model &model, const JSONValue &json) |
| |
| virtual void | reinit_vector (VectorType &vec) const override |
| |
| virtual void | attach_data_output (DataOutput< dim, VectorType > &data_out, const VectorType &solution, const VectorType &variables, const VectorType &dt_solution=VectorType(), const VectorType &residual=VectorType()) override |
| | Attach all intermediate (ldg) vectors to the data output.
|
| |
| virtual void | reinit () override |
| | Reinitialize the assembler. This is necessary if the mesh has changed, e.g. after a mesh refinement.
|
| |
| virtual void | rebuild_jacobian_sparsity () override |
| |
| virtual void | refinement_indicator (Vector< double > &indicator, const VectorType &solution_global) override |
| |
| virtual const BlockSparsityPattern & | get_sparsity_pattern_jacobian () const override |
| | Obtain the sparsity pattern of the jacobian matrix.
|
| |
| virtual const BlockSparseMatrix< NumberType > & | get_mass_matrix () const override |
| | Obtain the mass matrix.
|
| |
| virtual void | mass (VectorType &residual, const VectorType &solution_global, const VectorType &solution_global_dot, NumberType weight) override |
| | Construct the mass.
|
| |
| virtual void | residual (VectorType &residual, const VectorType &solution_global, NumberType weight, const VectorType &solution_global_dot, NumberType weight_mass, const VectorType &variables=VectorType()) override |
| | Construct the system residual, i.e. Res = grad(flux) - source.
|
| |
| virtual void | jacobian_mass (BlockSparseMatrix< NumberType > &jacobian, const VectorType &solution_global, const VectorType &solution_global_dot, NumberType alpha=1., NumberType beta=1.) override |
| |
| virtual void | jacobian (BlockSparseMatrix< NumberType > &jacobian, const VectorType &solution_global, NumberType weight, const VectorType &solution_global_dot, NumberType alpha, NumberType beta, const VectorType &variables=VectorType()) override |
| | Construct the system jacobian, i.e. dRes/du.
|
| |
| void | log (const std::string logger) |
| |
| double | average_time_reinit () const |
| |
| uint | num_reinits () const |
| |
| double | average_time_residual_assembly () const |
| |
| uint | num_residuals () const |
| |
| double | average_time_jacobian_assembly () const |
| |
| uint | num_jacobians () const |
| |
| | LDGAssemblerBase (Discretization &discretization, Model &model, const JSONValue &json) |
| |
| virtual IndexSet | get_differential_indices () const override |
| | Obtain the dofs which contain time derivatives.
|
| |
| const auto & | get_discretization () const |
| |
| auto & | get_discretization () |
| |
| virtual void | set_time (double t) override |
| | Set the current time. The assembler should usually just forward this to the numerical model.
|
| |
| double | average_time_variable_residual_assembly () |
| |
| uint | num_variable_residuals () const |
| |
| double | average_time_variable_jacobian_assembly () |
| |
| uint | num_variable_jacobians () const |
| |
| virtual void | attach_data_output (DataOutput< dim, Discretization_::VectorType > &data_out, const Discretization_::VectorType &solution, const Discretization_::VectorType &variables=Discretization_::VectorType(), const Discretization_::VectorType &dt_solution=Discretization_::VectorType(), const Discretization_::VectorType &residual=Discretization_::VectorType())=0 |
| | Attach any data output to the DataOutput object provided. This can be used to extract additional data from the solution and write it to the output file. This includes both derivatives and other spatial functions, as well as single values that can be appended to the .csv file.
|
| |
| virtual void | reinit_vector (Discretization_::VectorType &vector) const=0 |
| | Reinitialize an arbitrary vector so that it has the correct size and structure.
|
| |
| virtual void | residual_variables (Discretization_::VectorType &residual, const Discretization_::VectorType &variables, const Discretization_::VectorType &spatial_solution) |
| | When coupling the spatial discretization to additional variables, this function should calculate the residual for the additional variables.
|
| |
| virtual void | jacobian_variables (FullMatrix< NumberType > &jacobian, const Discretization_::VectorType &variables, const Discretization_::VectorType &spatial_solution) |
| | When coupling the spatial discretization to additional variables, this function should calculate the jacobian for the additional variables.
|
| |
| void | mass (Discretization_::VectorType &mass, const Discretization_::VectorType &solution_global, NumberType weight) |
| | Calculates the mass \(m_i(u)\) for an ODE.
|
| |
| virtual void | mass (Discretization_::VectorType &mass, const Discretization_::VectorType &solution_global, const Discretization_::VectorType &solution_global_dot, NumberType weight)=0 |
| | Calculates the mass \(m(u, \partial_t u)\) for a DAE.
|
| |
| void | residual (Discretization_::VectorType &residual, const Discretization_::VectorType &solution_global, NumberType weight, NumberType weight_mass, const Discretization_::VectorType &variables=Discretization_::VectorType()) |
| | Calculates the residual for an ODE.
|
| |
| virtual void | residual (Discretization_::VectorType &residual, const Discretization_::VectorType &solution_global, NumberType weight, const Discretization_::VectorType &solution_global_dot, NumberType weight_mass, const Discretization_::VectorType &variables=Discretization_::VectorType())=0 |
| | Calculates the residual for a DAE.
|
| |
| void | jacobian_mass (Discretization_::SparseMatrixType &jacobian, const Discretization_::VectorType &solution_global, NumberType mass_weight=1.) |
| | Calculates the jacobian of the mass function for an ODE.
|
| |
| virtual void | jacobian_mass (Discretization_::SparseMatrixType &jacobian, const Discretization_::VectorType &solution_global, const Discretization_::VectorType &solution_global_dot, NumberType alpha=1., NumberType beta=1.)=0 |
| | Calculates the jacobian of the mass function for a DAE.
|
| |
| void | jacobian (Discretization_::SparseMatrixType &jacobian, const Discretization_::VectorType &solution_global, NumberType weight, NumberType mass_weight, const Discretization_::VectorType &variables=Discretization_::VectorType()) |
| | Calculates the jacobian of the residual function for an ODE.
|
| |
| virtual void | jacobian (Discretization_::SparseMatrixType &jacobian, const Discretization_::VectorType &solution_global, NumberType weight, const Discretization_::VectorType &solution_global_dot, NumberType alpha, NumberType beta, const Discretization_::VectorType &variables=Discretization_::VectorType())=0 |
| | Calculates the jacobian of the residual function for a DAE.
|
| |
|
| QGauss< dim > | quadrature |
| |
| QGauss< dim - 1 > | quadrature_face |
| |
| std::vector< const DoFHandler< dim > * > | dof_handler_list |
| |
| array< BlockVector< NumberType >, Components::count_fe_subsystems()> | sol_vector |
| |
| array< BlockVector< NumberType >, Components::count_fe_subsystems()> | sol_vector_tmp |
| |
| array< Vector< NumberType >, Components::count_fe_subsystems()> | sol_vector_vec_tmp |
| |
| BlockSparsityPattern | sparsity_pattern_jacobian |
| |
| BlockSparsityPattern | sparsity_pattern_mass |
| |
| array< BlockSparsityPattern, Components::count_fe_subsystems()> | sparsity_pattern_ug |
| |
| array< BlockSparsityPattern, Components::count_fe_subsystems()> | sparsity_pattern_gu |
| |
| array< BlockSparsityPattern, Components::count_fe_subsystems()> | sparsity_pattern_wg |
| |
| array< BlockSparseMatrix< NumberType >, Components::count_fe_subsystems()> | jacobian_tmp |
| |
| BlockSparseMatrix< NumberType > | mass_matrix |
| |
| SparseMatrix< NumberType > | component_mass_matrix_inverse |
| |
| array< BlockSparseMatrix< NumberType >, Components::count_fe_subsystems()> | j_ug |
| |
| array< BlockSparseMatrix< NumberType >, Components::count_fe_subsystems()> | j_gu |
| |
| array< BlockSparseMatrix< NumberType >, Components::count_fe_subsystems()> | j_wg |
| |
| array< BlockSparseMatrix< NumberType >, Components::count_fe_subsystems()> | j_wg_tmp |
| |
| std::vector< double > | timings_reinit |
| |
| std::vector< double > | timings_residual |
| |
| std::vector< double > | timings_jacobian |
| |
| array< bool, Components::count_fe_subsystems()> | ldg_matrix_built |
| |
| array< bool, Components::count_fe_subsystems()> | jacobian_tmp_built |
| |
| Discretization & | discretization |
| |
| const DoFHandler< dim > & | dof_handler |
| |
| const FiniteElement< dim > & | fe |
| |
| const Mapping< dim > & | mapping |
| |
| Model & | model |
| |
| uint | batch_size |
| |
| uint | threads |
| |
| const double | EoM_abs_tol |
| |
| const uint | EoM_max_iter |
| |
| std::vector< types::global_dof_index > | extractor_dof_indices |
| |
| Point< dim > | EoM |
| |
| DoFHandler< dim >::cell_iterator | EoM_cell |
| |
| FullMatrix< NumberType > | extractor_jacobian_u |
| |
| DoFHandler< dim >::cell_iterator | old_EoM_cell |
| |
| std::vector< double > | timings_variable_jacobian |
| |
| std::vector< double > | timings_variable_residual |
| |
| Discretization & | discretization |
| |
| Model & | model |
| |
| const FiniteElement< dim > & | fe |
| |
| const DoFHandler< dim > & | dof_handler |
| |
| const Mapping< dim > & | mapping |
| |
| uint | threads |
| |
| uint | batch_size |
| |
| DoFHandler< dim >::cell_iterator | EoM_cell |
| |
| DoFHandler< dim >::cell_iterator | old_EoM_cell |
| |
| const double | EoM_abs_tol |
| |
| const uint | EoM_max_iter |
| |
| Point< dim > | EoM |
| |
| FullMatrix< NumberType > | extractor_jacobian |
| |
| FullMatrix< NumberType > | extractor_jacobian_u |
| |
| FullMatrix< NumberType > | extractor_jacobian_du |
| |
| FullMatrix< NumberType > | extractor_jacobian_ddu |
| |
| std::vector< types::global_dof_index > | extractor_dof_indices |
| |
| std::vector< double > | timings_variable_residual |
| |
| std::vector< double > | timings_variable_jacobian |
| |
The LDG assembler that can be used for any LDG scheme, with as many levels as one wants.
- Template Parameters
-