Skip to content

Commit

Permalink
Change constants_mod -> ip_constants_mod (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderRichert-NOAA authored Sep 14, 2023
1 parent af57730 commit 4e993c2
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
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

0 comments on commit 4e993c2

Please sign in to comment.