33 #ifndef OOMPH_REFINEABLE_GEN_ADVECTION_DIFFUSION_ELEMENTS_HEADER 34 #define OOMPH_REFINEABLE_GEN_ADVECTION_DIFFUSION_ELEMENTS_HEADER 38 #include <oomph-lib-config.h> 42 #include "../generic/refineable_quad_element.h" 43 #include "../generic/refineable_brick_element.h" 44 #include "../generic/error_estimator.h" 58 template <
unsigned DIM>
79 "RefineableGeneralisedAdvectionDiffusionEquations");
86 "RefineableGeneralisedAdvectionDiffusionEquations");
108 const unsigned n_node =
nnode();
123 for(
unsigned l=0;l<n_node;l++)
125 values[0] += this->
nodal_value(l,u_nodal_index)*psi[l];
140 const unsigned n_node =
nnode();
155 for(
unsigned l=0;l<n_node;l++)
157 values[0] += this->
nodal_value(t,l,u_nodal_index)*psi[l];
166 cast_father_element_pt
176 this->
Pe_pt = cast_father_element_pt->
pe_pt();
201 template <
unsigned DIM,
unsigned NNODE_1D>
224 "RefineableQuadGeneralisedAdvectionDiffusionElement");
231 "RefineableQuadGeneralisedAdvectionDiffusionElement");
273 template<
unsigned DIM,
unsigned NNODE_1D>
275 public virtual QElement<DIM-1,NNODE_1D>
Refineable version of QGeneralisedAdvectionDiffusionElement. Inherit from the standard QGeneralisedAd...
void broken_copy(const std::string &class_name)
Issue error message and terminate execution.
Base class for finite elements that can compute the quantities that are required for the Z2 error est...
virtual RefineableElement * father_element_pt() const
Return a pointer to the father element.
unsigned num_Z2_flux_terms()
Number of 'flux' terms for Z2 error estimation.
RefineableGeneralisedAdvectionDiffusionEquations()
Empty Constructor.
void further_build()
Further build: Copy source function pointer from father element.
RefineableQGeneralisedAdvectionDiffusionElement()
Empty Constructor:
double * PeSt_pt
Pointer to global Peclet number multiplied by Strouhal number.
GeneralisedAdvectionDiffusionDiffFctPt & diff_fct_pt()
Access function: Pointer to diffusion function.
Nodes are derived from Data, but, in addition, have a definite (Eulerian) position in a space of a gi...
unsigned nvertex_node() const
Number of vertex nodes in the element.
Node * vertex_node_pt(const unsigned &j) const
Pointer to the j-th vertex node in the element.
unsigned nrecovery_order()
Order of recovery shape functions for Z2 error estimation: Same order as shape functions.
void fill_in_generic_residual_contribution_cons_adv_diff(Vector< double > &residuals, DenseMatrix< double > &jacobian, DenseMatrix< double > &mass_matrix, unsigned flag)
Add the element's contribution to the elemental residual vector and/or Jacobian matrix flag=1: comput...
A class for all elements that solve the Advection Diffusion equations in conservative form using isop...
A version of the GeneralisedAdvection Diffusion equations that can be used with non-uniform mesh refi...
void get_interpolated_values(const unsigned &t, const Vector< double > &s, Vector< double > &values)
Get the function value u in Vector. Note: Given the generality of the interface (this function is usu...
GeneralisedAdvectionDiffusionWindFctPt & wind_fct_pt()
Access function: Pointer to wind function.
void get_interpolated_values(const Vector< double > &s, Vector< double > &values)
Get the function value u in Vector. Note: Given the generality of the interface (this function is usu...
void rebuild_from_sons(Mesh *&mesh_pt)
Rebuild from sons: empty.
void operator=(const RefineableGeneralisedAdvectionDiffusionEquations< DIM > &)
Broken assignment operator.
RefineableGeneralisedAdvectionDiffusionEquations(const RefineableGeneralisedAdvectionDiffusionEquations< DIM > &dummy)
Broken copy constructor.
bool ALE_is_disabled
Boolean flag to indicate if ALE formulation is disabled when time-derivatives are computed...
double * Pe_pt
Pointer to global Peclet number.
virtual unsigned nvertex_node() const
GeneralisedAdvectionDiffusionSourceFctPt & source_fct_pt()
Access function: Pointer to source function.
void get_flux(const Vector< double > &s, Vector< double > &flux) const
Get flux: .
GeneralisedAdvectionDiffusionWindFctPt Conserved_wind_fct_pt
Pointer to additional (conservative) wind function:
double nodal_value(const unsigned &n, const unsigned &i) const
Return the i-th value stored at local node n. Produces suitably interpolated values for hanging nodes...
void further_setup_hanging_nodes()
Perform additional hanging node procedures for variables that are not interpolated by all nodes...
void operator=(const RefineableQGeneralisedAdvectionDiffusionElement< DIM, NNODE_1D > &)
Broken assignment operator.
unsigned ncont_interpolated_values() const
Number of continuously interpolated values: 1.
QGeneralisedAdvectionDiffusionElement elements are linear/quadrilateral/brick-shaped Advection Diffus...
void broken_assign(const std::string &class_name)
Issue error message and terminate execution.
virtual unsigned u_index_cons_adv_diff() const
Return the index at which the unknown value is stored. The default value, 0, is appropriate for singl...
GeneralisedAdvectionDiffusionDiffFctPt Diff_fct_pt
Pointer to diffusivity funciton.
RefineableQGeneralisedAdvectionDiffusionElement(const RefineableQGeneralisedAdvectionDiffusionElement< DIM, NNODE_1D > &dummy)
Broken copy constructor.
GeneralisedAdvectionDiffusionWindFctPt Wind_fct_pt
Pointer to wind function:
double *& pe_pt()
Pointer to Peclet number.
virtual Node * vertex_node_pt(const unsigned &j) const
Pointer to the j-th vertex node in the element. Broken virtual function in "pure" finite elements...
double *& pe_st_pt()
Pointer to Peclet number multipled by Strouha number.
GeneralisedAdvectionDiffusionSourceFctPt Source_fct_pt
Pointer to source function:
void get_Z2_flux(const Vector< double > &s, Vector< double > &flux)
Get 'flux' for Z2 error recovery: Standard flux.from GeneralisedAdvectionDiffusion equations...
unsigned nnode() const
Return the number of nodes.
FaceGeometry()
Constructor: Call the constructor for the appropriate lower-dimensional QElement. ...
virtual void shape(const Vector< double > &s, Shape &psi) const =0
Calculate the geometric shape functions at local coordinate s. This function must be overloaded for e...
GeneralisedAdvectionDiffusionWindFctPt & conserved_wind_fct_pt()
Access function: Pointer to additional (conservative) wind function.