DerivedTCWV¶
GlobalNVIDIAPyTorch
Import path: earth2studio.models.dx.DerivedTCWV
View source on GitHub View install commands
Documentation¶
Bases: Module
Calculates the Total Column Water Vapor (TCWV) from specific humidity at pressure levels and surface pressure. The calculation is based on the vertical integration of specific humidity using the trapezoidal rule:
TCWV = (1/g) * ∫(p_top to p_surface) q dp
Discretized as: TCWV ≈ (1/g) * Σ [(q_i + q_{i+1})/2 * (p_i - p_{i+1})]
Note
The integration includes the layer between the surface pressure and the lowest pressure level, assuming the surface specific humidity equals the lowest level specific humidity.
Parameters: