File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class Scenario:
43
43
ccal0 : quantity = 0.3 * u .dimensionless
44
44
cara0 : quantity = 0.6 * u .dimensionless
45
45
xdis : quantity = 50.0 * u .cm # x_d (start of dissolution zone)
46
- length : quantity = 750 .0 * u .cm
46
+ length : quantity = 500 .0 * u .cm
47
47
Th : quantity = 100.0 * u .cm # h_d (height of dissolution zone)
48
48
phi00 : quantity = 0.8 * u .dimensionless
49
49
ca00 : quantity = 0.326e-3 * u .M # sqrt(Kc) / 2
@@ -133,12 +133,12 @@ def post_init(self):
133
133
self .rhos = self .rhos0
134
134
self .Xstar = self .D0Ca / self .sedimentationrate
135
135
self .Tstar = self .Xstar / self .sedimentationrate
136
- self .b = (self .b / 1e4 ) * 0.8 ** 3 / ( 0.8 * 3 )
136
+ self .b = (self .b / 1e4 )
137
137
self .m2 = self .m1
138
138
self .n2 = self .n1
139
139
self .DCa = self .D0Ca
140
140
self .PhiNR = self .PhiIni
141
- self .N = 300
141
+ self .N = 200
142
142
143
143
144
144
derived_dataclass = make_dataclass ("Mapped parameters" , derived_fields ,
@@ -205,7 +205,7 @@ class Solver():
205
205
'''
206
206
dt : float = 1.e-6
207
207
# t_range is the integration time in units of T*.
208
- t_range : int = 300
208
+ t_range : int = 1
209
209
solver : str = "scipy"
210
210
# Beware that "scheme" and "adaptive" will only be propagated if you have
211
211
# chosen py-pde's native "explicit" solver above.
You can’t perform that action at this time.
0 commit comments