Skip to content

Commit

Permalink
doc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
chmerdon committed Jan 24, 2024
1 parent 322332d commit 7cd6747
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/src/fems.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ AbstractFiniteElement
├─ HDIVBDM2
├─ HDIVRT0
├─ HDIVRT1
├─ HDIVRTk
└─ HDIVRTkENRICH
```

Expand Down
4 changes: 2 additions & 2 deletions src/fedefs/hdiv_rtk.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
````
abstract type HDIVRTk{edim} <: AbstractHdivFiniteElement where {edim<:Int}
abstract type HDIVRTk{edim, order} <: AbstractHdivFiniteElement where {edim<:Int}
````
Hdiv-conforming vector-valued (ncomponents = edim) Raviart-Thomas space of order 2.
Hdiv-conforming vector-valued (ncomponents = edim) Raviart-Thomas space of arbitrary order.
allowed ElementGeometries:
- Triangle2D
Expand Down
3 changes: 0 additions & 3 deletions src/fedefs/hdiv_rtk_enrich.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ allowed ElementGeometries:
- Triangle2D
- Tetrahedron3D
"""

## DEFINITION OF RTk BUBBLE SPACES
## contain only that many non divergence-free RTk bubbles that seem to be needed to correct divergence moments for PkxPk-1
abstract type HDIVRTkENRICH{edim, k, stack} <: AbstractHdivFiniteElement where {k <: Int, edim <: Int, stack <: Bool} end

const _num_RTk_enrich_bubbles = [[2, 3, 4], [3, 9]]
Expand Down

2 comments on commit 7cd6747

@chmerdon
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/99446

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" 7cd6747044e360eaf8753bb4e44aee05aeab499e
git push origin v0.2.0

Please sign in to comment.