Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Hendrik Ranocha <[email protected]>
  • Loading branch information
andrewwinters5000 and ranocha authored Jul 13, 2023
1 parent 1927fb3 commit 78d3aa5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Trixi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ export ControllerThreeLevel, ControllerThreeLevelCombined,
IndicatorNeuralNetwork, NeuralNetworkPerssonPeraire, NeuralNetworkRayHesthaven,
NeuralNetworkCNN

# TODO: TrixiShallowWater: move new limiter
export PositivityPreservingLimiterZhangShu, PositivityPreservingLimiterShallowWater

export trixi_include, examples_dir, get_examples, default_example,
Expand Down
2 changes: 1 addition & 1 deletion src/equations/shallow_water_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#! format: noindent

@doc raw"""
ShallowWaterEquations1D(gravity, H0, threshold_limiter, threshold_wet)
ShallowWaterEquations1D(; gravity, H0 = 0, threshold_limiter = nothing threshold_wet = nothing)
Shallow water equations (SWE) in one space dimension. The equations are given by
```math
Expand Down
2 changes: 1 addition & 1 deletion src/equations/shallow_water_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#! format: noindent

@doc raw"""
ShallowWaterEquations2D(gravity, H0, threshold_limiter, threshold_wet)
ShallowWaterEquations2D(; gravity, H0 = 0, threshold_limiter = nothing, threshold_wet = nothing)
Shallow water equations (SWE) in two space dimensions. The equations are given by
```math
Expand Down

0 comments on commit 78d3aa5

Please sign in to comment.