Class soil_thermdiffcoef
In: surface_properties/soil_thermdiffcoef.f90

Methods

Included Modules

dc_types dc_message gridset dc_iounit namelist_util Bucket_Model

Public Instance methods

Subroutine :
xy_SurfType( 0:imax-1, 1:jmax ) :integer , intent(in )
xy_SoilMoist( 0:imax-1, 1:jmax ) :real(DP), intent(in )
xy_SoilThermDiffCoef( 0:imax-1, 1:jmax ) :real(DP), intent(out)

[Source]

  subroutine SetSoilThermDiffCoefSimple( xy_SurfType, xy_SoilMoist, xy_SoilThermDiffCoef )

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

    ! 格子点設定
    ! Grid points settings
    !
    use gridset, only: imax, jmax, kmax    ! 鉛直層数.
                               ! Number of vertical level

    ! 宣言文 ; Declaration statements
    !
    integer , intent(in ) :: xy_SurfType         ( 0:imax-1, 1:jmax )
    real(DP), intent(in ) :: xy_SoilMoist        ( 0:imax-1, 1:jmax )
    real(DP), intent(out) :: xy_SoilThermDiffCoef( 0:imax-1, 1:jmax )


    ! 作業変数
    ! Work variables
    !
    integer:: i               ! 経度方向に回る DO ループ用作業変数
                              ! Work variables for DO loop in longitude
    integer:: j               ! 緯度方向に回る DO ループ用作業変数
                              ! Work variables for DO loop in latitude


    ! 初期化確認
    ! Initialization check
    !
    if ( .not. soil_thermdiffcoef_inited ) then
      call MessageNotify( 'E', module_name, 'This module has not been initialized.' )
    end if


    !
    ! land
    !
    do j = 1, jmax
      do i = 0, imax-1
        if( xy_SurfType( i, j ) >= 1 ) then
          xy_SoilThermDiffCoef(i,j) = ( SoilThermDiffCoefMax - SoilThermDiffCoefMin ) / ( SoilMoistCritAmnt    - 0.0_DP               ) * ( xy_SoilMoist(i,j)    - 0.0_DP               ) + SoilThermDiffCoefMin
          xy_SoilThermDiffCoef(i,j) = min( max( xy_SoilThermDiffCoef(i,j), SoilThermDiffCoefMin ), SoilThermDiffCoefMax )
        else
          xy_SoilThermDiffCoef(i,j) = 1.0e100_DP
        end if
      end do
    end do


  end subroutine SetSoilThermDiffCoefSimple
Subroutine :
FlagSnow :logical, intent(in)

This procedure input/output NAMELIST#soil_thermdiffcoef_nml .

[Source]

  subroutine SoilThermDiffCoefInit( FlagSnow )

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

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

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

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

    ! バケツモデル
    ! Bucket model
    !
    use Bucket_Model, only : BucketGetSoilMoistCritAmnt, BucketModelInit


    logical, intent(in) :: FlagSnow


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


    ! NAMELIST 変数群
    ! NAMELIST group name
    !
    namelist /soil_thermdiffcoef_nml/ SoilThermDiffCoefMin, SoilThermDiffCoefMax

    ! 実行文 ; Executable statement
    !

    if ( soil_thermdiffcoef_inited ) return


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

    SoilThermDiffCoefMin = 0.2_DP
    SoilThermDiffCoefMax = 2.0_DP
                     !   thermal conductivity (W m-1 K-1)


    ! NAMELIST の読み込み
    ! NAMELIST is input
    !
    if ( trim(namelist_filename) /= '' ) then
      call FileOpen( unit_nml, namelist_filename, mode = 'r' ) ! (in)

      rewind( unit_nml )
      read( unit_nml, nml = soil_thermdiffcoef_nml, iostat = iostat_nml )
      close( unit_nml )

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


    ! バケツモデル
    ! Bucket model
    !
    call BucketModelInit( FlagSnow )
    SoilMoistCritAmnt = BucketGetSoilMoistCritAmnt()


    ! 印字 ; Print
    !
    call MessageNotify( 'M', module_name, '----- Initialization Messages -----' )
    call MessageNotify( 'M', module_name, 'SoilThermDiffCoefMin = %f', d = (/SoilThermDiffCoefMin/) )
    call MessageNotify( 'M', module_name, 'SoilThermDiffCoefMax = %f', d = (/SoilThermDiffCoefMax/) )
    call MessageNotify( 'M', module_name, 'SoilMoistCritAmnt    = %f', d = (/SoilMoistCritAmnt/) )
    call MessageNotify( 'M', module_name, '-- version = %c', c1 = trim(version) )

    soil_thermdiffcoef_inited = .true.

  end subroutine SoilThermDiffCoefInit

Private Instance methods

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