Skip to content

Commit f62edb5

Browse files
committed
Merge pull request #3 from jyearsley/master
First grid-based version of RBM
2 parents 52b686b + c39a668 commit f62edb5

File tree

5 files changed

+989
-1168
lines changed

5 files changed

+989
-1168
lines changed

src/Makefile

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
########################################################################
2+
### RBM.f90 makefile ###################################################
3+
########################################################################
4+
#
5+
# Grid-based stream temperature model written by:
6+
#
7+
# John Yearsley, Affiliate Professor
8+
# Land Surface Hydrology Group
9+
# University of Washington
10+
11+
12+
# http://www.hydro.washington.edu/~yearsley/
13+
14+
# For model description see:
15+
#
16+
# Yearsley J. (2012): A grid-based approach for simulating stream temperature.
17+
# Wat. Resour. Res., 48. DOI: # # 10.1029/2011WR011515.
18+
#
19+
#Comment out one of the following depending on your compiler
20+
#
21+
# The compiler
22+
FC = gfortran
23+
#FC = ifort
24+
#
25+
26+
27+
HFILES = rbm10_VIC.h
28+
29+
OBJECTS = rbm10_VIC.o
30+
31+
exe: $(OBJECTS)
32+
$(FC) $(OBJECTS) -o ../Test_Case/rbm_VIC
33+
34+
rbm10_VIC.o: rbm10_VIC.f90
35+
$(FC) -c rbm10_VIC.f90
36+
37+
clean:
38+
rm *.o
39+

0 commit comments

Comments
 (0)