Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
jpdean committed Sep 15, 2023
1 parent 5f59d53 commit 6e74c9d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions hdg_navier_stokes.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,10 @@ class SolverType(Enum):


class Scheme(Enum):
# Scheme from https://doi.org/10.1016/j.cma.2019.112619
RW = 1
# Scheme from "Hybridized discontinuous Galerkin methods
# for incompressible flows on meshes with quadrilateral
# cells" by J. P. Dean, S. Rhebergen, and G. N. Wells
DRW = 2
# The scheme by Dean, Rhebergen, and Wells
DRW = 1
# The scheme by Rhebergen and Wells
RW = 2


class BCType(Enum):
Expand Down

0 comments on commit 6e74c9d

Please sign in to comment.