Class constants_snowseaice
In: setup/constants_snowseaice.f90

雪と海氷の定数の設定

Setting constants of snow and sea ice

Note that Japanese and English are described in parallel.

雪と海氷の定数の設定および保管を行います. これらの値は NAMELIST 変数群 constants_snowseaice_nml によって変更することが 可能です.

Constants of snow and sea ice are set and stored. These values can be changed by NAMELIST group name "constants_snowseaice_nml".

Procedures List

ConstantsSnowSeaIceInit :物理定数の設定
———— :————
ConstantsSnowSeaIceInit :Settings of constants of snow and sea ice

NAMELIST

NAMELIST#constants_snowseaice_nml

Methods

Included Modules

dc_types namelist_util dc_iounit dc_message constants0 constants

Public Instance methods

CO2IceAlbedoN
Variable :
CO2IceAlbedoN :real(DP), public, save
CO2IceAlbedoS
Variable :
CO2IceAlbedoS :real(DP), public, save
CO2IceEmisN
Variable :
CO2IceEmisN :real(DP), public, save
CO2IceEmisS
Variable :
CO2IceEmisS :real(DP), public, save
CO2IceThreshold
Variable :
CO2IceThreshold :real(DP), public, save
Subroutine :

constants_snowseaice モジュールの初期化を行います. NAMELIST#constants_snowseaice_nml の読み込みはこの手続きで行われます.

"constants_snowseaice" module is initialized. NAMELIST#constants_snowseaice_nml is loaded in this procedure.

This procedure input/output NAMELIST#constants_snowseaice_nml .

[Source]

  subroutine ConstantsSnowSeaIceInit
    !
    ! constants_snowseaice モジュールの初期化を行います. 
    ! NAMELIST#constants_snowseaice_nml の読み込みはこの手続きで行われます. 
    !
    ! "constants_snowseaice" module is initialized. 
    ! NAMELIST#constants_snowseaice_nml is loaded in this procedure. 
    !

    ! モジュール引用 ; USE statements
    !

    ! NAMELIST ファイル入力に関するユーティリティ
    ! Utilities for NAMELIST file input
    !
    use namelist_util, only: namelist_filename, NmlutilMsg

    ! ファイル入出力補助
    ! File I/O support
    !
    use dc_iounit, only: FileOpen

    ! 種別型パラメタ
    ! Kind type parameter
    !
    use dc_types, only: STDOUT ! 標準出力の装置番号. Unit number of standard output

    ! メッセージ出力
    ! Message output
    !
    use dc_message, only: MessageNotify

    ! 物理・数学定数設定
    ! Physical and mathematical constants settings
    !
    use constants0, only: WaterHeatCap
                               ! Water heat capacity (J K-1 kg-1)

    ! 物理定数設定
    ! Physical constants settings
    !
    use constants, only: LatentHeatFusion
                              ! $ L $ [J kg-1] . 
                              ! 融解の潜熱. 
                              ! Latent heat of fusion


    ! 宣言文 ; Declaration statements
    !
    implicit none

    integer:: unit_nml        ! NAMELIST ファイルオープン用装置番号. 
                              ! Unit number for NAMELIST file open
    integer:: iostat_nml      ! NAMELIST 読み込み時の IOSTAT. 
                              ! IOSTAT of NAMELIST read

    ! NAMELIST 変数群
    ! NAMELIST group name
    !
    namelist /constants_snowseaice_nml/ SnowThresholdForAlbedo, SnowThresholdForFlux  , SnowAlbedo         , SnowThermCondCoef  , SnowVolHeatCap     , SnowDens           , SnowMaxThermDepth  , TempCondWater      , SeaIceVolHeatCap   , SeaIceDen          , SeaIceThermCondCoef, SOSeaIceThresholdMass, SeaIceThreshold    , SeaIceThickness    , TempBelowSeaIce    , SeaIceAlbedo       , CO2IceAlbedoS      , CO2IceAlbedoN      , CO2IceEmisS        , CO2IceEmisN

          !
          ! デフォルト値については初期化手続 "constants#ConstantsInit" 
          ! のソースコードを参照のこと. 
          !
          ! Refer to source codes in the initialization procedure
          ! "constants#ConstantsInit" for the default values. 
          !

    ! 実行文 ; Executable statement
    !

    if ( constants_snowseaice_inited ) return


    ! デフォルト値の設定
    ! Default values settings
    !

    SnowThresholdForAlbedo = 0.1_DP * 1.0e3_DP * 0.01e0_DP
                        ! 1 cm snow depth
                        ! 0.1 * 1000 (kg m-3; water density) x 1 cm
                        ! This value is selected arbitrarily. 
!!$    SnowAlbedo         = 0.7d0
    SnowAlbedo         = 0.75_DP
                        ! This value is selected arbitrarily. 

    SnowThresholdForFlux   = SnowThresholdForAlbedo

    ! MEMO for snow properties by Hillet
    !* snow (f=0.95) : k = 0.15e-3, C = 0.05
    !* snow (f=0.8 ) : k = 0.32e-3, C = 0.2
    !* snow (f=0.5 ) : k = 1.7e-3 , C = 0.5
    !f: porosity
    !k [cal/(cm s K)] conductivity
    !C [cal/(cm s K)] heat capacity

    SnowThermCondCoef = 0.32e-3_DP * 4.219e2_DP
                              ! Thermal conductivity of snow (W m-1 K-1)
!!$    SnowVolHeatCap     = 0.2_DP * 4.219e2_DP
    SnowVolHeatCap    = 2.0e6_DP * 200.0_DP / 1000.0_DP
                        ! This value is roughly based on ECMWF IFS value.
                        ! p.121, IFSPart4.pdf
                        ! Volumetric heat capacity of snow (J m-3 K-1)

    SnowDens          = 200.0_DP
                        ! This value is selected arbitrarily. 
                        ! Density of snow (kg m-3)

    SnowHeatCap       = SnowVolHeatCap / SnowDens
                        ! Snow heat capacity per unit mass (J kg-1 K-1)

!!$    SnowMaxThermDepth = 1.0_DP
    SnowMaxThermDepth = 0.0_DP
                        ! This value is based on ECMWF IFS value.
                        ! p.121, IFSPart4.pdf
                              ! Maximum thermal depth of snow (m)


    TempCondWater      = 273.15_DP
                        ! <Japanese>
                        ! Condensation temperature of water

!!$    ! https://www.myroms.org/wiki/index.php/Sea-Ice_Model
!!$    SeaIceDens         = 900.0d0   ! no reliable reference
!!$    SeaIceSpecHeat     = 2093.0d0  ! no reliable reference
!!$    SeaIceHeatDiffCoef = 2.04d0 / ( SeaIceDens * SeaIceSpecHeat )  ! 2.04d0 (W (m K)-1),  no reliable reference

!!$    SeaIceDens         = 0.92d3
!!$    ! kg m-3
!!$    SeaIceHeatDiffCoef = 2.04d0 / ( SeaIceDens * SeaIceSpecHeat )
!!$    ! 2.04d0 (W (m K)-1),  no reliable reference
!!$    SeaIceSpecHeat     = 1.9d6 / SeaIceDens
!!$    ! no reliable reference

    SeaIceVolHeatCap    = 1.9e6_DP
    ! J m-3 K-1
    ! Value of ice in Table 12.1 by Hillel (2004). 
    SeaIceDen           = 0.92e3_DP
    ! kg m-3
    ! Value of ice in Table 12.1 by Hillel (2004). 
    SeaIceHeatCap       = SeaIceVolHeatCap / SeaIceDen
    ! J m-3 K-1
    SeaIceThermCondCoef = 2.2_DP
    ! W m-1 K-1
    ! Value of ice in Table 12.2 by Hillel (2004). 

    ! Reference
    !
    ! Hillet, D., 
    !   Introduction to Environmental Soil Physics, 
    !   Elsevier Academic Press, pp494, 2004.

    SOSeaIceThresholdMass = 1.0e-3_DP * SeaIceDen
                                           ! (kg m-2) = 1 (mm) x SeaIceDen (kg m-3)
                                           ! arbitrarily set

    SeaIceThreshold    = 0.5_DP            ! arbitrarily set, no reliable reference
    SeaIceThickness    = 2.0_DP            ! arbitrarily set, no reliable reference
    TempBelowSeaIce    = 273.15_DP - 2.0_DP ! arbitrarily set, no reliable reference

!!$    SeaIceAlbedo       = 0.5_DP            ! arbitrarily set, no reliable reference
    SeaIceAlbedo       = 0.75_DP           ! arbitrarily set, no reliable reference


    CO2IceThreshold = 1.0_DP         ! No reference
    CO2IceAlbedoS   = 0.75_DP        ! No reference
    CO2IceAlbedoN   = 0.75_DP        ! No reference
    CO2IceEmisS     = 1.0_DP         ! No reference
    CO2IceEmisN     = 1.0_DP         ! No reference


    ! NAMELIST からの入力
    ! Input from NAMELIST
    !
    if ( trim(namelist_filename) /= '' ) then
      call FileOpen( unit_nml, namelist_filename, mode = 'r' ) ! (in)

      rewind( unit_nml )
      read( unit_nml, nml = constants_snowseaice_nml, iostat = iostat_nml            )   ! (out)
      close( unit_nml )

      call NmlutilMsg( iostat_nml, module_name ) ! (in)
      if ( iostat_nml == 0 ) write( STDOUT, nml = constants_snowseaice_nml )
    end if



    ! Latent heat for fusion below sea ice
    !
    LatentHeatFusionBelowSeaIce = LatentHeatFusion + ( WaterHeatCap - SeaIceHeatCap ) * ( TempBelowSeaIce - TempCondWater )


    ! 印字 ; Print
    !
    call MessageNotify( 'M', module_name, '----- Initialization Messages -----' )
    call MessageNotify( 'M', module_name, '  SnowThresholdForAlbedo = %f', d = (/ SnowThresholdForAlbedo /) )
    call MessageNotify( 'M', module_name, '  SnowAlbedo             = %f', d = (/ SnowAlbedo          /) )
    call MessageNotify( 'M', module_name, '  SnowThresholdForFlux   = %f', d = (/ SnowThresholdForFlux /) )
    call MessageNotify( 'M', module_name, '  SnowThermCondCoef   = %f', d = (/ SnowThermCondCoef   /) )
    call MessageNotify( 'M', module_name, '  SnowVolHeatCap      = %f', d = (/ SnowVolHeatCap      /) )
    call MessageNotify( 'M', module_name, '  SnowDens            = %f', d = (/ SnowDens            /) )
    call MessageNotify( 'M', module_name, '  SnowMaxThermDepth   = %f', d = (/ SnowMaxThermDepth   /) )
    call MessageNotify( 'M', module_name, '  TempCondWater       = %f', d = (/ TempCondWater       /) )
    call MessageNotify( 'M', module_name, '  SeaIceThreshold     = %f', d = (/ SeaIceThreshold     /) )
    call MessageNotify( 'M', module_name, '  SeaIceVolHeatCap    = %f', d = (/ SeaIceVolHeatCap    /) )
    call MessageNotify( 'M', module_name, '  SeaIceDen           = %f', d = (/ SeaIceDen           /) )
    call MessageNotify( 'M', module_name, '  SeaIceThermCondCoef = %f', d = (/ SeaIceThermCondCoef /) )
    call MessageNotify( 'M', module_name, '  SOSeaIceThresholdMass = %f', d = (/ SOSeaIceThresholdMass /) )

!!$    call MessageNotify( 'M', module_name, '  SeaIceDens         = %f', d = (/ SeaIceDens         /) )
!!$    call MessageNotify( 'M', module_name, '  SeaIceSpecHeat     = %f', d = (/ SeaIceSpecHeat     /) )
!!$    call MessageNotify( 'M', module_name, '  SeaIceHeatDiffCoef = %f', d = (/ SeaIceHeatDiffCoef /) )

    call MessageNotify( 'M', module_name, '  SeaIceThickness     = %f', d = (/ SeaIceThickness     /) )
    call MessageNotify( 'M', module_name, '  TempBelowSeaIce     = %f', d = (/ TempBelowSeaIce     /) )
    call MessageNotify( 'M', module_name, '  SeaIceAlbedo        = %f', d = (/ SeaIceAlbedo        /) )
    call MessageNotify( 'M', module_name, '  CO2IceAlbedoS       = %f', d = (/ CO2IceAlbedoS       /) )
    call MessageNotify( 'M', module_name, '  CO2IceAlbedoN       = %f', d = (/ CO2IceAlbedoN       /) )
    call MessageNotify( 'M', module_name, '  CO2IceEmisS         = %f', d = (/ CO2IceEmisS       /) )
    call MessageNotify( 'M', module_name, '  CO2IceEmisN         = %f', d = (/ CO2IceEmisN       /) )
    call MessageNotify( 'M', module_name, '-- version = %c', c1 = trim(version) )

    constants_snowseaice_inited = .true.

  end subroutine ConstantsSnowSeaIceInit
LatentHeatFusionBelowSeaIce
Variable :
LatentHeatFusionBelowSeaIce :real(DP), public, save
: Latant heat for fusion below sea ice
SOSeaIceThresholdMass
Variable :
SOSeaIceThresholdMass :real(DP), public, save
: Threshold for sea ice mass on slab ocean (kg m-2)
SeaIceAlbedo
Variable :
SeaIceAlbedo :real(DP), public, save
SeaIceDen
Variable :
SeaIceDen :real(DP), public, save
: Density of sea ice (kg m-3)
SeaIceHeatCap
Variable :
SeaIceHeatCap :real(DP), public, save
: Sea ice heat capacity per unit mass (J kg-1 K-1)
SeaIceThermCondCoef
Variable :
SeaIceThermCondCoef :real(DP), public, save
: Thermal conductivity of sea ice (W m-1 K-1)
SeaIceThickness
Variable :
SeaIceThickness :real(DP), public, save
SeaIceThreshold
Variable :
SeaIceThreshold :real(DP), public, save
: to be changed
SeaIceVolHeatCap
Variable :
SeaIceVolHeatCap :real(DP), public, save
: Volumetric heat capacity of sea ice (J m-3 K-1)
SnowAlbedo
Variable :
SnowAlbedo :real(DP), public, save
SnowDens
Variable :
SnowDens :real(DP), public, save
: Density of snow (kg m-3)
SnowHeatCap
Variable :
SnowHeatCap :real(DP), public, save
: Snow heat capacity snow per unit mass (J kg-1 K-1)
SnowMaxThermDepth
Variable :
SnowMaxThermDepth :real(DP), public, save
: Maximum thermal depth of snow (m)
SnowThermCondCoef
Variable :
SnowThermCondCoef :real(DP), public, save
: Thermal conductivity of snow (W m-1 K-1)
SnowThresholdForAlbedo
Variable :
SnowThresholdForAlbedo :real(DP), public, save
SnowThresholdForFlux
Variable :
SnowThresholdForFlux :real(DP), public, save
SnowVolHeatCap
Variable :
SnowVolHeatCap :real(DP), public, save
: Volumetric heat capacity of snow (J m-3 K-1)
TempBelowSeaIce
Variable :
TempBelowSeaIce :real(DP), public, save
TempCondWater
Variable :
TempCondWater :real(DP), public, save
: <Japanese> Condensation temperature of water

Private Instance methods

constants_snowseaice_inited
Variable :
constants_snowseaice_inited = .false. :logical, save
: 初期設定フラグ. Initialization flag
module_name
Constant :
module_name = ‘constants_snowseaice :character(*), parameter
: モジュールの名称. Module name
version
Constant :
version = ’$Name: $’ // ’$Id: constants_snowseaice.f90,v 1.5 2015/01/29 12:07:29 yot Exp $’ :character(*), parameter
: モジュールのバージョン Module version