-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
file no longer needed
- Loading branch information
Showing
1 changed file
with
1 addition
and
20 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 |
---|---|---|
@@ -1,20 +1 @@ | ||
!**************************************************************************************** | ||
!* :: Purpose :: * | ||
!* Module defining compiler-independent numerical precision parameters * | ||
!* * | ||
!* :: Authors :: * | ||
!* Andi Zuend ([email protected]) * | ||
!* Dept. Atmospheric and Oceanic Sciences, McGill University * | ||
!* * | ||
!**************************************************************************************** | ||
module Mod_NumPrec | ||
|
||
implicit none | ||
|
||
!define a working precision (wp) level to be used with floating point (real) variables, e.g. 1.0 should be stated as 1.0_wp. | ||
!number_of_digits = desired minimum level of precision in terms of number of floating point decimal digits. | ||
integer,parameter,public :: wp = kind(1.0D0) !set here for compatibility with AIOMFAC's real(8) settings; | ||
!integer,parameter,private :: number_of_digits = 12 | ||
!integer,parameter,public :: wp = kind (1.0D0) !wp = selected_real_kind(number_of_digits) | ||
|
||
end module Mod_NumPrec | ||
!file no longer needed (replaced by Mod_kinds_param) |