looks like e-RK4 is working :D

This commit is contained in:
Georg ´Brantegger
2022-06-15 10:15:18 +02:00
parent 115e59af3b
commit 5bb223fedb
2 changed files with 120 additions and 21 deletions

View File

@@ -72,7 +72,7 @@ class Ausgleichsbecken_class:
dt = self.timestep
p = self.p0
p_hs = self.p0
alpha = (self.area/self.area_outflux-1)
alpha = (self.area_outflux/self.area-1)
h_hs = self.update_level(dt/2)
Y1 = yn
Y2 = yn + dt/2*FODE_function(Y1, h, alpha, self.p0)

File diff suppressed because one or more lines are too long