Skip to content

Commit 086143c

Browse files
Baseline initial routines to process fractional veg/soil type.
Routines were created to interpolate, search for missing data, and output the data. Fixes ufs-community#709.
1 parent 1817f1d commit 086143c

File tree

5 files changed

+823
-1
lines changed

5 files changed

+823
-1
lines changed

sorc/sfc_climo_gen.fd/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@
55

66
set(lib_src
77
interp.F90
8+
interp2.F90
89
model_grid.F90
910
output.f90
11+
output2.f90
1012
program_setup.f90
1113
search.f90
14+
search2.f90
1215
source_grid.F90
1316
utils.f90)
1417

sorc/sfc_climo_gen.fd/driver.F90

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ program driver
8181

8282
call define_source_grid(localpet, npets, input_vegetation_type_file)
8383
method=ESMF_REGRIDMETHOD_NEAREST_STOD
84-
call interp(localpet, method, input_vegetation_type_file)
84+
call interp2(localpet, method, input_vegetation_type_file)
8585
call source_grid_cleanup
8686

8787
! Snow free albedo

0 commit comments

Comments
 (0)