placeholder function added to model

This commit is contained in:
ralf 2024-07-17 12:57:46 +03:00
parent 993b530f3a
commit 41b0e324f8
3 changed files with 4 additions and 1 deletions

View File

@ -348,6 +348,9 @@ class Model:
FCa_0, # FCa
]
def calculated_current():
return None
def solve(self, initial_values, tspan, dt, times):
times = np.arange(*tspan, dt)

Binary file not shown.

View File

@ -65,7 +65,7 @@ class Fitter:
times=self.time_points,
tspan=self.tspan,
dt=self.dt,
initial_values=self.initial_values,
initial_values=self.initial_values
)
_calc_curr = model.calculated_current()