Releases: jlchan/StartUpDG.jl
Releases · jlchan/StartUpDG.jl
v0.12.1
v0.12.0
StartUpDG v0.12.0
Reordered faces for Quad()
elements. Previously, faces were ordered in a counterclockwise fashion. Faces are now ordered according to r = -1, r = 1, s = -1, s = 1
(this is consistent with the way Hex()
element faces are ordered too).
v0.11.3
StartUpDG v0.11.3
Merged pull requests:
- CompatHelper: bump compat for "Setfield" to "0.8" (#14) (@github-actions[bot])
v0.11.2
StartUpDG v0.11.2
Improving efficiency of RefElemData
constructor for Hex()
element types. Introduces Kronecker.jl
as a dependency.
v0.11.1
v0.11.0
StartUpDG v0.11.0
Breaking API changes:
uniform_mesh
outputs a tuple(VX, VY, VZ)
, andMeshData
now takes a tuple of vertex coordinates as an inputtag_boundary_faces
: switched fromfoo(x,y)
,foo(x,y,z)
tofoo(x::NTuple{Dim, T}) where {Dim, T})
(e.g.,x
is a container of point coordinates).- clean up Triangulate example meshes: switch to
kwargs
forh
- use dispatch for Triangulate example meshes, e.g.,
triangulate_domain(Scramjet(), h = ...)
instead ofscramjet(...)
Closed issues:
- add generalized SBP approximation type (#11)
Merged pull requests:
v0.10.2
StartUpDG v0.10.2
Merged pull requests:
v0.10.1
StartUpDG v0.10.1
replaced md.sJ
field with md.Jf
. Added md.sJ
access via getproperty
v0.10.0
StartUpDG v0.10.0
Bump in minor version since 0.9.0->0.9.1 was technically a breaking change since exporting DGSEM
was part of the public API.
v0.9.1
StartUpDG v0.9.1
Replaced SBP
type parameter DGSEM
-> TensorProductLobatto
to avoid name conflicts in Trixi