Skip to content

Commit

Permalink
Back to parameter settings that pass the regression tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
HannoSpreeuw committed Aug 9, 2024
1 parent 61b60d6 commit 51ed5e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions marlpde/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def post_init(self):
self.rhos = self.rhos0
self.Xstar = self.D0Ca / self.sedimentationrate
self.Tstar = self.Xstar / self.sedimentationrate
self.b = (self.b/1e4) * 0.8**3 / (0.8*3)
self.b = (self.b/1e4)
self.m2 = self.m1
self.n2 = self.n1
self.DCa = self.D0Ca
Expand Down Expand Up @@ -205,8 +205,8 @@ class Solver():
'''
dt: float = 1.e-6
# t_range is the integration time in units of T*.
t_range: int = 30
solver: str = "explicit"
t_range: int = 1
solver: str = "scipy"
# Beware that "scheme" and "adaptive" will only be propagated if you have
# chosen py-pde's native "explicit" solver above.
scheme: str = "euler"
Expand Down

0 comments on commit 51ed5e8

Please sign in to comment.