Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Mdulo3 - 1

Function NfatShell(k As Single, Vb As Single, E As Single, def As Single) As Single


NfatShell = k * (0.856 * Vb + 1.08) ^ 5 * (E * 1000000) ^ -1.8 * (def / 1000000) ^ -5
End Function
Function NfatINA(h As Single, Vb As Single, Va As Single, def As Single, E As Single) As Single
Dim k As Single
k = 1 / ((0.000398 + (0.003602 / (1 + (Exp(11.02 - 3.49 * h / 2.54))))))
NfatINA = k * (10 ^ (4.84 * ((Vb / (Vb + Va)) - 0.69))) * (0.007566 * (def / 1000000) ^ -3.9492) * ((E
* 145.04) ^ -1.281)
End Function

You might also like