Skip to content

Commit

Permalink
improvements to make clear how the order of source functions and test…
Browse files Browse the repository at this point in the history
… functions in SWSaturationAdjustment align
  • Loading branch information
nhartney committed Oct 24, 2024
1 parent 7fc82a1 commit 7369258
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions gusto/physics/shallow_water_microphysics.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,6 @@ def __init__(self, equation, saturation_curve,
# Check for the correct fields
assert vapour_name in equation.field_names, f"Field {vapour_name} does not exist in the equation set"
assert cloud_name in equation.field_names, f"Field {cloud_name} does not exist in the equation set"
self.Vv_idx = equation.field_names.index(vapour_name)
self.Vc_idx = equation.field_names.index(cloud_name)

if self.convective_feedback:
assert "D" in equation.field_names, "Depth field must exist for convective feedback"
Expand All @@ -244,28 +242,29 @@ def __init__(self, equation, saturation_curve,
assert "b" in equation.field_names, "Buoyancy field must exist for thermal feedback"
assert beta2 is not None, "If thermal feedback is used, beta2 parameter must be specified"

# Obtain function spaces and functions
# Obtain function spaces
W = equation.function_space
self.Vv_idx = equation.field_names.index(vapour_name)
self.Vc_idx = equation.field_names.index(cloud_name)
Vv = W.sub(self.Vv_idx)
Vc = W.sub(self.Vc_idx)
# order for V_idxs is vapour, cloud
V_idxs = [self.Vv_idx, self.Vc_idx]

# Source functions for both vapour and cloud
self.water_v = Function(Vv)
self.cloud = Function(Vc)

# depth needed if convective feedback
if self.convective_feedback:
self.VD_idx = equation.field_names.index("D")
VD = W.sub(self.VD_idx)
self.D = Function(VD)
# order for V_idxs is now vapour, cloud, depth
V_idxs.append(self.VD_idx)

# buoyancy needed if thermal feedback
if self.thermal_feedback:
self.Vb_idx = equation.field_names.index("b")
Vb = W.sub(self.Vb_idx)
self.b = Function(Vb)
# order for V_idxs is now vapour, cloud, depth, buoyancy
V_idxs.append(self.Vb_idx)

# tau is the timescale for condensation/evaporation (may or may not be the timestep)
Expand All @@ -289,6 +288,8 @@ def __init__(self, equation, saturation_curve,
self.saturation_curve = saturation_curve

# Saturation adjustment expression, adjusted to stop negative values
self.water_v = Function(Vv)
self.cloud = Function(Vc)
sat_adj_expr = (self.water_v - self.saturation_curve) / self.tau
sat_adj_expr = conditional(sat_adj_expr < 0,
max_value(sat_adj_expr,
Expand All @@ -309,17 +310,22 @@ def __init__(self, equation, saturation_curve,
self.gamma_v = gamma_v

# Factors for multiplying source for different variables
# the order matches the order in V_idx (vapour, cloud, depth, buoyancy)
factors = [self.gamma_v, -self.gamma_v]
if convective_feedback:
factors.append(self.gamma_v*beta1)
if thermal_feedback:
factors.append(self.gamma_v*beta2)

# Add terms to equations and make interpolators
# sources have the same order as V_idxs and factors
self.source = [Function(Vc) for factor in factors]
self.source_interpolators = [Interpolator(sat_adj_expr*factor, source)
for factor, source in zip(factors, self.source)]

# test functions have the same order as factors and sources (vapour,
# cloud, depth, buoyancy) so that the correct test function multiplies
# each source term
tests = [equation.tests[idx] for idx in V_idxs]

# Add source terms to residual
Expand Down

0 comments on commit 7369258

Please sign in to comment.