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
top_bc = p.top_bc # scalar field
bottom_bc = p.bottom_bc # scalar field
divf2c = Operators.DivergenceF2C(
top = Operators.SetValue(Geometry.WVector.(top_bc)),
bottom = Operators.SetValue(Geometry.WVector.(bottom_bc)),)
This is allocationg. We need to either make p.top_bc a field of WVectors, or else cache two fields of WVectors. This appears now in the soil implicit tendency (2x), soil jacobian (2x), and soil CO2 tendency (1x). so it may be worth doing something about.
The text was updated successfully, but these errors were encountered:
In our tendency functions and Jacobians, we have
This is allocationg. We need to either make p.top_bc a field of WVectors, or else cache two fields of WVectors. This appears now in the soil implicit tendency (2x), soil jacobian (2x), and soil CO2 tendency (1x). so it may be worth doing something about.
The text was updated successfully, but these errors were encountered: