-
Notifications
You must be signed in to change notification settings - Fork 0
/
deepSI.pop
22 lines (17 loc) · 1.16 KB
/
deepSI.pop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
% Deep SI (adapted from Lee 2015)
% usage: dsPlot(dsSimulate('deepSI','vary',{'deepSI','Iapp',5}))
% deepSI:
dV/dt=@current./Cm; {iTonic,FSiNaF,FSiKDR,iLeak,IBiMMich,iCaL}@current; V(0)=-65;
gNaF=100; gKDR=80;
Cm=.9; gLeak=0.1; gM=3; gCaL=0.5; Iapp=-3; IappSTD=0.8;
% Reference:
% Kramer, M. A., Roopun, A. K., Carracedo, L. M., Traub, R. D., Whittington, M. A., & Kopell, N. J. (2008). Rhythm generation through period concatenation in rat somatosensory cortex. PLoS computational biology, 4(9), e1000169. (http://www.ploscompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.1000169)
% CAUTION: this model is a work-in-progress and provided "AS IS". Tonic
% stimulation and noise differ from Kramer 2008.
% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
% SOFTWARE.