-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmesocellplotmaddie.m
95 lines (58 loc) · 1.65 KB
/
mesocellplotmaddie.m
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
%% inputs
NV = 24;
NPINS = 3;
Kl = 1;
Kb = 0;
cL = 0;
cB = 0.0;
plotIt = 1;
%% calA0Init
for calA0Init = 1.0
mvstr = 'movie_test.mp4';
[hList, xList, yList, shapeList, calAList] = runMesoCellExtension(NV,NPINS,calA0Init,Kl,Kb,cL,cB,plotIt,mvstr)
x1 = hList;
y1 = calAList;
end
for calA0Init = 1.05
mvstr = 'movie_test.mp4';
[hList, xList, yList, shapeList, calAList] = runMesoCellExtension(NV,NPINS,calA0Init,Kl,Kb,cL,cB,plotIt,mvstr)
x2 = hList;
y2 = calAList;
end
for calA0Init = 1.1
mvstr = 'movie_test.mp4';
[hList, xList, yList, shapeList, calAList] = runMesoCellExtension(NV,NPINS,calA0Init,Kl,Kb,cL,cB,plotIt,mvstr)
x3 = hList;
y3 = calAList;
end
for calA0Init = 1.15
mvstr = 'movie_test.mp4';
[hList, xList, yList, shapeList, calAList] = runMesoCellExtension(NV,NPINS,calA0Init,Kl,Kb,cL,cB,plotIt,mvstr)
x4 = hList;
y4 = calAList;
end
for calA0Init = 1.20
mvstr = 'movie_test.mp4';
[hList, xList, yList, shapeList, calAList] = runMesoCellExtension(NV,NPINS,calA0Init,Kl,Kb,cL,cB,plotIt,mvstr)
x5 = hList;
y5 = calAList;
end
for calA0Init = 1.25
mvstr = 'movie_test.mp4';
[hList, xList, yList, shapeList, calAList] = runMesoCellExtension(NV,NPINS,calA0Init,Kl,Kb,cL,cB,plotIt,mvstr)
x6 = hList;
y6 = calAList;
end
for calA0Init = 1.3
mvstr = 'movie_test.mp4';
[hList, xList, yList, shapeList, calAList] = runMesoCellExtension(NV,NPINS,calA0Init,Kl,Kb,cL,cB,plotIt,mvstr)
x7 = hList;
y7 = calAList;
end
%% graph
clf 'reset'
plot(x1,y1,x2,y2)
hold on
plot(x3,y3,x4,y4,x5,y5,x6,y6,x7,y7)
xlabel('List of pin stretch steps')
ylabel('Instantaneous shape parameter')