|
| FEMAssembler (Discretization &discretization, Model &model, const JSONValue &json) |
|
virtual IndexSet | get_differential_indices () const override |
| Obtain the dofs which contain time derivatives.
|
|
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 |
|
const auto & | get_discretization () const |
|
auto & | get_discretization () |
|
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 ()=0 |
|
virtual void | set_time (double t) override |
| Set the current time. The assembler should usually just forward this to the numerical model.
|
|
virtual void | refinement_indicator (Vector< double > &, const VectorType &)=0 |
|
virtual void | residual_variables (VectorType &residual, const VectorType &variables, const VectorType &spatial_solution) override |
|
virtual void | jacobian_variables (FullMatrix< NumberType > &jacobian, const VectorType &variables, const VectorType &spatial_solution) override |
|
void | readouts (DataOutput< dim, VectorType > &data_out, const VectorType &solution_global, const VectorType &variables) const |
|
void | extract (std::array< NumberType, Components::count_extractors()> &data, const VectorType &solution_global, const VectorType &variables, bool search_EoM, bool set_EoM, bool postprocess) const |
|
bool | jacobian_extractors (FullMatrix< NumberType > &extractor_jacobian, const VectorType &solution_global, const VectorType &variables) |
|
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, VectorType > &data_out, const VectorType &solution, const VectorType &variables=VectorType(), const VectorType &dt_solution=VectorType(), const VectorType &residual=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 const get_type::SparsityPattern< SparseMatrixType > & | get_sparsity_pattern_jacobian () const=0 |
| Obtain the sparsity pattern of the jacobian matrix.
|
|
virtual void | reinit_vector (VectorType &vector) const=0 |
| Reinitialize an arbitrary vector so that it has the correct size and structure.
|
|
virtual const SparseMatrixType & | get_mass_matrix () const=0 |
| Obtain the mass matrix.
|
|
virtual void | residual_variables (VectorType &residual, const VectorType &variables, const 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 VectorType &variables, const VectorType &spatial_solution) |
| When coupling the spatial discretization to additional variables, this function should calculate the jacobian for the additional variables.
|
|
void | mass (VectorType &mass, const VectorType &solution_global, NumberType weight) |
| Calculates the mass \(m_i(u)\) for an ODE.
|
|
virtual void | mass (VectorType &mass, const VectorType &solution_global, const VectorType &solution_global_dot, NumberType weight)=0 |
| Calculates the mass \(m(u, \partial_t u)\) for a DAE.
|
|
void | residual (VectorType &residual, const VectorType &solution_global, NumberType weight, NumberType weight_mass, const VectorType &variables=VectorType()) |
| Calculates the residual for an ODE.
|
|
virtual void | residual (VectorType &residual, const VectorType &solution_global, NumberType weight, const VectorType &solution_global_dot, NumberType weight_mass, const VectorType &variables=VectorType())=0 |
| Calculates the residual for a DAE.
|
|
void | jacobian_mass (SparseMatrixType &jacobian, const VectorType &solution_global, NumberType mass_weight=1.) |
| Calculates the jacobian of the mass function for an ODE.
|
|
virtual void | jacobian_mass (SparseMatrixType &jacobian, const VectorType &solution_global, const VectorType &solution_global_dot, NumberType alpha=1., NumberType beta=1.)=0 |
| Calculates the jacobian of the mass function for a DAE.
|
|
void | jacobian (SparseMatrixType &jacobian, const VectorType &solution_global, NumberType weight, NumberType mass_weight, const VectorType &variables=VectorType()) |
| Calculates the jacobian of the residual function for an ODE.
|
|
virtual void | jacobian (SparseMatrixType &jacobian, const VectorType &solution_global, NumberType weight, const VectorType &solution_global_dot, NumberType alpha, NumberType beta, const VectorType &variables=VectorType())=0 |
| Calculates the jacobian of the residual function for a DAE.
|
|
template<typename Discretization_, typename Model_>
class DiFfRG::FEMAssembler< Discretization_, Model_ >
The basic assembler that can be used for any standard CG scheme with flux and source.
- Template Parameters
-
Model | The model class which contains the physical equations. |