Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderRichert-NOAA committed Jan 11, 2024
1 parent 05a79d5 commit 9d66c6f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions io/module_write_netcdf.F90
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,21 @@ module module_write_netcdf
implicit none
private
public write_netcdf
public ajwrdummy

logical :: par

contains

!----------------------------------------------------------------------------------------
subroutine ajwrdummy(myint)

integer, intent(inout) :: myint

myint=2*myint

end subroutine ajwrdummy
!
subroutine write_netcdf(wrtfb, filename, &
use_parallel_netcdf, mpi_comm, mype, &
grid_id, rc)
Expand Down
6 changes: 6 additions & 0 deletions tests/test_fv3_io_def.F90
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
program test_fv3_io_def

use module_fv3_io_def
use module_write_netcdf, only: ajwrdummy
implicit none

integer myint

myint=2
call ajwrdummy(myint)

num_pes_fcst = 2
if (num_pes_fcst .ne. 2) stop 1
wrttasks_per_group = 4
Expand Down

0 comments on commit 9d66c6f

Please sign in to comment.