Skip to content

Commit

Permalink
Update to use latest version of sfcsub.F
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGayno-NOAA committed Jul 20, 2022
1 parent a567090 commit 365c1b9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ccpp-physics
Submodule ccpp-physics updated 131 files
12 changes: 8 additions & 4 deletions sorc/global_cycle.fd/machine.f90
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ MODULE MACHINE

IMPLICIT NONE
SAVE
integer, parameter :: kind_io4 = 4 !< Kind type for 4-byte float point
!! variables.
integer, parameter :: kind_io8 = 8 !< Kind type for 8-byte float point
!! variables.
integer, parameter :: kind_sngl_prec = 4 !< Kind type for 4-byte float point
!! variables.
integer, parameter :: kind_io4 = kind_sngl_prec !< Kind type for 4-byte float point
!! variables.
integer, parameter :: kind_dbl_prec = 8 !< Kind type for 8-byte float point
!! variables.
integer, parameter :: kind_io8 = kind_dbl_prec !< Kind type for 8-byte float point
!! variables.
END MODULE MACHINE

0 comments on commit 365c1b9

Please sign in to comment.