Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mixed precision axis_utils2 #1081

Closed
wants to merge 32 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
dcaee39
Changes to add mixed mode precision
mcallic2 Nov 22, 2022
280eed1
Adds axis_utils2 test cases
mcallic2 Nov 25, 2022
b9e07f2
Cmakelist changes for mixed mode
mcallic2 Nov 28, 2022
304c6a3
Fixes whitespace and style issues for CI
mcallic2 Nov 28, 2022
23c3f41
More whitespace fixes
mcallic2 Nov 29, 2022
c1cb778
Switchs .fh file to .inc file and vise versa
mcallic2 Dec 1, 2022
4a35b0b
Merge branch 'mixedmode' into axis_utils
mcallic2 Dec 2, 2022
821fb3d
Formatting/style
mcallic2 Dec 5, 2022
dcf7237
Merge branch 'axis_utils' of github.com:mcallic2/FMS into axis_utils
mcallic2 Dec 5, 2022
922c03a
Removes whitespace
mcallic2 Dec 6, 2022
5c6b997
NO MORE WHITESPACE
mcallic2 Dec 6, 2022
e60f739
Seperates r4 and r8 macros into 2 seperate files
mcallic2 Dec 6, 2022
978237f
Adds correct path to include files in Makefile script
mcallic2 Dec 6, 2022
706226b
Small changes for include files
mcallic2 Dec 7, 2022
298d61b
Fixes spelling error and path
mcallic2 Dec 7, 2022
9ac9946
Changes #include<> syntax
mcallic2 Dec 12, 2022
c60cf6b
Merge branch 'mixedmode' of github.com:NOAA-GFDL/FMS into axis_utils
mcallic2 Dec 13, 2022
2e8f25f
Changes to function call outside of function itself
mcallic2 Dec 14, 2022
94b13f6
Adds double precision
mcallic2 Dec 14, 2022
8a71114
Changes how subroutines are called outside of their routine
mcallic2 Dec 14, 2022
02453e9
Adds kind on to reals
mcallic2 Dec 14, 2022
d8cd4df
Spelling error
mcallic2 Dec 14, 2022
effeda3
Declaring r8_kind to mod variables
mcallic2 Dec 21, 2022
b81705d
chore: update gitignore (#1097)
rem1776 Dec 23, 2022
c3c56c9
fix: Bug Flag cleanup (#1089)
laurenchilutti Dec 23, 2022
203c8bf
chore: change fortran header file extenstions from .h to .fh (#1087)
mcallic2 Dec 23, 2022
3705fdb
Merge branch 'NOAA-GFDL:main' into axis_utils
mcallic2 Dec 23, 2022
7fb0151
Double precision changes for module variables
mcallic2 Jan 6, 2023
c685487
Style changes
mcallic2 Jan 6, 2023
e73d70b
Remove test file
mcallic2 Jan 6, 2023
a7b62aa
Remove uneeded comma
mcallic2 Jan 6, 2023
27b707b
Merge branch 'axis_utils' of github.com:mcallic2/FMS into axis_utils
mcallic2 Jan 6, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adds double precision
  • Loading branch information
mcallic2 committed Dec 14, 2022
commit 94b13f687f8562d870a41aaf413a46a855d5014f
4 changes: 2 additions & 2 deletions axis_utils/axis_utils2.F90
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ module axis_utils2_mod
private

integer, parameter :: maxatts = 100
real(r8_kind), parameter :: epsln= 1.e-10
real(r8_kind), parameter :: fp5 = 0.5, f360 = 360.0
real(r8_kind), parameter :: epsln= 1.d-10
real(r8_kind), parameter :: fp5 = 0.5d0, f360 = 360.0d0
!> @}
! Include variable "version" to be written to log file.
#include<file_version.h>
Expand Down