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

DATM updates and fixes #8

Merged
merged 22 commits into from
Apr 30, 2020
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7798743
remove polekind which for some reason fails when compiled
DeniseWorthen Apr 17, 2020
01c9cff
update export momentum field name for latest NEMS
DeniseWorthen Apr 18, 2020
ab30c0a
write export fields from datm as single timestamped file
DeniseWorthen Apr 19, 2020
02bf934
temporary removal of import to atm
DeniseWorthen Apr 19, 2020
fd5cb3d
delete import field
DeniseWorthen Apr 19, 2020
9d4ebaf
remove unused code
DeniseWorthen Apr 19, 2020
4407e3e
remove more unused code
DeniseWorthen Apr 20, 2020
8854e31
add calculation of net_lw_flx in AtmForce
DeniseWorthen Apr 21, 2020
ece96f0
Merge pull request #1 from NOAA-EMC/develop
DeniseWorthen Apr 23, 2020
5d34f87
Merge pull request #2 from DeniseWorthen/develop
DeniseWorthen Apr 23, 2020
aa03382
remove unused variables
DeniseWorthen Apr 23, 2020
e572d57
Merge branch 'feature/gridfix' of https://github.com/DeniseWorthen/NE…
DeniseWorthen Apr 23, 2020
c4eebc7
fix for N-S ordering of grid
DeniseWorthen Apr 23, 2020
048de03
revert changes for momentum_flx fields so that this branch
DeniseWorthen Apr 23, 2020
1b933d2
inital log cleanup; revert again moment flux names
DeniseWorthen Apr 25, 2020
4ff2e3e
complete log message cleanup
DeniseWorthen Apr 25, 2020
4a9703c
updated with SCRIP and clean up of FieldsToExport
DeniseWorthen Apr 26, 2020
9f6e26b
fixes brought in from standalone
DeniseWorthen Apr 26, 2020
0a85ce6
Merge pull request #3 from DeniseWorthen/feature/scrip
DeniseWorthen Apr 27, 2020
e6271aa
remove commented out code
DeniseWorthen Apr 27, 2020
b639a5e
add shortname for exchanging fields with mediator; field dumps
DeniseWorthen Apr 28, 2020
4a23db8
add abort if can't find fields to create net_lw_flx
DeniseWorthen Apr 29, 2020
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
4 changes: 3 additions & 1 deletion DATM/AtmBundleCreate.F90
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ subroutine AtmBundleCreate(gcomp,importState, exportState, rc)

character(len=ESMF_MAXSTR) :: aname, fnameb, fnamef
character(len=ESMF_MAXSTR) :: msgString
character(len=*),parameter :: u_FILE_u = &
__FILE__

! Initialize return code
rc = ESMF_SUCCESS
Expand Down Expand Up @@ -87,7 +89,7 @@ subroutine AtmBundleCreate(gcomp,importState, exportState, rc)

write(msgString,'(i4,2a14,a16,2a14,a16)')ii,' added field ',trim(fnameb),' to AtmBundleBak', &
' and field ',trim(fnamef),' to AtmBundleFwd'
call ESMF_LogWrite(trim(msgString), ESMF_LOGMSG_INFO, rc=rc)
DeniseWorthen marked this conversation as resolved.
Show resolved Hide resolved
call ESMF_LogWrite(trim(msgString), ESMF_LOGMSG_INFO)
enddo

call ESMF_LogWrite("User init routine AtmBundleCreate finished", ESMF_LOGMSG_INFO)
Expand Down
241 changes: 0 additions & 241 deletions DATM/AtmExportFields.F90

This file was deleted.

Loading