Skip to content

Commit

Permalink
Rename module that contains the atmospheric target esmf
Browse files Browse the repository at this point in the history
fields.

Fixes ufs-community#459
  • Loading branch information
GeorgeGayno-NOAA committed Feb 15, 2022
1 parent 7534d10 commit 1824060
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion sorc/chgres_cube.fd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

set(lib_src
atmosphere.F90
atm_target_data.F90
atmosphere_target_data.F90
grib2_util.F90
input_data.F90
model_grid.F90
Expand Down
4 changes: 2 additions & 2 deletions sorc/chgres_cube.fd/atmosphere.F90
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module atmosphere

use esmf

use atm_target_data, only : lev_target, levp1_target, nvcoord_target, &
use atmosphere_target_data, only : lev_target, levp1_target, nvcoord_target, &
vcoord_target, delp_target_grid, &
dzdt_target_grid, ps_target_grid, &
temp_target_grid, tracers_target_grid, &
Expand Down Expand Up @@ -2182,7 +2182,7 @@ end subroutine cleanup_target_atm_b4adj_data
!! @author George Gayno
subroutine cleanup_target_atm_data

use atm_target_data, only : cleanup_atmosphere_target_data
use atmosphere_target_data, only : cleanup_atmosphere_target_data

implicit none

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module atm_target_data
module atmosphere_target_data

use esmf

Expand Down Expand Up @@ -71,4 +71,4 @@ subroutine cleanup_atmosphere_target_data

end subroutine cleanup_atmosphere_target_data

end module atm_target_data
end module atmosphere_target_data
10 changes: 5 additions & 5 deletions sorc/chgres_cube.fd/write_data.F90
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ subroutine write_fv3_atm_header_netcdf(localpet)

use netcdf

use atm_target_data, only : nvcoord_target, &
vcoord_target, &
levp1_target
use atmosphere_target_data, only : nvcoord_target, &
vcoord_target, &
levp1_target

use program_setup, only : num_tracers, use_thomp_mp_climo

Expand Down Expand Up @@ -116,7 +116,7 @@ subroutine write_fv3_atm_bndy_data_netcdf(localpet)
use esmf
use netcdf

use atm_target_data
use atmosphere_target_data

use model_grid, only : i_target, ip1_target, j_target, jp1_target

Expand Down Expand Up @@ -1201,7 +1201,7 @@ subroutine write_fv3_atm_data_netcdf(localpet)
use_thomp_mp_climo, &
regional

use atm_target_data
use atmosphere_target_data


use model_grid, only : num_tiles_target_grid, &
Expand Down
2 changes: 1 addition & 1 deletion tests/chgres_cube/ftst_read_vcoord.F90
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ program vcoord
!
! @author George Gayno

use atm_target_data, only : vcoord_target, &
use atmosphere_target_data, only : vcoord_target, &
nvcoord_target, &
lev_target, &
levp1_target
Expand Down

0 comments on commit 1824060

Please sign in to comment.