52 | | === Namelist parameters === |
| 54 | === Required netCDF variables === |
| 55 | |
| 56 | Variables in `hhl.nc` |
| 57 | |
| 58 | {{{ |
| 59 | double rlon(rlon) ; |
| 60 | rlon:standard_name = "grid_longitude" ; |
| 61 | rlon:long_name = "longitude in rotated pole grid" ; |
| 62 | rlon:units = "degrees" ; |
| 63 | rlon:axis = "X" ; |
| 64 | double rlat(rlat) ; |
| 65 | rlat:standard_name = "grid_latitude" ; |
| 66 | rlat:long_name = "latitude in rotated pole grid" ; |
| 67 | rlat:units = "degrees" ; |
| 68 | rlat:axis = "Y" ; |
| 69 | char rotated_pole ; |
| 70 | rotated_pole:grid_mapping_name = "rotated_latitude_longitude" ; |
| 71 | rotated_pole:grid_north_pole_latitude = 40. ; |
| 72 | rotated_pole:grid_north_pole_longitude = -170. ; |
| 73 | float HHL(time, height, rlat, rlon) ; |
| 74 | HHL:long_name = "Geometric Height of the layer limits above sea level(NN)" ; |
| 75 | HHL:units = "m" ; |
| 76 | HHL:param = "6.3.0" ; |
| 77 | HHL:grid_mapping = "rotated_pole" ; |
| 78 | }}} |
| 79 | |
| 80 | Variables in `soil.nc` |
| 81 | |
| 82 | {{{ |
| 83 | float SOILTYP(time, rlat, rlon) ; |
| 84 | SOILTYP:long_name = "soil type of grid (1...9, local soilType.table)" ; |
| 85 | SOILTYP:units = "Numeric" ; |
| 86 | SOILTYP:param = "196.3.2" ; |
| 87 | SOILTYP:grid_mapping = "rotated_pole" ; |
| 88 | }}} |
| 89 | |
| 90 | Variables in `<prefix>YYYYMMDDHH-flow.nc` files: |
| 91 | |
| 92 | {{{ |
| 93 | float W(time, height, rlat, rlon) ; |
| 94 | W:long_name = "Vertical Velocity (Geometric) (w)" ; |
| 95 | W:units = "m s-1" ; |
| 96 | W:param = "9.2.0" ; |
| 97 | W:grid_mapping = "rotated_pole" ; |
| 98 | float U(time, height_2, rlat, rlon_2) ; |
| 99 | U:standard_name = "eastward_wind" ; |
| 100 | U:long_name = "U-Component of Wind" ; |
| 101 | U:units = "m s-1" ; |
| 102 | U:param = "2.2.0" ; |
| 103 | U:grid_mapping = "rotated_pole" ; |
| 104 | float V(time, height_2, rlat_2, rlon) ; |
| 105 | V:standard_name = "northward_wind" ; |
| 106 | V:long_name = "V-Component of Wind" ; |
| 107 | V:units = "m s-1" ; |
| 108 | V:param = "3.2.0" ; |
| 109 | V:grid_mapping = "rotated_pole" ; |
| 110 | float T(time, height_2, rlat, rlon) ; |
| 111 | T:standard_name = "air_temperature" ; |
| 112 | T:long_name = "Temperature" ; |
| 113 | T:units = "K" ; |
| 114 | T:param = "0.0.0" ; |
| 115 | T:grid_mapping = "rotated_pole" ; |
| 116 | float P(time, height_2, rlat, rlon) ; |
| 117 | P:long_name = "Pressure" ; |
| 118 | P:units = "Pa" ; |
| 119 | P:param = "192.3.0" ; |
| 120 | P:grid_mapping = "rotated_pole" ; |
| 121 | float QV(time, height_2, rlat, rlon) ; |
| 122 | QV:standard_name = "specific_humidity" ; |
| 123 | QV:long_name = "Specific Humidity" ; |
| 124 | QV:units = "kg kg-1" ; |
| 125 | QV:param = "0.1.0" ; |
| 126 | QV:grid_mapping = "rotated_pole" ; |
| 127 | }}} |
| 128 | |
| 129 | |
| 130 | Variables in `<prefix>YYYYMMDDHH-soil.nc` files: |
| 131 | |
| 132 | {{{ |
| 133 | double depth_2(depth_2) ; |
| 134 | depth_2:long_name = "depth_below_land" ; |
| 135 | depth_2:units = "m" ; |
| 136 | depth_2:positive = "down" ; |
| 137 | depth_2:axis = "Z" ; |
| 138 | depth_2:bounds = "depth_2_bnds" ; |
| 139 | float T_SO(time, depth, rlat, rlon) ; |
| 140 | T_SO:long_name = "Soil Temperature (multilayer model)" ; |
| 141 | T_SO:units = "K" ; |
| 142 | T_SO:param = "18.3.2" ; |
| 143 | T_SO:grid_mapping = "rotated_pole" ; |
| 144 | float W_SO(time, depth_2, rlat, rlon) ; |
| 145 | W_SO:long_name = "Column-integrated Soil Moisture (multilayers)" ; |
| 146 | W_SO:units = "kg m-2" ; |
| 147 | W_SO:param = "20.3.2" ; |
| 148 | W_SO:grid_mapping = "rotated_pole" ; |
| 149 | }}} |
| 150 | |
| 151 | |
| 152 | == Namelist parameters == |