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

Change constants_mod -> ip_constants_mod #198

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ip_station_points_grid_mod.F90 ip_gaussian_grid_mod.F90
ip_equid_cylind_grid_mod.F90 ip_lambert_conf_grid_mod.F90
ip_mercator_grid_mod.F90 ip_polar_stereo_grid_mod.F90
ip_rot_equid_cylind_egrid_mod.F90 ip_rot_equid_cylind_grid_mod.F90
constants_mod.F90 ip_grids_mod.F90 ip_grid_factory_mod.F90
ip_constants_mod.F90 ip_grids_mod.F90 ip_grid_factory_mod.F90
ip_interpolators_mod.F90 earth_radius_mod.F90 polfix_mod.F90)

# Build _4, _d, and/or _8 depending on options provided to CMake
Expand Down
4 changes: 2 additions & 2 deletions src/constants_mod.F90 → src/ip_constants_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
!> @brief Module containing common constants.
!!
!! @author Kyle Gerheiser, George Gayno, Alex Richert
module constants_mod
module ip_constants_mod
implicit none

public
Expand All @@ -18,5 +18,5 @@ module constants_mod
real, parameter :: RERTH_WGS84=6.378137E6 !< Radius of the Earth defined by WGS-84
real, parameter :: E2_WGS84 = 0.00669437999013 !< Eccentricity squared of Earth defined by WGS-84

end module constants_mod
end module ip_constants_mod

2 changes: 1 addition & 1 deletion src/ip_gaussian_grid_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module ip_gaussian_grid_mod
use ip_grid_descriptor_mod
use ip_grid_mod
use earth_radius_mod
use constants_mod
use ip_constants_mod
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/ip_lambert_conf_grid_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module ip_lambert_conf_grid_mod
use ip_grid_descriptor_mod
use ip_grid_mod
use earth_radius_mod
use constants_mod
use ip_constants_mod
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/ip_mercator_grid_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
module ip_mercator_grid_mod
use ip_grid_descriptor_mod
use ip_grid_mod
use constants_mod, only: DPR, PI
use ip_constants_mod, only: DPR, PI
use earth_radius_mod
implicit none

Expand Down
2 changes: 1 addition & 1 deletion src/ip_polar_stereo_grid_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
module ip_polar_stereo_grid_mod
use ip_grid_descriptor_mod
use ip_grid_mod
use constants_mod, only: DPR, PI, PI2, PI4, RERTH_WGS84, E2_WGS84
use ip_constants_mod, only: DPR, PI, PI2, PI4, RERTH_WGS84, E2_WGS84
use earth_radius_mod
implicit none

Expand Down
2 changes: 1 addition & 1 deletion src/ip_rot_equid_cylind_egrid_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module ip_rot_equid_cylind_egrid_mod
use iso_fortran_env, only: real64
use ip_grid_descriptor_mod
use ip_grid_mod
use constants_mod, only: DPR, PI
use ip_constants_mod, only: DPR, PI
use earth_radius_mod
implicit none

Expand Down
2 changes: 1 addition & 1 deletion src/ip_rot_equid_cylind_grid_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module ip_rot_equid_cylind_grid_mod
use iso_fortran_env, only: real64
use ip_grid_descriptor_mod
use ip_grid_mod
use constants_mod, only: DPR, PI
use ip_constants_mod, only: DPR, PI
use earth_radius_mod
implicit none

Expand Down
Loading