StartUpDG.jl follows the interpretation of semantic versioning (semver) used in the Julia ecosystem. Recent changes will be documented in this file for human readability.
- Added support for pyramid reference elements and meshes
- Introduced unified
read_Gmsh_2D(...)
functions - Specializations of
RefElemData
forPolynomial(TensorProductQuadrature(quad_rule_1D))
approximation types - Add docs on difference between StartUpDG.jl and Nodal DG Matlab codes
- removed
approximationType
as a property ofRefElemData
- Made
Base.show
output less verbose. - Deprecated CamlCase Gmsh read functions
- Add
Polynomial{Gauss}
type
- add type parameter to
Polynomial
- Switch from
LittleDict
toMultipleRefElemData
for hybrid meshes
- the
NamedArrayPartition
array type, which is similar toComponentArrays
but with the storage structure ofArrayPartition
. This is used for the storage ofMeshData
fields in hybrid and cut-cell meshes, and can be used for the storage of solutions compatible with the OrdinaryDiffEq.jl framework. - added precomputed differentiation, face interpolation, mass, and lifting matrices for
CutCellMesh
types. These are specified usingmd = MeshData(...; precompute_operators=true)
, and are stored inmd.mesh_type.cut_cell_operators
.
- The
MeshData
fieldsVXYZ
andEToV
have been moved into aVertexMappedMesh
type. However, they can still be accessed as a property ofMeshData
(e.g.,md.VX
will still work). - Added a
CurvedMesh
type forMeshData
constructed from modified nodal coordinates, e.g., using the constructorMeshData(rd, md, xyz...)
.CurvedMesh
stores the original mesh type as a field. Previously, there was no way to distinguish a curvedMeshData
from a non-curved one. - Changes related to element types:
- upstream change in NodesAndModes.jl: the abstract type
AbstractElemShape
is now parametrized by the dimension, e.g.,Line <: AbstractElemShape{1}
,Tri <: AbstractElemShape{2}
. - the spatial dimension
Dim
parameter inMeshData
is now inferred from the element type throughelem <: AbstractElemShape{Dim}
- the
PhysicalFrame
type now has leading type parameterPhysicalFrame{NDIMS} <: AbstractElemShape{NDIMS}
- upstream change in NodesAndModes.jl: the abstract type
PhysicalFrame
's fields are now restricted to be typeSVector
only (instead ofUnion{SVector, Tuple}
)
- the
Nplot
field has been removed fromRefElemData
- all usages of
ComponentArrays
have been replaced byNamedArrayPartition
- the deprecated
MeshData(md::MeshData, rd::RefElemData, xyz...)
constructor has been removed
- the constructor for
MeshData
with all fields as well asVXYZ
,EToV
as arguments has been deprecated and will be removed in the next breaking release. This would only be used when extendingMeshData
. The standardMeshData
constructor involvingVXYZ
,EToV
, andrd::RefElemData
is unchanged. - the constructor for
RefElemData
with all fields as well asNplot
has been deprecated and will be removed in the next breaking release. This is only used if extendingRefElemData
.