help-mcsim
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Help with iSpikes


From: Bill Harris
Subject: Help with iSpikes
Date: Sat, 4 Jul 2020 19:53:29 -0700

Mode File:

States = {
  State
  };
Inputs = {
  inflow
  };
Initial_State = 0.0;
Initialize{
  State = Initial_State;
  };
Dynamics{
 dt(State) = inflow;
 };
End.
  
$ makemcsim spikestest.model
Creating model.c file from spikestest.model ...

________________________________________

Mod v6.1.0 - Model Generator for MCSim

MCSim and associated software comes with ABSOLUTELY NO WARRANTY;
This is free software, and you are welcome to redistribute it
under certain conditions; see the GNU General Public License.

No CalcOutputs{} equations. Null function defined.


* Created model file 'model.c'.


Compiling and linking model ...
Cleaning up ...
Created executable mcsim.spikestest

Input File:

Integrate(Lsodes,1.0e-6,1.0e-6,0);
OutputFile("spikes.test01.out");
StartTime(0.0);
Initial_State = 0.0;

Simulation { # Base
inflow = 1.0;
PrintStep(State,0.0,200.0,1.0);
PrintStep(inflow,0.0,200.0,1.0);
}

Simulation { # Base w/ Spikes
inflow = Spikes(
  5,
  10.0, 10.0,  10.0,  10.0,  10.0,
   0.0, 50.0, 100.0, 150.0, 200.0);    
PrintStep(State,0.0,200.0,1.0);
PrintStep(inflow,0.0,200.0,1.0);
}

End.

OUtput File:

Results of Simulation 1

Time State inflow
0 0 1
1 1 1
2 2 1
3 3 1
4 4 1
5 5 1
6 6 1
.
.
.

Results of Simulation 2

Time State inflow
0 0 10
1 0 0
2 0 0
3 0 0
4 0 0
5 0 0
6 0 0
.
.
.

Question: Why doesn 't State jump by 10 every 50 time units?  What is Spikes doing?

Thanks,

Bill
--
Bill Harris           

reply via email to

[Prev in Thread] Current Thread [Next in Thread]