| 154 | === Optional variabels === |
| 155 | |
| 156 | Variables in `<prefix>YYYYMMDDHH-flow.nc` files (will be interpolated automatically if present in input files): |
| 157 | |
| 158 | {{{ |
| 159 | float QC(time, height_2, rlat, rlon) ; |
| 160 | QC:long_name = "Cloud Mixing Ratio" ; |
| 161 | QC:units = "kg kg-1" ; |
| 162 | QC:param = "22.1.0" ; |
| 163 | QC:grid_mapping = "rotated_pole" ; |
| 164 | float QI(time, height_2, rlat, rlon) ; |
| 165 | QI:long_name = "Cloud Ice Mixing Ratio" ; |
| 166 | QI:units = "kg kg-1" ; |
| 167 | QI:param = "82.1.0" ; |
| 168 | QI:grid_mapping = "rotated_pole" ; |
| 169 | float QR(time, height_2, rlat, rlon) ; |
| 170 | QR:long_name = "Rain mixing ratio" ; |
| 171 | QR:units = "kg kg-1" ; |
| 172 | QR:param = "24.1.0" ; |
| 173 | QR:grid_mapping = "rotated_pole" ; |
| 174 | float QS(time, height_2, rlat, rlon) ; |
| 175 | QS:long_name = "Snow mixing ratio" ; |
| 176 | QS:units = "kg kg-1" ; |
| 177 | QS:param = "25.1.0" ; |
| 178 | QS:grid_mapping = "rotated_pole" ; |
| 179 | float QG(time, height_2, rlat, rlon) ; |
| 180 | QG:long_name = "Grauple" ; |
| 181 | QG:units = "kg kg-1" ; |
| 182 | QG:param = "32.1.0" ; |
| 183 | QG:grid_mapping = "rotated_pole" ; |
| 184 | }}} |
| 185 | |
| 186 | Variables in `<prefix>YYYYMMDDHH-precip.nc` files (can be added to INIFOR processing with the `--precipitation` option): |
| 187 | |
| 188 | {{{ |
| 189 | float RAIN_GSP(time, rlat, rlon) ; |
| 190 | RAIN_GSP:long_name = "Large scale rain (Accumulation)" ; |
| 191 | RAIN_GSP:units = "kg m-2" ; |
| 192 | RAIN_GSP:param = "77.1.0" ; |
| 193 | RAIN_GSP:grid_mapping = "rotated_pole" ; |
| 194 | float SNOW_GSP(time, rlat, rlon) ; |
| 195 | SNOW_GSP:long_name = "Large-Scale snowfall - water equivalent (Accumulation)" ; |
| 196 | SNOW_GSP:units = "kg m-2" ; |
| 197 | SNOW_GSP:param = "56.1.0" ; |
| 198 | SNOW_GSP:grid_mapping = "rotated_pole" ; |
| 199 | float GRAU_GSP(time, rlat, rlon) ; |
| 200 | GRAU_GSP:long_name = "Graupel (snow pellets) precipitation (Accumulation)" ; |
| 201 | GRAU_GSP:units = "kg m-2" ; |
| 202 | GRAU_GSP:param = "75.1.0" ; |
| 203 | GRAU_GSP:grid_mapping = "rotated_pole" ; |
| 204 | }}} |
| 205 | |
| 206 | |