Skip to content

Commit

Permalink
bug fixed in reading LAI of water body.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangsp8 committed Nov 21, 2024
1 parent 4857508 commit 89ca937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/MOD_LAIReadin.F90
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ SUBROUTINE LAI_readin (year, time, dir_landdata)
#ifdef URBAN_MODEL
IF(m == URBAN) CYCLE
#endif
IF( m == 0 )THEN
IF(m == 0 .or. m == WATERBODY)THEN
fveg(npatch) = 0.
tlai(npatch) = 0.
tsai(npatch) = 0.
Expand Down

0 comments on commit 89ca937

Please sign in to comment.