amangupta2 commited on
Commit
77ae6f2
1 Parent(s): 267e910

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -3
README.md CHANGED
@@ -1,3 +1,28 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ % Data format description for the nonlocal gravity wave parameterization dataset
6
+
7
+ % Contact: https://github.com/amangupta2 or [email protected]
8
+
9
+ % Date: 19 September 2024
10
+
11
+ The nonlocal parameterization dataset contains input features for the background atmospheric field and output labels for the subgrid-scale fluxes for those fields computed using ECMWF's ERA5. The full dataset comprises atmospheric state and fluxes computed for the years 2010, 2012, 2014, and 2015. Out of the 48 months computed, one (from the validation set) is provided here for testing.
12
+
13
+ The SCIENCE GOAL is to learn small-scale dynamics from high-resolution models/datasets (ERA5, which can resolve those dynamics) and couple it back to a coarse-resolution climate model (which cannot resolve those dynamics) to represent the missing physics. Typically this is done through crude physical parameterizations. The focus is on one such gray-zone process - atmospheric gravity waves. Gravity wave parameterizations guess the momentum fluxes from the background state and other surface tensors. The forcing corresponding to the predicted fluxes is coupled back to the momentum tendencies in the dynamical core. Helmholtz decomposition is used to extract the gravity wave momentum fluxes from raw ERA5 data on model levels. This data is used for fine-tuning. The data is "conservatively" coarsegrained from the ERA5 25 km grid to a coarse ~300 km 64x128 Gaussian grid because (a) the coarse-climate model only resolves the large-scale coarsegrain winds. The coarse winds will be used to invoke the coupled ML models, and (b) The wave fluxes, i.e. the true momentum flux is defined by averaging over the whole wave cycle. Thus, it is important to average the fluxes over the largest resolved wavenumber associated with gravity waves to get a true measure of the fluxes and prevent wavy phase-dependent artifacts in the flux computations.
14
+
15
+ The netCDF file contains:
16
+
17
+ dimensional variables: 64 latitudes (LAT) and 128 longitudes (LON)
18
+ features: input features, i.e., the background state of the atmosphere, with dimension TIME x IDIM x LAT x LON
19
+ output: output fluxes, i.e., the momentum fluxes carried by the gravity waves, computed using Helmholtz Decomposition, for the background state, with dimension TIME x ODIM x LAT x LON
20
+ IDIM = 491, ODIM = 366
21
+
22
+ The input (features) has a vertical dimension (IDIM) equal to 491 (3 + 4x122) because it is created by concatenating the latitude (1), longitude (1), surface elevation (1), zonal winds (122), meridional winds (122), temperature (122), and pressure (122), along the vertical dimension. Thus, IDIM index 0 corresponds to latitude, 1 corresponds to longitude, 2 corresponds to surface elevation for the given latitude and longitude, 3 to 124 correspond to zonal wind, 125 to 246 correspond to meridional wind, 247 to 368 correspond to temperature, and 369 to 490 correspond to pressure.
23
+
24
+ Likewise, the output has a vertical dimension (ODIM) equal to 366 (3x122) because it is created by concatenating the potential temperature (122), zonal flux of vertical momentum (122) and the meridional flux of vertical momentum (122) along the vertical dimension. ODIM 0 to 121 correspond to the potential temperature, ODIM 122 to 243 correspond to the zonal flux component, and ODIM 244 to 365 correspond to the meridional flux component.
25
+
26
+ Therefore, the neural network would predict the potential temperature, zonal and meridional momentum fluxes on 122 pressure level each, using the latitude, longitude, and surface elevation, and the zonal wind, meridional wind, and potential temperature on 122 pressure levels. The main prediction task is to predict the momentum fluxes, but since the potential temperature is a nonlinear function of temperature and pressure, having it as an output allows testing the capability of the model to predict simpler analytical relationships to assess model performance.
27
+
28
+ The netCDF attributes described the scaling recipe for each variable. To view, execute: ncdump -h <filename>