permamodel / Snow_BMI_Fortran

This is a simple snow model with BMI (Basic Model Interface of CSDMS) in Fortran cooperatively-developed by Kang Wang (University of Colorado Boulder), Ross Brown (Environment Canada), and Bruce Brasnett (Canadian Meteorological Centre). It's an empirical algorithm to melt snow according to the surface temperature and increase snow depth according to the precipitation that has fallen since the last analysis time.
Apache License 2.0
2 stars 1 forks source link

Use BMI v1.2 #5

Closed mdpiper closed 5 years ago

mdpiper commented 5 years ago

This PR updates the snow model to use Fortran BMI v1.2 instead of v1.1. The big change is that the name of the BMI module now includes the version. So, instead of

use bmif

it's instead

use bmif_1_2

There's very little change for the snow model BMI, but I hope it makes it clearer which BMI version is being used. There's more information at https://github.com/csdms/bmi-fortran/pull/36.

mdpiper commented 5 years ago

@wk1984 Thank you!