Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed info about forcing disaggregation from image driver docs. #833

Merged
merged 5 commits into from
Feb 17, 2019
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions docs/Development/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,19 @@ To check which release of VIC you are running:

2. Removed descriptions of forcing disaggregation options from documentation of classic driver global parameter file ([GH#831](https://github.com/UW-Hydro/VIC/pull/831))

3. Fixed segmentation fault in lake model caused by incorrect passing of pointer argument to vic_run(). ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))
3. Removed descriptions of forcing disaggregation options from documentation of image driver global parameter file ([GH#833](https://github.com/UW-Hydro/VIC/pull/833))

4. Relaxed some of the validation of lake parameters, to allow them to be null in cells containing no lakes. ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))
4. Fixed segmentation fault in lake model caused by incorrect passing of pointer argument to vic_run(). ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))

5. Fixed passing of lake data structures to generate_default_lake_state(). ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))
5. Relaxed some of the validation of lake parameters, to allow them to be null in cells containing no lakes. ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))

6. Separated the dimensions of arrays related to lake basin shape and of arrays related to the number of lake simulation layers. ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))
6. Fixed passing of lake data structures to generate_default_lake_state(). ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))

7. Added global parameter option to set the maximum number of (dynamic) lake simulation layers. ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))
7. Separated the dimensions of arrays related to lake basin shape and of arrays related to the number of lake simulation layers. ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))

8. Added global parameter option to set the maximum number of (dynamic) lake simulation layers. ([GH#826]((https://github.com/UW-Hydro/VIC/pull/826))

9. Fixed bug causing ET to be 0 in pure bare soil tiles. ([GH#823]((https://github.com/UW-Hydro/VIC/pull/823))

------------------------------

Expand Down
14 changes: 0 additions & 14 deletions docs/Documentation/Drivers/Image/GlobalParam.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,20 +88,6 @@ Generally these default values do not need to be overridden.
| MIN_WIND_SPEED | float | m/s | Minimum allowable wind speed. <br><br>Default = 0.1 m/s. |
| AERO_RESIST_CANSNOW | string | N/A | Options for aerodynamic resistance in snow-filled canopy: <li>**AR_406** = Multiply by 10 for latent heat, but do NOT multiply by 10 for sensible heat. When no snow in canopy, use surface aero_resist instead of overstory aero_resist. (As in VIC 4.0.6). <li>**AR_406_LS** = Multiply by 10 for both latent and sensible heat. When no snow in canopy, use surface aero_resist instead of overstory aero_resist. <li>**AR_406_FULL** = Multiply by 10 for both latent and sensible heat. Always use overstory aero_resist (snow or bare). <li>**AR_410** = Apply stability correction, instead of multiplying by 10, for both latent and sensible heat. Always use overstory aero_resist (snow or bare). <br><br>*NOTE*: this option exists for backwards compatibility with earlier releases and likely will be removed in later releases. <br><br>Default = AR_406_FULL. |

## Meteorological Forcing Disaggregation Parameters

Generally these default values do not need to be overridden.

| Name | Type | Units | Description |
|-----------------|--------|---------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| PLAPSE | string | TRUE or FALSE | Options for computing grid cell average surface atmospheric pressure (and density) when it is not explicitly supplied as a meteorological forcing: <li>**FALSE** = Set surface atmospheric pressure to constant 95.5 kPa (as in earlier releases). <li>**TRUE** = Lapse surface atmospheric pressure (and density) from sea level to the grid cell average elevation. <br><br>*NOTE 1*: air pressure is already lapsed to grid cell or band elevation when computing latent heat; this option only affects computation of sensible heat. <br><br>*NOTE 2*: this option exists for backwards compatibility with earlier releases and likely will be removed in later releases (the TRUE option will become the standard behavior). <br><br>Default = TRUE. |
| SW_PREC_THRESH | float | mm | Minimum daily precipitation, above which incoming shortwave is dimmed by 25%, when shortwave is not supplied as a forcing but instead is estimated from daily temperature range. <br><br>*Note*: This option's purpose is to avoid erroneous dimming of estimated shortwave when using forcings that have been aggregated or re-sampled from a different resolution. Re-sampling can sometimes smear small amounts of precipitation from neighboring cells into cells that originally had no precipitation. The appropriate value of SW_PREC_THRESH must be found through examination of the forcings. <br><br>Default = 0 mm (any precipitation causes dimming) |
| MTCLIM_SWE_CORR | string | TRUE or FALSE | This controls VIC's estimates of incoming shortwave (when shortwave is not supplied as a forcing) in the presence of snow. When shortwave is supplied as a forcing, this option is ignored. <li>**TRUE** = Adjust incoming shortwave for snow albedo effect. <li>**FALSE** = Do not adjust shortwave (as in earlier releases). <br><br>Default = TRUE. |
| VP_ITER | string | N/A | This controls VIC's iteration between estimates of shortwave and vapor pressure: <li>**VP_ITER_NEVER** = Never iterate; make estimates separately. <li>**VP_ITER_ALWAYS** = Always iterate once (as in previous releases). <li>**VP_ITER_ANNUAL** = Iterate once for arid climates (based on annual Precip/PET ratio) and never for humid climates. <li>**VP_ITER_CONVERGE** = Always iterate until shortwave and vp stabilize. <br><br>Default = VP_ITER_ALWAYS. |
| VP_INTERP | string | TRUE or FALSE | This controls sub-daily humidity estimates: <li>**TRUE** = Interpolate daily VP estimates linearly between sunrise of one day to the next. <li>**FALSE** = Hold VP constant for entire day (as in previous releases). <br><br>Default = TRUE. |
| LW_TYPE | string | N/A | This controls the algorithm used to estimate clear-sky longwave radiation: <li>**LW_TVA** = Tennessee Valley Authority algorithm (1972) (this option is what previous releases used) <li>**LW_ANDERSON** = Algorithm of Anderson (1964) <li>**LW_BRUTSAERT** = Algorithm of Brutsaert (1975) <li>**LW_SATTERLUND** = Algorithm of Satterlund (1979) <li>**LW_IDSO** = Algorithm of Idso (1981) <li>**LW_PRATA** = Algorithm of Prata (1996) <br><br>Default = LW_TVA. |
| LW_CLOUD | string | N/A | This controls the algorithm used to estimate the influence of clouds on total longwave: <li>**LW_CLOUD_BRAS** = Method from Bras textbook (this option is what previous releases used) <li>**LW_CLOUD_DEARDORFF** = Algorithm of Deardorff (1978) <br><br>Default = LW_CLOUD_DEARDORFF. |

## Carbon Parameters

The following options only apply to carbon cycling.
Expand Down