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{IsJuliaCSafe, IT<:Integer, IV<:AbstractArray{IT<:Integer, 1}, BTRE, Coords, RefFEs} <: FiniteElementContainers.AbstractFunctionSpace
  • block_names::Vector{String}

  • block_to_ref_fe_id::Any

  • coords::Any

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

  • elem_id_maps::Array{Vector{IT}, 1} where IT<:Integer

  • ref_fes::Any

source