Exemplo n.º 1
0
Arquivo: fe.C Projeto: dschwen/libmesh
void FE<Dim,T>::init_base_shape_functions(const std::vector<Point> & qp,
                                          const Elem * e)
{
  this->elem_type = e->type();
  this->_fe_map->template init_reference_to_physical_map<Dim>(qp, e);
  init_shape_functions(qp, e);
}
Exemplo n.º 2
0
Arquivo: fe.C Projeto: bwspenc/libmesh
void FE<Dim,T>::init_base_shape_functions(const std::vector<Point>& qp,
                                          const Elem* e)
{
  // I don't understand infinite elements well enough to risk
  // calculating too little.  :-(  RHS
  this->calculate_phi = this->calculate_dphi = this->calculate_d2phi = true;

  this->elem_type = e->type();
  this->_fe_map->template init_reference_to_physical_map<Dim>(qp, e);
  init_shape_functions(qp, e);
}