Skip to content

Commit 0a7940b

Browse files
Remove datm_datamode_cfsr
1 parent 483a45a commit 0a7940b

File tree

4 files changed

+2
-282
lines changed

4 files changed

+2
-282
lines changed

datm/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ set(SRCFILES atm_comp_nuopc.F90
55
datm_datamode_core2_mod.F90
66
datm_datamode_jra_mod.F90
77
datm_datamode_gefs_mod.F90
8-
datm_datamode_cfsr_mod.F90
98
datm_datamode_era5_mod.F90
109
datm_datamode_simple_mod.F90)
1110

datm/atm_comp_nuopc.F90

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ module cdeps_datm_comp
7676
use datm_datamode_gefs_mod , only : datm_datamode_gefs_restart_write
7777
use datm_datamode_gefs_mod , only : datm_datamode_gefs_restart_read
7878

79-
use datm_datamode_cfsr_mod , only : datm_datamode_cfsr_advertise
80-
use datm_datamode_cfsr_mod , only : datm_datamode_cfsr_init_pointers
81-
use datm_datamode_cfsr_mod , only : datm_datamode_cfsr_advance
82-
use datm_datamode_cfsr_mod , only : datm_datamode_cfsr_restart_write
83-
use datm_datamode_cfsr_mod , only : datm_datamode_cfsr_restart_read
84-
8579
use datm_datamode_simple_mod , only : datm_datamode_simple_advertise
8680
use datm_datamode_simple_mod , only : datm_datamode_simple_init_pointers
8781
use datm_datamode_simple_mod , only : datm_datamode_simple_advance
@@ -391,9 +385,6 @@ subroutine InitializeAdvertise(gcomp, importState, exportState, clock, rc)
391385
case ('GEFS')
392386
call datm_datamode_gefs_advertise(exportState, fldsExport, flds_scalar_name, rc)
393387
if (ChkErr(rc,__LINE__,u_FILE_u)) return
394-
case ('CFSR')
395-
call datm_datamode_cfsr_advertise(exportState, fldsExport, flds_scalar_name, rc)
396-
if (ChkErr(rc,__LINE__,u_FILE_u)) return
397388
case ('SIMPLE')
398389
call datm_datamode_simple_advertise(exportState, fldsExport, flds_scalar_name, &
399390
nlfilename, my_task, vm, rc)
@@ -638,9 +629,6 @@ subroutine datm_comp_run(importState, exportState, target_ymd, target_tod, targe
638629
case('GEFS')
639630
call datm_datamode_gefs_init_pointers(exportState, sdat, rc)
640631
if (ChkErr(rc,__LINE__,u_FILE_u)) return
641-
case('CFSR')
642-
call datm_datamode_cfsr_init_pointers(exportState, sdat, rc)
643-
if (ChkErr(rc,__LINE__,u_FILE_u)) return
644632
case('SIMPLE')
645633
call datm_datamode_simple_init_pointers(exportState, sdat, rc)
646634
if (ChkErr(rc,__LINE__,u_FILE_u)) return
@@ -661,8 +649,6 @@ subroutine datm_comp_run(importState, exportState, target_ymd, target_tod, targe
661649
call datm_datamode_era5_restart_read(restfilm, inst_suffix, logunit, my_task, mpicom, sdat)
662650
case('GEFS')
663651
call datm_datamode_gefs_restart_read(restfilm, inst_suffix, logunit, my_task, mpicom, sdat)
664-
case('CFSR')
665-
call datm_datamode_cfsr_restart_read(restfilm, inst_suffix, logunit, my_task, mpicom, sdat)
666652
case('SIMPLE')
667653
call datm_datamode_simple_restart_read(restfilm, inst_suffix, logunit, my_task, mpicom, sdat)
668654
end select
@@ -715,9 +701,6 @@ subroutine datm_comp_run(importState, exportState, target_ymd, target_tod, targe
715701
case('GEFS')
716702
call datm_datamode_gefs_advance(exportstate, mainproc, logunit, mpicom, target_ymd, &
717703
target_tod, sdat%model_calendar, rc)
718-
case('CFSR')
719-
call datm_datamode_cfsr_advance(exportstate, mainproc, logunit, mpicom, target_ymd, &
720-
target_tod, sdat%model_calendar, rc)
721704
if (ChkErr(rc,__LINE__,u_FILE_u)) return
722705
case('SIMPLE')
723706
call datm_datamode_simple_advance(target_ymd, target_tod, target_mon, &
@@ -747,10 +730,6 @@ subroutine datm_comp_run(importState, exportState, target_ymd, target_tod, targe
747730
call datm_datamode_gefs_restart_write(case_name, inst_suffix, target_ymd, target_tod, &
748731
logunit, my_task, sdat)
749732
if (ChkErr(rc,__LINE__,u_FILE_u)) return
750-
case('CFSR')
751-
call datm_datamode_cfsr_restart_write(case_name, inst_suffix, target_ymd, target_tod, &
752-
logunit, my_task, sdat)
753-
if (ChkErr(rc,__LINE__,u_FILE_u)) return
754733
case('SIMPLE')
755734
call datm_datamode_simple_restart_write(case_name, inst_suffix, target_ymd, target_tod, &
756735
logunit, my_task, sdat)

datm/datm_datamode_cfsr_mod.F90

Lines changed: 0 additions & 256 deletions
This file was deleted.

doc/source/datm.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,9 @@ ERA5 (``datm_datamode_era5_mod.F90``)
6464
`$CESMDATAROOT/inputdata/atm/datm7/ERA5`
6565

6666
.. note::
67-
In addition to the exiting DATM data modes, the `CDEPS fork <https://github.com/NOAA-EMC/CDEPS>`_
67+
Using the GEFS data mode, the `CDEPS fork <https://github.com/NOAA-EMC/CDEPS>`_
6868
used by `NOAA's UFS Weather Model <https://github.com/ufs-community/ufs-weather-model>`_
69-
also includes additional data modes such as CFSR, GEFS and GFS. These data modes are not
70-
merged with the NCAR's authoritative repository yet but it is tested under UFS Weather
71-
model.
69+
supports CFSR, GEFS and GFS data inputs.
7270

7371
.. _datm-cime-vars:
7472

0 commit comments

Comments
 (0)