MOM6
MOM_constants.F90
1 !> Provides a few physical constants
3 
4 ! This file is part of MOM6. See LICENSE.md for the license.
5 
6 use constants_mod, only : hlv, hlf
7 
8 implicit none ; private
9 
10 !> The constant offset for converting temperatures in Kelvin to Celsius
11 real, public, parameter :: celsius_kelvin_offset = 273.15
12 public :: hlv, hlf
13 
14 end module mom_constants
mom_constants
Provides a few physical constants.
Definition: MOM_constants.F90:2