progress without progress

This commit is contained in:
ralf 2024-08-06 10:53:09 +03:00
parent 13033f6936
commit 89c492dd6c
3 changed files with 5 additions and 5 deletions

View File

@ -349,7 +349,7 @@ class Model:
FCa_0, # FCa
]
def calculated_current(self, states, t, V):
def calculated_current(self, states, V):
ICaL = self.gCaL * states[1, :] * (V - self.ECaL)
return ICaL

Binary file not shown.

View File

@ -65,13 +65,13 @@ class Fitter:
times=self.time_points,
tspan=self.tspan,
dt=self.dt,
initial_values=self.initial_values
initial_values=self.initial_values,
)
states = self.initial_values
t = [0, 1000]
V = model.mem_potential(t)
_calc_curr = model.calculated_current(states, t, V)
_calc_curr = model.calculated_current(states, V)
calculated_current = (
self.convolve_current(_calc_curr, tau=tau_RC)[self.current_time_indecies]
+ offset
@ -153,7 +153,7 @@ class Fitter:
initial_values=self.initial_values,
tspan=self.tspan,
dt=self.dt,
times=self.time_points
times=self.time_points,
)
_calc_curr = model.calculated_current()