You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
), # mass transfer coefficient with Malara correlation
330
-
corr_type=CorrelationType.MASS_TRANSFER_COEFF,
331
-
source="Malara 1995",
332
-
description="mass transfer coefficient for tritium in liquid FLiBe using Malara 1995 correlation (used for inert gas stripping from breeder droplets, may not be valid here)",
333
-
input_units=["m**2/s", "m"],
334
-
output_units="m/s",
335
-
)
336
-
all_correlations.append(h_l_malara)
337
325
338
326
h_l_briggs=Correlation(
339
327
identifier="h_l_briggs",
@@ -467,13 +455,15 @@ def get_v_g0(Eo, Mo, mu_l, rho_l, d_b) -> float: # TODO move inside class ?
467
455
)
468
456
v_g0=mu_l/ (rho_l*d_b) *Mo**-0.149* (J-0.857)
469
457
ifv_g0>ureg("1 m/s") orv_g0<ureg("0.1 m/s"):
470
-
warnings.warn(f"Warning: bubble velocity {v_g0} is out of the typical range")
458
+
warnings.warn(
459
+
f"Warning: bubble terminal velocity {v_g0} is out of the typical range"
0 commit comments