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.
Fixes ufs-community#1000.
- Loading branch information
George Gayno
committed
Jan 7, 2025
1 parent
858629b
commit e23b2fd
Showing
3 changed files
with
31 additions
and
0 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
Binary file not shown.
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,23 @@ | ||
program read_model_dims | ||
|
||
use io_utils, only : read_mdl_dims | ||
|
||
implicit none | ||
|
||
character(len=19) :: mdl_grid_file | ||
|
||
integer :: im, jm | ||
|
||
print*,"- Begin test of routine read_mdl_dims." | ||
|
||
mdl_grid_file="./C12_grid.tile1.nc" | ||
|
||
call read_mdl_dims(mdl_grid_file,im,jm) | ||
|
||
print*,'im/jm ',im,jm | ||
|
||
print*,"OK" | ||
|
||
print*,"SUCCESS" | ||
|
||
end program read_model_dims |