Skip to content

Commit

Permalink
FSM 2.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardEssery committed Aug 12, 2024
1 parent 7031130 commit 245308a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FSM2 requires meteorological driving data and namelists to set options and param

./FSM2 < nlst_Alptal.txt

which run simulations for the winter of 2004-2005 at Alptal, Switzerland (Stähli and Gustafsson, 2006). Two points are simulated: one with forest cover and one without.
which runs simulations for the winter of 2004-2005 at Alptal, Switzerland (Stähli and Gustafsson, 2006). Two points are simulated: one with forest cover and one without.

## References

Expand Down
6 changes: 3 additions & 3 deletions src/QSAT.F90
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ subroutine QSAT(P,T,Qs)

Tc = T - Tm
if (Tc > 0) then
es = e0*exp(17.5043*Tc / (241.3 + Tc))
es = e0*exp(17.5043*Tc/(241.3 + Tc))
else
es = e0*exp(22.4422*Tc / (272.186 + Tc))
es = e0*exp(22.4422*Tc/(272.186 + Tc))
end if
Qs = eps*es / P
Qs = eps*es/P

end subroutine QSAT
2 changes: 1 addition & 1 deletion src/SOLARPOS.F90
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ subroutine SOLARPOS(year,month,day,hour,lat,noon,azim,elev)
real, intent(in) :: &
hour, &! Hour of day
lat, &! Latitude (radians)
noon ! Time of solar noon (hour)
noon ! Time of solar noon (hours)

real, intent(out) :: &
azim, &! Solar azimuth (radians)
Expand Down

0 comments on commit 245308a

Please sign in to comment.