34#ifndef SVZERODSOLVER_MODEL_VALVETANH_HPP_
35#define SVZERODSOLVER_MODEL_VALVETANH_HPP_
182 void update_constant(SparseSystem &system, std::vector<double> ¶meters);
193 void update_solution(SparseSystem &system, std::vector<double> ¶meters,
194 const Eigen::Matrix<double, Eigen::Dynamic, 1> &y,
195 const Eigen::Matrix<double, Eigen::Dynamic, 1> &dy);
BlockType
The types of blocks supported by the solver.
Definition BlockType.h:42
BlockClass
The classes/categories of blocks supported. Some classes require special handling (e....
Definition BlockType.h:64
SparseSystem source file.
Block(int id, Model *model, BlockType block_type, BlockClass block_class, std::vector< std::pair< std::string, InputParameter > > input_params)
Construct a new Block object.
Definition Block.h:126
const int id
Global ID of the block.
Definition Block.h:103
const Model * model
The model to which the block belongs.
Definition Block.h:104
Model of 0D elements.
Definition Model.h:75
void update_constant(SparseSystem &system, std::vector< double > ¶meters)
Update the constant contributions of the element in a sparse system.
Definition ValveTanh.cpp:41
void setup_dofs(DOFHandler &dofhandler)
Set up the degrees of freedom (DOF) of the block.
Definition ValveTanh.cpp:33
TripletsContributions num_triplets
Number of triplets of element.
Definition ValveTanh.h:203
void update_solution(SparseSystem &system, std::vector< double > ¶meters, const Eigen::Matrix< double, Eigen::Dynamic, 1 > &y, const Eigen::Matrix< double, Eigen::Dynamic, 1 > &dy)
Update the solution-dependent contributions of the element in a sparse system.
Definition ValveTanh.cpp:61
ValveTanh(int id, Model *model)
Construct a new ValveTanh object.
Definition ValveTanh.h:155
ParamId
Local IDs of the parameters.
Definition ValveTanh.h:143
The number of triplets that the element contributes to the global system.
Definition Block.h:52