@@ -7187,9 +7187,17 @@ def _inductance_factor(H, Ri, Ro, Rm, theta1):
7187
7187
)
7188
7188
7189
7189
7190
+ @staticmethod
7190
7191
def lambda_term (tau , omega ):
7191
- """
7192
- words
7192
+ """Lambda Term
7193
+
7194
+ Author: Alexander Pearce, UKAEA
7195
+
7196
+ :param tau: tau_{s,k} = (R_{s,k} - R_{c,k}) / R_k
7197
+ :param omega: omega_k = R_{c,k}/R_k
7198
+
7199
+ The lammbda fucntion used inegral in inductance calcuation found
7200
+ in Y. Itoh et al. The full form of the functions are given in appendix A.
7193
7201
"""
7194
7202
p = 1.0 - omega ** 2.0
7195
7203
@@ -7205,9 +7213,20 @@ def lambda_term(tau, omega):
7205
7213
return integral
7206
7214
7207
7215
7216
+ @staticmethod
7208
7217
def _theta_factor_integral (Ro_vv , Ri_vv , Rm_vv , H_vv , theta1_vv ):
7209
- """
7210
- words
7218
+ """Theta Factor Integral
7219
+ Author: Alexander Pearce, UKAEA
7220
+
7221
+ :param Ro_vv: the radius of the outboard edge of the VV CCL
7222
+ :param Ri_vv: the radius of the inboard edge of the VV CCL
7223
+ :param Rm_vv: the radius where the maximum height of the VV CCL occurs
7224
+ :param H_vv: the maximum height of the VV CCL
7225
+ :param theta1_vv: the polar angle of the point at which one circular arc is
7226
+ joined to another circular arc in the approximation to the VV CCL
7227
+
7228
+ The calcuation of the theta factor found in Eq 4 of Y. Itoh et al. The
7229
+ full form of the integral is given in appendix A.
7211
7230
"""
7212
7231
theta2 = np .pi / 2.0 + theta1_vv
7213
7232
a = (Ro_vv - Ri_vv ) / 2.0
0 commit comments