forked from ufs-community/UFS_UTILS
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into lowres_grids
Fixes ufs-community#1000.
- Loading branch information
Showing
18 changed files
with
757 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# $2+ - Executable and its arguments | ||
# | ||
|
||
ACCOUNT= | ||
ACCOUNT=fv3-cpu | ||
QOS=debug | ||
|
||
NP=$1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
!> Determine the water mask by merging the lake mask with the mapped ocean | ||
!! mask from MOM6. Both are on the FV3 grid. During merge, the ocean mask | ||
!! dominates the lake mask if there is a conflict. After the merge, the remaining | ||
!! non-water fraction is the land fraction. | ||
!! | ||
!! @param[in] lon The "east/west" dimension of the model grid. | ||
!! @param[in] lat The "north/south" dimension of the model grid. | ||
!! @param[in] binary_lake When '1', lake fraction is either 0 or 1. Otherwise, it is a fraction. | ||
!! @param[in] lat2d Latitude of the model grid points. | ||
!! @param[in] ocn_frac Fraction of the grid point that is ocean. | ||
!! @param[inout] lake_frac Fraction of the grid point that is lake. | ||
!! @param[inout] lake_depth Lake depth in meters. | ||
!! @param[out] land_frac Fraction of the grid point that is land. | ||
!! @param[out] slmsk Land/sea mask. '0' if less than 50% land. Otherwise, '1'. | ||
!! | ||
!! @author Shan Sun | ||
!! @author Rahul Mahajan | ||
!! @author Sanath Kumar | ||
subroutine merge(lon, lat, binary_lake, lat2d, ocn_frac, & | ||
lake_frac, lake_depth, land_frac, slmsk) | ||
|
||
implicit none | ||
|
||
integer, intent(in) :: lon, lat, binary_lake | ||
|
||
real, intent(in) :: lat2d(lon,lat) | ||
real, intent(in) :: ocn_frac(lon,lat) | ||
real, intent(inout) :: lake_frac(lon,lat) | ||
real, intent(inout) :: lake_depth(lon,lat) | ||
real, intent(out) :: land_frac(lon,lat) | ||
real, intent(out) :: slmsk(lon,lat) | ||
|
||
real, parameter :: min_land=1.e-4, def_lakedp=10. | ||
|
||
integer :: i, j, nodp_pt, lake_pt | ||
|
||
nodp_pt=0 | ||
lake_pt=0 | ||
|
||
do i=1,lon | ||
do j=1,lat | ||
if (binary_lake.eq.1) lake_frac(i,j)=nint(lake_frac(i,j)) ! using integer lake_frac | ||
if (lat2d(i,j).le.-60.) lake_frac(i,j)=0. ! ignore lakes on Antarctica | ||
land_frac(i,j)=1.-ocn_frac(i,j) | ||
if (land_frac(i,j) < min_land) land_frac(i,j)=0. ! ignore land < min_land | ||
if (land_frac(i,j) > 1.-min_land) land_frac(i,j)=1. ! ignore water < min_land | ||
if (1.-land_frac(i,j) > 0.) lake_frac(i,j)=0. ! ocn dominates | ||
|
||
if (lake_frac(i,j) > 0.) then | ||
lake_pt=lake_pt+1 ! calculating total lake points | ||
if (binary_lake.eq.1) then | ||
land_frac(i,j)=0. | ||
else | ||
land_frac(i,j)=1.-lake_frac(i,j) | ||
end if | ||
if (lake_depth(i,j) <= 0.) then | ||
lake_depth(i,j)=def_lakedp ! set missing lake depth to default value | ||
nodp_pt=nodp_pt+1 ! calculating total lake points without depth | ||
end if | ||
else | ||
lake_depth(i,j)=0. | ||
end if | ||
slmsk(i,j) = nint(land_frac(i,j)) ! nint got the land pts correct | ||
end do | ||
end do | ||
|
||
write(*,'(a,i8,a,i8,a)') 'Total lake point ',lake_pt,' where ',nodp_pt,' has no depth' | ||
|
||
end subroutine merge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
!> @file | ||
!! @brief Determines the water mask by merging the lake mask with | ||
!! the mapped ocean mask from MOM6. | ||
!! @author Shan Sun | ||
!! @author Rahul Mahajan | ||
!! @author Sanath Kumar | ||
|
||
!> Determine the water mask by merging the lake mask with the mapped ocean | ||
!! mask from MOM6, both are on the FV3 grid. During merge, the ocean mask | ||
!! dominates the lake mask if there is a conflict. After the merge, the remaining | ||
!! non-water fraction is the land fraction. | ||
!! | ||
!! @return 0 for success, error code otherwise. | ||
!! @author Shan Sun | ||
!! @author Rahul Mahajan | ||
!! @author Sanath Kumar | ||
program merge_lake_ocnmsk | ||
|
||
implicit none | ||
|
||
character(len=120) :: pth1 | ||
character(len=120) :: pth2,pth3 | ||
character(len=10) :: atmres,ocnres | ||
|
||
integer :: binary_lake | ||
integer :: lat,lon,tile | ||
|
||
real, allocatable :: lake_frac(:,:),lake_depth(:,:),land_frac(:,:),ocn_frac(:,:),slmsk(:,:),lat2d(:,:) | ||
|
||
print*,"- BEGIN OCEAN MERGE PROGRAM." | ||
|
||
call read_nml(pth1, pth2, atmres, ocnres, pth3,binary_lake) | ||
|
||
do tile=1,6 | ||
|
||
call read_grid_dims(pth1, atmres, ocnres, tile, lon, lat) | ||
|
||
if (tile==1) then | ||
write(6,*) 'lat=',lat,'lon=',lon | ||
allocate (lake_frac(lon,lat),lake_depth(lon,lat),land_frac(lon,lat), & | ||
ocn_frac(lon,lat),slmsk(lon,lat),lat2d(lon,lat)) | ||
endif | ||
|
||
call read_ocean_frac(pth1,atmres,ocnres,tile,lon,lat,ocn_frac) | ||
|
||
call read_lake_mask(pth2,atmres,tile,lon,lat,lake_frac, & | ||
lake_depth,lat2d) | ||
|
||
call merge(lon, lat, binary_lake, lat2d, ocn_frac, lake_frac, lake_depth, land_frac, slmsk) | ||
|
||
call write_data(atmres,ocnres,pth3,tile,lon,lat,land_frac, & | ||
lake_frac,lake_depth,slmsk) | ||
|
||
end do ! tile | ||
|
||
deallocate (lake_frac,lake_depth,land_frac,ocn_frac,slmsk,lat2d) | ||
|
||
print*,"- NORMAL TERMINATION." | ||
|
||
end program merge_lake_ocnmsk |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.