Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

global_cycle - Add soil moisture nudging for NoahMP option #809

Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
468ecee
Add new write routine that updates records from an
GeorgeGayno-NOAA Jan 25, 2023
7df8ccc
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Jan 26, 2023
228cb2b
Determine whether to process noah or noah-mp based on
GeorgeGayno-NOAA Feb 2, 2023
2e88092
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Feb 2, 2023
582021b
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Feb 2, 2023
00e0127
Begin writing a new output routine that updates an
GeorgeGayno-NOAA Feb 6, 2023
e2c468a
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Feb 6, 2023
c98feac
Add remaining variable to new write routine.
GeorgeGayno-NOAA Feb 8, 2023
0fb89c3
Point to new write routine for noah-mp.
GeorgeGayno-NOAA Feb 9, 2023
44c3f4b
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Feb 9, 2023
1063f9b
Remove old test write routine.
GeorgeGayno-NOAA Feb 9, 2023
85d64d9
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Feb 16, 2023
6f62ceb
Remove old write routine.
GeorgeGayno-NOAA Feb 16, 2023
4e724bb
Rename write routine.
GeorgeGayno-NOAA Feb 16, 2023
0df4d60
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Mar 1, 2023
d2f7e1b
Update soil moisture for NoahMP.
GeorgeGayno-NOAA Mar 2, 2023
d830600
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Apr 11, 2023
c4f0690
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Apr 12, 2023
f2ee012
Merge branch 'develop' into feature/cycle_noahmp
GeorgeGayno-NOAA Apr 18, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sorc/global_cycle.fd/cycle.f90
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,8 @@ SUBROUTINE SFCDRV(LUGB, IDIM,JDIM,LSM,LENSFC,LSOIL,DELTSFC, &

IF (IS_NOAHMP) THEN

CALL WRITE_DATA(LENSFC,IDIM,JDIM,LSOIL,DO_NSST,NSST,VEGFCS=VEGFCS)
CALL WRITE_DATA(LENSFC,IDIM,JDIM,LSOIL,DO_NSST,NSST,VEGFCS=VEGFCS, &
SLCFCS=SLCFCS,SMCFCS=SMCFCS)

ELSE

Expand Down