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.
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.
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
it's instead
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.