FE-Project
|
Derived type representing a 1D reference element. More...
Public Attributes | |
integer | polyorder |
Polynomial order. | |
integer | nfp |
Number of nodes on an element face. | |
integer, dimension(:,:), allocatable | fmask |
Array saving indices to extract nodal values on the faces. | |
real(rp), dimension(:), allocatable | x1 |
Array saving x1-coordinate of nodes within the reference element. | |
real(rp), dimension(:,:), allocatable | dx1 |
Elementwise differential matrix for the x1-coordinate direction (Dx1 = M^-1 Sx1) | |
real(rp), dimension(:,:), allocatable | sx1 |
Elementwise stiffness matrix for the x1-coordinate direction. | |
Public Attributes inherited from scale_element_base::elementbase | |
integer | np |
Number of nodes within an element. | |
integer | nfaces |
Number of faces. | |
integer | nfptot |
Total number of nodes on faces. | |
integer | nv |
Number of vertices with an element. | |
real(rp), dimension(:,:), allocatable | v |
The Vandermonde matrix (V) whose size is Np x Np. | |
real(rp), dimension(:,:), allocatable | invv |
Inversion of the Vandermonde matrix (V^-1) whose size is Np x Np. | |
real(rp), dimension(:,:), allocatable | m |
Mass matrix (M) whose size is Np x Np. | |
real(rp), dimension(:,:), allocatable | invm |
Inversion of the mass matrix (M^-1) whose size Np x NP. | |
real(rp), dimension(:,:), allocatable | lift |
Lifting matrix with element boundary integrals whose size Np x NfpTot. | |
real(rp), dimension(:), allocatable | intweight_lgl |
Weights of gaussian quadrature with the LGL nodes. |
Additional Inherited Members | |
Public Member Functions inherited from scale_element_base::elementbase | |
procedure | islumpedmatrix (elem) |
Get a flag whether the lumped mass matrix is used. |
Derived type representing a 1D reference element.
Definition at line 53 of file scale_element_base.F90.
integer scale_element_base::elementbase1d::polyorder |
Polynomial order.
Definition at line 54 of file scale_element_base.F90.
integer scale_element_base::elementbase1d::nfp |
Number of nodes on an element face.
Definition at line 55 of file scale_element_base.F90.
integer, dimension(:,:), allocatable scale_element_base::elementbase1d::fmask |
Array saving indices to extract nodal values on the faces.
Definition at line 56 of file scale_element_base.F90.
real(rp), dimension(:), allocatable scale_element_base::elementbase1d::x1 |
Array saving x1-coordinate of nodes within the reference element.
Definition at line 58 of file scale_element_base.F90.
real(rp), dimension(:,:), allocatable scale_element_base::elementbase1d::dx1 |
Elementwise differential matrix for the x1-coordinate direction (Dx1 = M^-1 Sx1)
Definition at line 60 of file scale_element_base.F90.
real(rp), dimension(:,:), allocatable scale_element_base::elementbase1d::sx1 |
Elementwise stiffness matrix for the x1-coordinate direction.
Definition at line 62 of file scale_element_base.F90.