Flow123d
DF_patch_fe_data_tables-522f93f
|
Store finite element data on the actual patch such as shape function values, gradients, Jacobian of the mapping from the reference cell etc. More...
#include <Eigen/Dense>
#include "fem/eigen_tools.hh"
#include "fem/dh_cell_accessor.hh"
#include "fem/element_values.hh"
#include "quadrature/quadrature_lib.hh"
Go to the source code of this file.
Classes | |
class | PatchPointValues< spacedim > |
Class for storing FE data of quadrature points. More... | |
class | ElOp< spacedim > |
Class represents FE operations. More... | |
struct | common_reinit |
Defines common functionality of reinit operations. More... | |
struct | bulk_reinit |
Defines reinit operations on bulk points. More... | |
struct | side_reinit |
Defines reinit operations on side points. More... | |
class | FeBulk::PatchPointValues< spacedim > |
Bulk data specialization, order of item in operations_ vector corresponds to the BulkOps enum. More... | |
class | FeSide::PatchPointValues< spacedim > |
Bulk Side specialization, order of item in operations_ vector corresponds to the SideOps enum. More... | |
Namespaces | |
FeBulk | |
FeSide | |
Typedefs | |
using | Scalar = double |
using | Vector = arma::vec3 |
using | Tensor = arma::mat33 |
using | ReinitFunction = std::function< void(std::vector< ElOp< 3 > > &, TableDbl &, TableInt &)> |
Type for conciseness. More... | |
Enumerations | |
enum | FeBulk::BulkOps { FeBulk::opElCoords , FeBulk::opJac , FeBulk::opInvJac , FeBulk::opJacDet , FeBulk::opExpansionCoords , FeBulk::opExpansionJac , FeBulk::opExpansionInvJac , FeBulk::opExpansionJacDet , FeBulk::opCoords , FeBulk::opWeights , FeBulk::opJxW } |
enum of bulk operation More... | |
enum | FeSide::SideOps { FeSide::opElCoords , FeSide::opElJac , FeSide::opElInvJac , FeSide::opSideCoords , FeSide::opSideJac , FeSide::opSideJacDet , FeSide::opExpansionElCoords , FeSide::opExpansionElJac , FeSide::opExpansionElInvJac , FeSide::opExpansionSideCoords , FeSide::opExpansionSideJac , FeSide::opExpansionSideJacDet , FeSide::opCoords , FeSide::opWeights , FeSide::opJxW , FeSide::opNormalVec } |
enum of side operation More... | |
Store finite element data on the actual patch such as shape function values, gradients, Jacobian of the mapping from the reference cell etc.
* Copyright (C) 2015 Technical University of Liberec. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Definition in file patch_point_values.hh.
using ReinitFunction = std::function<void(std::vector<ElOp<3> > &, TableDbl &, TableInt &)> |
Type for conciseness.
Definition at line 44 of file patch_point_values.hh.
using Scalar = double |
Definition at line 36 of file patch_point_values.hh.
using Tensor = arma::mat33 |
Definition at line 38 of file patch_point_values.hh.
using Vector = arma::vec3 |
Definition at line 37 of file patch_point_values.hh.