% # iKLeak_PYdr_JB12:
%
% Potassium Leak current, Hodgkin-Huxley-style, for generic pyramidal dendrite
% compartments used in the DynaSim implementation of (Benita et al., 2012).
%
% - References:
%     - Benita, J. M., Guillamon, A., Deco, G., & Sanchez-Vives, M. V. (2012).
%     Synaptic depression and slow oscillatory activity in a biophysical
%     network model of the cerebral cortex. Frontiers in Computational
%     Neuroscience, 6. https://doi.org/10.3389/fncom.2012.00064
%
% - Tags: potassium, leak, current, intrinsic, pyramidal, dendrite
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Parameters
gKLeak = 0.0 % mS/cm^2
EKLeak = -95    % mV

fac_KLeak_PYdr_JB12 = 1

% This is our DynaSim-varied, cell-type-NONspecific adjustment factor
fac_KLeak_cort_large_vary = 0

% Functions
IKLeak_PYdr_JB12(X) = -(fac_KLeak_PYdr_JB12+fac_KLeak_cort_large_vary).*gKLeak.*(X-EKLeak)

monitor IKLeak_PYdr_JB12

% Linker
@current += IKLeak_PYdr_JB12(X)