forked from NOAA-EMC/WW3
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from mvertens/feature/icewav_coupling
updates to ww3 cap code for ww3/cice coupling
- Loading branch information
Showing
7 changed files
with
1,077 additions
and
349 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,27 @@ | ||
!> @file wav_kind_mod | ||
!! | ||
!> Precision and kind constants | ||
!! | ||
!> @details Contains public definitions of variable types and constants | ||
!! | ||
!> @author mvertens@ucar.edu, Denise.Worthen@noaa.gov | ||
!> @date 01-05-2022 | ||
module wav_kind_mod | ||
|
||
!---------------------------------------------------------------------------- | ||
! precision/kind constants add data public | ||
!---------------------------------------------------------------------------- | ||
public | ||
integer,parameter :: SHR_KIND_R8 = selected_real_kind(12) ! 8 byte real | ||
integer,parameter :: SHR_KIND_R4 = selected_real_kind( 6) ! 4 byte real | ||
integer,parameter :: SHR_KIND_RN = kind(1.0) ! native real | ||
integer,parameter :: SHR_KIND_I8 = selected_int_kind (13) ! 8 byte integer | ||
integer,parameter :: SHR_KIND_I4 = selected_int_kind ( 6) ! 4 byte integer | ||
integer,parameter :: SHR_KIND_IN = kind(1) ! native integer | ||
integer,parameter :: SHR_KIND_CS = 80 ! short char | ||
integer,parameter :: SHR_KIND_CM = 160 ! mid-sized char | ||
integer,parameter :: SHR_KIND_CL = 256 ! long char | ||
integer,parameter :: SHR_KIND_CX = 512 ! extra-long char | ||
integer,parameter :: SHR_KIND_CXX= 4096 ! extra-extra-long char | ||
integer,parameter :: SHR_KIND_R8 = selected_real_kind(12) !< @public 8 byte real | ||
integer,parameter :: SHR_KIND_R4 = selected_real_kind( 6) !< @public 4 byte real | ||
integer,parameter :: SHR_KIND_RN = kind(1.0) !< @public native real | ||
integer,parameter :: SHR_KIND_I8 = selected_int_kind (13) !< @public 8 byte integer | ||
integer,parameter :: SHR_KIND_I4 = selected_int_kind ( 6) !< @public 4 byte integer | ||
integer,parameter :: SHR_KIND_IN = kind(1) !< @public native integer | ||
integer,parameter :: SHR_KIND_CS = 80 !< @public short char | ||
integer,parameter :: SHR_KIND_CM = 160 !< @public mid-sized char | ||
integer,parameter :: SHR_KIND_CL = 256 !< @public long char | ||
integer,parameter :: SHR_KIND_CX = 512 !< @public extra-long char | ||
integer,parameter :: SHR_KIND_CXX= 4096 !< @public extra-extra-long char | ||
|
||
end module wav_kind_mod |
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
Oops, something went wrong.