You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/Development/ReleaseNotes.md
+5
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,11 @@ To check which release of VIC you are running:
45
45
7. Fixed a bug related to `dz_node` and `node_depth` variables in image driver output state file ([GH#657](https://github.com/UW-Hydro/VIC/pull/657))
46
46
47
47
Before the fix, `dz_node` and `node_depth` in image driver output state file were not spatially distributed, which was wrong. Now these two variables are spatially distributed in the output state file.
48
+
49
+
6. Fixed a bug related to `run_cell` and `mask` variables in image driver inputs ([GH#662]((https://github.com/UW-Hydro/VIC/pull/662)))
50
+
51
+
Before the fix, active cell was controlled by `mask` variable in the domain file in image driver, and `run_cell` variable in the parameter file was not actually used. Now `run_cell` variable in the parameter file controls active cells (`run_cell` must be within the mask defined by the domain file).
| MASK |[lat, lon]| N/A | integer | Mask of VIC run. 1 for active cells for VIC run; 0 indicates inactive grid cells. VIC will not run at grid cells with MASK = 0 or missing value. |
11
+
| MASK |[lat, lon]| N/A | integer | Mask of domain. 1 for grid cells inside considered domain; 0 for grid cells outside of domain. Cells outside of domain will not be run. Use run_cell variable in the parameter file to turn on/off active cells inside domain. |
12
12
| AREA |[lat, lon]| m2 | double | Area of grid cells. |
13
13
| FRAC |[lat, lon]| N/A | double | Fraction of grid cells that is land. |
14
14
@@ -22,7 +22,7 @@ dimensions:
22
22
lon = 125 ;
23
23
variables:
24
24
int mask(lat, lon) ;
25
-
mask:comment = "0 indicates grid cell is not active";
25
+
mask:comment = "0 indicates grid cell outside of domain";
| run_cell | [lat, lon] | N/A | int | 1 | 1 = Run Grid Cell, 0 = Do Not Run |
19
+
| run_cell |[lat, lon]| N/A | int | 1 | 1 = Run Grid Cell, 0 = Do Not Run. Must be zero for all grid cells outside of the mask defined in the domain netCDF file. |
20
20
| gridcel | [lat, lon] | N/A | int | 1 | Grid cell number |
21
21
| lat | [lat, lon] | degrees | double | 1 | Latitude of grid cell |
0 commit comments