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

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

    ! 宣言文 ; 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/ ThresholdSurfSnow  , SnowAlbedo         , TempCondWater      , SeaIceVolHeatCap   , SeaIceThermCondCoef, 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
    !

    ThresholdSurfSnow  = 0.1d0 * 1.0d3 * 0.01d0
                        ! 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.75d0
                        ! This value is selected arbitrarily. 
    TempCondWater      = 273.15d0
                        ! <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.9d6
    ! J m-3 K-1
    ! Value of ice in Table 12.1 by Hillel (2004). 
    SeaIceThermCondCoef = 2.2d0
    ! 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.


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

!!$    SeaIceAlbedo       = 0.5d0            ! arbitrarily set, no reliable reference
    SeaIceAlbedo       = 0.75d0           ! 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

    ! 印字 ; Print
    !
    call MessageNotify( 'M', module_name, '----- Initialization Messages -----' )
    call MessageNotify( 'M', module_name, '  ThresholdSurfSnow   = %f', d = (/ ThresholdSurfSnow   /) )
    call MessageNotify( 'M', module_name, '  SnowAlbedo          = %f', d = (/ SnowAlbedo          /) )
    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, '  SeaIceThermCondCoef = %f', d = (/ SeaIceThermCondCoef /) )

!!$    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
SeaIceAlbedo
Variable :
SeaIceAlbedo :real(DP), public, save
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
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
TempBelowSeaIce
Variable :
TempBelowSeaIce :real(DP), public, save
TempCondWater
Variable :
TempCondWater :real(DP), public, save
: <Japanese> Condensation temperature of water
ThresholdSurfSnow
Variable :
ThresholdSurfSnow :real(DP), public, save

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: dcpam5-20140314 $’ // ’$Id: constants_snowseaice.f90,v 1.3 2012-01-20 00:18:56 yot Exp $’ :character(*), parameter
: モジュールのバージョン Module version