Skip to content

Commit

Permalink
revert example
Browse files Browse the repository at this point in the history
  • Loading branch information
tommbendall committed Oct 26, 2024
1 parent 279ea8b commit f6efea2
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions examples/shallow_water/williamson_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,12 @@ def williamson_5(
io = IO(domain, output, diagnostic_fields=diagnostic_fields)

# Transport schemes
transported_fields = [
TrapeziumRule(domain, "u"),
SSPRK3(domain, "D", subcycle_by_courant=0.3)
]
transported_fields = [TrapeziumRule(domain, "u"), SSPRK3(domain, "D")]
transport_methods = [DGUpwind(eqns, "u"), DGUpwind(eqns, "D")]

# Time stepper
stepper = SemiImplicitQuasiNewton(
eqns, io, transported_fields, transport_methods, predictor='D'
eqns, io, transported_fields, transport_methods
)

# ------------------------------------------------------------------------ #
Expand Down

0 comments on commit f6efea2

Please sign in to comment.