forked from MJ0706/HCM-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuccioneAct.py
176 lines (114 loc) · 3.86 KB
/
GuccioneAct.py
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# Guccione2 et al. 1993: Simple time varying elastance type active contraction model
# This modification account for nonuniform spatial activation
# to is a function of space, FE model using gauss points
from dolfin import *
import math
import numpy as np
class GuccioneAct(object):
def __init__(self, params):
self.parameters = self.default_parameters()
self.parameters.update(params)
deg = self.parameters["deg"]
bivMesh = self.parameters["mesh"]
mesh = bivMesh
print "Using Guccione Active model"
self.t_init = self.parameters["t_init"]
self.isActive = self.parameters["isActive"]
print "t_init vector is :"
print self.t_init.vector().array()
print "isActive vector is :"
print self.isActive.vector().array()
isActive_write_elem = FunctionSpace(mesh, "CG", 1)
self.isActive_write_elem = isActive_write_elem
t_init_write_elem = FunctionSpace(mesh, "CG", 1)
self.t_init_write_elem = t_init_write_elem
def default_parameters(self):
return {"material params": {"tau" : 30,
"t_trans" : 320,
"B" : 4.75,
"t0" : 275,
"deg" : 4,
"l0" : 1.58,
"Tmax" : 135.7e3,
"Ca0" : 4.35,
"Ca0max" : 4.35,
"m": 1048,
"b": -1675}
};
def Getmatparam(self):
return self.parameters["material params"]
def PK2Stress(self):
Ca0 = self.parameters["material params"]["Ca0"]
Tmax = self.parameters["material params"]["Tmax"]
Ct = self.Ct()
ECa = self.ECa()
Sact = (Tmax*Ct*Ca0**2.0)/(Ca0**2.0 + ECa**2.0)
return Sact
# Jay's original
def ECa(self):
Ca0max = self.parameters["material params"]["Ca0max"]
B = self.parameters["material params"]["B"]
ls_l0 = self.ls_l0()
denom = sqrt(exp(B*(ls_l0)) - 1)
ECa = Ca0max/denom
return ECa
def ls_l0(self):
lmbda = self.lmbda()
ls = lmbda*1.85
l0 = self.parameters["material params"]["l0"]
ls_l0 = conditional(le(ls, l0+.002), 0.002, ls - l0)
return ls_l0
def tr(self):
F = self.parameters["Fmat"]
f0 = self.parameters["fiber"]
b = self.parameters["material params"]["b"]
m = self.parameters["material params"]["m"]
Cmat = F.T*F
lmbda = self.lmbda()
ls = lmbda*1.85
tr = m*ls + b
return tr
def Ct(self):
F = self.parameters["Fmat"]
f0 = self.parameters["fiber"]
t0 = self.parameters["material params"]["t0"]
b = self.parameters["material params"]["b"]
m = self.parameters["material params"]["m"]
t_a = self.parameters["t_a"]
Cmat = F.T*F
lmbda = sqrt(dot(f0, Cmat*f0))
ls = lmbda*1.85
tr = self.tr()
xp1 = conditional(lt(t_a,t0), 1.0, 0.0)
w1 = self.w1()
xp2 = conditional(le(t0,t_a), 1.0, 0.0)
xp3 = conditional(lt(t_a,t0+tr), 1.0, 0.0)
w2 = self.w2()
Ct = 0.5*(1 - cos(w1+w2))
return Ct
def w1(self):
t0 = self.parameters["material params"]["t0"]
t_a = self.parameters["t_a"] # current time
t_init = self.t_init
t_since_activation = t_a - t_init
xp1 = conditional( lt(t_since_activation,t0), 1.0, 0.0 )
xp4 = conditional( gt(t_since_activation, Constant(0.0)), 1.0, 0.0 )
xp5 = conditional( lt(t_since_activation, Constant(9998.0)), 1.0, 0.0 )
w1 = xp5*xp4*xp1*pi*t_since_activation/t0
return w1
def w2(self):
t0 = self.parameters["material params"]["t0"]
t_a = self.parameters["t_a"]
tr = self.tr()
t_init = self.t_init # time of activation
t_since_activation = t_a - t_init
xp2 = conditional(le(t0,t_since_activation), 1.0, 0.0)
xp3 = conditional(lt(t_since_activation,t0+tr), 1.0, 0.0)
w2 = xp2*xp3*pi*(t_since_activation - t0 + tr)/tr
return w2
def lmbda(self):
F = self.parameters["Fmat"]
f0 = self.parameters["fiber"]
Cmat = F.T*F
lmbda = sqrt(dot(f0, Cmat*f0))
return lmbda