-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCellSolver2vb.cs
111 lines (95 loc) · 3.96 KB
/
CellSolver2vb.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Data;
using System.IO;
using System;
using UnityEngine;
// These are the MathNet Numerics Libraries needed
// They need to dragged and dropped into the Unity assets plugins folder!
using SparseMatrix = MathNet.Numerics.LinearAlgebra.Double.SparseMatrix;
using Matrix = MathNet.Numerics.LinearAlgebra.Matrix<double>;
using Vector = MathNet.Numerics.LinearAlgebra.Vector<double>;
using Double = MathNet.Numerics.LinearAlgebra.Double;
using MathNet.Numerics.Data.Text;
using solvers = MathNet.Numerics.LinearAlgebra.Double.Solvers;
using C2M2.NeuronalDynamics.UGX;
using Grid = C2M2.NeuronalDynamics.UGX.Grid;
namespace C2M2.NeuronalDynamics.Simulation
{
public class CellSolver2vb : NDSimulation
{
//Set cell biological constants
public const double res = 10.0;
public const double gk = 36.0;
public const double gna = 120.0;
public const double gl = 0.3;
public const double ek = -12.0;
public const double ena = 220; //70;//112.0;
public const double el = 0.6;
public const double cap = 0.09;
public const double ni = 0.5, mi = 0.4, hi = 0.2; //state probabilities
public const int nT = 100000; //9000; //16000; // Number of Time steps
public const double vstart = 55;
private Vector U = null;
public override float GetSimulationTime() => i * (float)k;
double k;
// Keep track of i locally so that we know which simulation frame to send to other scripts
private int i = -1;
public override double[] Get1DValues()
{
double[] curVals = null;
if (i > -1)
{
Vector curTimeSlice = U.SubVector(0, NeuronCell.vertCount);
curVals = curTimeSlice.ToArray();
}
return curVals;
}
// Receive new simulation 1D index/value pairings
public override void Set1DValues(Tuple<int, double>[] newValues)
{
foreach (Tuple<int, double> newVal in newValues)
{
int j = newVal.Item1;
double val = newVal.Item2 * vstart;
U[j] += val;
}
}
protected override void Solve()
{
//Set solving parameters standard run set endTime = 2 and nT = 1000;
double endTime = 25; //25;//32; // End time value
//int nT = 9000; //9000; //16000; // Number of Time steps
k = endTime / (double)nT; //Time step size
//double h = 0.008; //myCell.edgeLengths.Average()*1e4; //Spatial Step Size
//double h = myCell.edgeLengths.Average() * 1e4;
//Debug.Log("h = " + h);
//Debug.Log("Ave Edge Length = " + myCell.edgeLengths.Average());
//This is where I begin using MathNumerics Library
//Make grid function as a matrix for now! and then I initialize the voltage at one
//location. Note: the row index will correspond to the vertex number! (hopefully)
//U = Vector.Build.Dense(myCell.vertCount);
for (i = 0; i < nT; i++)
{
Debug.Log("U[0]:" + U[0]
+ "\n\tU[" + (NeuronCell.vertCount - 1) + "]:" + U[NeuronCell.vertCount - 1]);
U.Add(k, U);
}
Debug.Log("Simulation Over.");
}
#region Local Functions
//Function for initialize voltage on cell
public static Vector initialConditions(int size)
{
Vector ic = Vector.Build.Dense(size);
for (int ind = 0; ind < size; ind++)
{
ic[ind] = 0;
}
ic[0] = 55;
return ic;
}
#endregion
}
}