in zip(pressure_levels, temp_profile, rh_profile, sh_profile): # 饱和水汽压 e_sat = 6.112 * np.exp(17.67 * (temp - 273.15) / ((temp - 273.15) + 243.5)) e_actual = rh_val * e_sat / 100 # 露点温度 t_dew = 243.5 * np.log(e_actual / 6.112) / (17.67 - np.log(e_...
in zip(pressure_levels, temp_profile, rh_profile, sh_profile): # 饱和水汽压 e_sat = 6.112 * np.exp(17.67 * (temp - 273.15) / ((temp - 273.15) + 243.5)) e_actual = rh_val * e_sat / 100 # 露点温度 t_dew = 243.5 * np.log(e_actual / 6.112) / (17.67 - np.log(e_...