FunctionSpace

julia> using Exodus, FiniteElementContainersERROR: ArgumentError: Package Exodus not found in current path.
- Run `import Pkg; Pkg.add("Exodus")` to install the Exodus package.
julia> mesh = UnstructuredMesh("../../test/poisson/poisson.g")ERROR: UndefVarError: `UnstructuredMesh` not defined
julia> V = FunctionSpace(mesh, H1Field, Lagrange)ERROR: UndefVarError: `FunctionSpace` not defined

API

FiniteElementContainers.FunctionSpaceType
struct FunctionSpace{IT<:Integer, IV<:AbstractArray{IT<:Integer, 1}, Coords, RefFEs} <: FiniteElementContainers.AbstractFunctionSpace
  • coords::Any

  • elem_conns::Connectivity{IT, IV} where {IT<:Integer, IV<:AbstractVector{IT}}

  • ref_fes::Any

source