Skip to content

Commit

Permalink
updates for rc2 tomorrow (#585)
Browse files Browse the repository at this point in the history
* updates for rc2 tomorrow

* run uncrustify
  • Loading branch information
Joe Hamman authored Aug 18, 2016
1 parent c06f38f commit f3ac38d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
7 changes: 3 additions & 4 deletions docs/Development/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ For VIC 5 and later, type `vic _{classic,image}.exe -v`

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

## VIC 5.0.0 (Release Candidate 1)
## VIC 5.0.0 (Release Candidate 2)

**Release date: June 28, 2016**
**Release date: August 18, 2016**

This is a major update from VIC 4. The VIC 5.0.0 release aims to have nearly identical physics as VIC 4.2 while providing a clean, refactored code base supporting multiple drivers. There are a number of new features, bug fixes, and backward incompatible changes. See the VIC Github page for more details on the changes included in this release.

Expand Down Expand Up @@ -60,7 +60,7 @@ This is a major update from VIC 4. The VIC 5.0.0 release aims to have nearly ide

9. Tests Datasets ([GH#79](https://github.com/UW-Hydro/VIC/issues/79))

**TODO:** See https://github.com/UW-Hydro/VIC/issues/79 for more information.
See https://github.com/UW-Hydro/VIC/issues/79 for more information. A temporary location of the test data is here: ftp://ftp.hydro.washington.edu/pub/gergel/VIC5_test_data/

10. Testing and Continuous Integration ([GH#190](https://github.com/UW-Hydro/VIC/pull/190))

Expand All @@ -76,7 +76,6 @@ This is a major update from VIC 4. The VIC 5.0.0 release aims to have nearly ide

The format of ASCII forcing and output files has changed in VIC 5. These changes were motivated by the desire to improve simulation metadata tracking and reproducibility of VIC simulations.

- Forcing files now require date stamps for each timestep and a header specifies the names of the forcing variables.
- Output files now include a header with simulation metadata and variable names. The `PRT_HEADER` option has been deprecated.

2. Classic Driver Global Parameter Options
Expand Down
2 changes: 1 addition & 1 deletion vic/drivers/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
MICRO = 0
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = 'rc1'
QUALIFIER = 'rc2'

FULLVERSION = VERSION
write_version = False
Expand Down
4 changes: 2 additions & 2 deletions vic/drivers/shared_all/include/vic_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
#define STR(x) STR_HELPER(x)

#ifndef VERSION
#define VERSION "5.0.0 Release Candidate 1: June 28, 2016"
#define VERSION "5.0.0 Release Candidate 2: August 18, 2016"
#endif

#ifndef SHORT_VERSION
#define SHORT_VERSION "5.0.0.rc1"
#define SHORT_VERSION "5.0.0.rc2"
#endif

#ifndef GIT_VERSION
Expand Down
6 changes: 3 additions & 3 deletions vic/vic_run/src/ice_melt.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,9 @@ ice_melt(double z2,
PackCC =
(PackSwq +
PackIce) * CONST_VCPICE_WQ * snow->pack_temp +
PackRefreezeEnergy;
PackRefreezeEnergy;
snow->pack_temp = PackCC / (CONST_VCPICE_WQ *
(PackSwq + PackIce));
(PackSwq + PackIce));
if (snow->pack_temp > 0.) {
snow->pack_temp = 0.;
}
Expand Down Expand Up @@ -568,7 +568,7 @@ ice_melt(double z2,
SurfaceSwq += param.SNOW_MAX_SURFACE_SWE - SurfaceSwq;
}
snow->pack_temp = PackCC / (CONST_VCPICE_WQ *
(PackSwq + PackIce));
(PackSwq + PackIce));
snow->surf_temp = SurfaceCC / (CONST_VCPICE_WQ * SurfaceSwq);
}
else {
Expand Down

0 comments on commit f3ac38d

Please sign in to comment.