Class phy_saturate_nha92
In: physics/phy_saturate_nha92.f90

Nakajima et al. (1992) を用いた飽和比湿の算出

Evaluate saturation specific humidity with Nakajima et al. (1992)

Note that Japanese and English are described in parallel.

Nakajima et al. (1992) で用いられた飽和蒸気圧 $ p^{*} $ に関する以下の式 を用い, 飽和比湿および飽和比湿の温度微分の値を算出します.

Saturation specific humidity and temperature derivative of it are calculated with a folloing formula for saturation watar vapor pressure $ p^{*} $ in Nakajima et al. (1992).

\[

   p^{*} (T) = p_0^{*} \exp \left( - \frac{l}{RT} \right).

\]

ここで, $ T $ は温度, $ R $ は普遍気体定数です. $ R $ および潜熱 $ l $ , 水蒸気飽和曲線の定数 $ p_0^{*} $ は以下のように与えられます.

where $ T $ is temperature, $ R $ is the gas constant. $ R $ and latent heat $ l $ , constant for the water vapor saturation curve $ p_0^{*} $ are as follows.

  • $ R = 8.314 $ [J mol-1 K-1]
  • $ l = 43655 $ [J mol-1]
  • $ p_0^{*} = 1.4 times 10^{11} $ [Pa]

飽和水蒸気圧から飽和比湿 $ q^{*} $ を求める際には, 以下の式を用います.

Saturation specific humidity $ q^{*} $ is calculated from saturation watar vapor pressure as follows.

\[

   q^{*} (T, P) = \varepsilon \frac{p^{*} (T)}{p}

\]

ここで $ varepsilon $ は凝結成分と大気の分子量比, $ p $ は気圧です.

where $ varepsilon $ is molecular weight ratio of water vapor to air, $ p $ is air pressure.

従って, 飽和比湿, 飽和比湿の温度変化を求める式は以下のように なります.

Therefore, saturation specific humidity and temperature derivative of it are calculated as follows.

\[

   q^{*} (T, P) = \varepsilon \frac{p_0^{*}}{p} \exp \left( - \frac{l}{RT} \right), \] \[
   \DP{q^{*} (T, P)}{T} = \varepsilon \frac{p_0^{*}}{p} \frac{l}{RT^2} \exp \left( - \frac{l}{RT} \right).

\]

Procedures List

PhySatNhaCreate :PHYSATNHA 型変数の初期設定
CalcQVapSat :飽和比湿の計算
CalcDQVapSatDTemp :飽和比湿の温度微分の計算
PhySatNhaClose :PHYSATNHA 型変数の終了処理
PhySatNhaPutLine :PHYSATNHA 型変数に格納されている情報の印字
PhySatNhainitialized :PHYSATNHA 型変数が初期設定されているか否か
———— :————
PhySatNhaCreate :Constructor of "PHYSATNHA"
CalcQVapSat :Calculate saturation specific humidity
CalcDQVapSatDTemp :Calculate temperature derivative of saturation specific humidity
PhySatNhaClose :Deconstructor of "PHYSATNHA"
PhySatNhaPutLine :Print information of "PHYSATNHA"
PhySatNhainitialized :Check initialization of "PHYSATNHA"

Usage

始めに, PHYSATNHA 型の変数を定義し, PhySatNhaCreate で初期設定を行います. 飽和比湿の計算にはサブルーチン CalcQVapSat を, 飽和比湿の温度微分の計算にはサブルーチン CalcDQVapSatDTemp を 用いてください. PHYSATNHA 型の変数の終了処理には PhySatNhaClose を用いてください.

First, initialize "PHYSATNHA" by "PhySatNhaCreate". Use a subroutine "CalcQVapSat" for saturation specific humidity, or a subroutine "CalcDQVapSatDTemp" for temperature derivative of saturation specific humidity. In order to terminate "PHYSATNHA", use "PhySatNhaClose".

References

  • Nakajima, S., Hayashi, Y.-Y., Abe, Y., 1992: A study on the "runaway greenhouse effect" with a one dimensional radiative convective equilibrium model. J. Atmos. Sci., 49, 2256--2266.

Methods

Included Modules

dc_types dc_date_types gt4_history_nmlinfo dc_trace dc_string dc_present dc_message dc_error dc_date dc_hash gt4_history dc_iounit

Public Instance methods

CalcDQVapSatDTemp( phy_sat_nha, xyz_Temp, xyz_Press, xyz_DQVapSatDTemp, [err] )
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xyz_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xyz_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xyz_DQVapSatDTemp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(out)
: $ DP{q^{*}}{T} $ . 飽和比湿の温度微分. Temperature derivative of saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xyz_Temp と気圧 xyz_Press を用い, 飽和比湿の温度微分 xyz_DQVapSatDTemp を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate temperature derivative of saturation specific humidity xyz_DQVapSatDTemp using temperature xyz_Temp and air pressure xyz_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

Alias for PhySatNhaCalcDQVapSatDTemp3

CalcDQVapSatDTemp( phy_sat_nha, xy_Temp, xy_Press, xy_DQVapSatDTemp, [err] )
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xy_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xy_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xy_DQVapSatDTemp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(out)
: $ DP{q^{*}}{T} $ . 飽和比湿の温度微分. Temperature derivative of saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xy_Temp と気圧 xy_Press を用い, 飽和比湿の温度微分 xy_DQVapSatDTemp を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate temperature derivative of saturation specific humidity xy_DQVapSatDTemp using temperature xy_Temp and air pressure xy_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

Alias for PhySatNhaCalcDQVapSatDTemp2

CalcDQVapSatDTemp( phy_sat_nha, Temp, Press, DQVapSatDTemp )
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(in)
Temp :real(DP), intent(in)
: $ T $ . 温度. Temperature
Press :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
DQVapSatDTemp :real(DP), intent(out)
: $ DP{q^{*}}{T} $ . 飽和比湿の温度微分. Temperature derivative of saturation specific humidity.

温度 Temp と気圧 Press を用い, 飽和比湿の温度微分 DQVapSatDTemp を求めます.

スカラーデータではなくを配列データ与える場合には上記の サブルーチンを用いてください.

Calculate temperature derivative of saturation specific humidity DQVapSatDTemp using temperature Temp and air pressure Press.

If array data is given instead of scalar data, use a above subroutine.

Alias for PhySatNhaCalcDQVapSatDTemp0

CalcQVapSat( phy_sat_nha, xyz_Temp, xyz_Press, xyz_QVapSat, [err] )
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xyz_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xyz_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xyz_QVapSat(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(out)
: $ q^{*} $ . 飽和比湿. Saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xyz_Temp と気圧 xyz_Press を用い, 飽和比湿 xyz_QVapSat を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate saturation specific humidity xyz_QVapSat using temperature xyz_Temp and air pressure xyz_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

Alias for PhySatNhaCalcQVapSat3

CalcQVapSat( phy_sat_nha, xy_Temp, xy_Press, xy_QVapSat, [err] )
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xy_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xy_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xy_QVapSat(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(out)
: $ q^{*} $ . 飽和比湿. Saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xy_Temp と気圧 xy_Press を用い, 飽和比湿 xy_QVapSat を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate saturation specific humidity xy_QVapSat using temperature xy_Temp and air pressure xy_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

Alias for PhySatNhaCalcQVapSat2

CalcQVapSat( phy_sat_nha, Temp, Press, QVapSat )
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(in)
Temp :real(DP), intent(in)
: $ T $ . 温度. Temperature
Press :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
QVapSat :real(DP), intent(out)
: $ q^{*} $ . 飽和比湿. Saturation specific humidity.

温度 Temp と気圧 Press を用い, 飽和比湿 QVapSat を求めます.

スカラーデータではなくを配列データ与える場合には上記の サブルーチンを用いてください.

Calculate saturation specific humidity QVapSat using temperature Temp and air pressure Press.

If array data is given instead of scalar data, use a above subroutine.

Alias for PhySatNhaCalcQVapSat0

PHYSATNHA
Derived Type :
initialized = .false. :logical
: 初期設定フラグ. Initialization flag
imax :integer
: 経度格子点数. Number of grid points in longitude
jmax :integer
: 緯度格子点数. Number of grid points in latitude
kmax :integer
: 鉛直層数. Number of vertical level
EpsV = 0.62264642082430_DP :real(DP)
: $ epsilon_v $ . 水蒸気分子量比. デフォルト値は地球の値.

Molecular weight ratio of water vapor. Default value is a value on Earch.

RUniv = 8.314_DP :real(DP)
: $ R $ [J mol-1 K-1]. 普遍気体定数. Universal gas constant
LatHeat = 43655_DP :real(DP)
: $ l $ [J mol-1]. 水の凝結の潜熱. Latent heat of condensation of water vapor
P0 = 1.4e+11_DP :real(DP)
: $ p_0^{*} $ [Pa]. 水蒸気飽和曲線の定数. constant for water vapor saturation curve

まず, PhySatNhaCreate で "PHYSATNHA" 型の 変数を初期設定して下さい. 初期設定された "PHYSATNHA" 型の変数を再度利用する際には, PhySatNhaClose によって終了処理を行ってください.

Initialize "PHYSATNHA" variable by "PhySatNhaCreate" before usage. If you reuse "PHYSATNHA" variable again for another application, terminate by "PhySatNhaClose".

Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

PHYSATNHA 型の変数の終了処理を行います. なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Deconstructor of "PHYSATNHA". Note that if phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

[Source]

  subroutine PhySatNhaClose( phy_sat_nha, err )
    !
    ! PHYSATNHA 型の変数の終了処理を行います. 
    ! なお, 与えられた *phy_sat_nha* が PhySatNhaCreate 
    ! によって初期設定されていない場合, プログラムはエラーを発生させます. 
    !
    ! Deconstructor of "PHYSATNHA". 
    ! Note that if *phy_sat_nha* is not initialized 
    ! by "PhySatNhaCreate" yet, error is occurred. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_error, only: StoreError, DC_NOERR, DC_ENOTINIT
    use gt4_history_nmlinfo, only: HstNmlInfoClose, HstNmlInfoNames, HstNmlInfoAssocGtHist, HstNmlInfoPutLine
    use gt4_history, only: GT_HISTORY, HistoryClose, HistoryInitialized
    implicit none
    type(PHYSATNHA), intent(inout):: phy_sat_nha
    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 

    !-----------------------------------
    !  ヒストリファイルへのデータ出力設定
    !  Configure the settings for history data output
!!$    character(STRING):: name = ''
!!$                              ! 変数名. Variable identifier
!!$    character(STRING):: varnames
!!$                              ! 変数名リスト. 
!!$                              ! List of variables
!!$    character(TOKEN), pointer:: varnames_array(:) =>null()
!!$                              ! 変数名リスト配列. 
!!$                              ! List of variables (array) 
!!$    integer:: i, vnmax
!!$    type(GT_HISTORY), pointer:: gthist =>null()
!!$                              ! gt4_history モジュール用構造体. 
!!$                              ! Derived type for "gt4_history" module

    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: stat
    character(STRING):: cause_c
    character(*), parameter:: subname = 'PhySatNhaClose'
  continue
    call BeginSub( subname )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
    if ( .not. phy_sat_nha % initialized ) then
      stat = DC_ENOTINIT
      cause_c = 'PHYSATNHA'
      goto 999
    end if

    !-----------------------------------------------------------------
    !  "PHYSATNHA" の設定の消去
    !  Clear the settings for "PHYSATNHA"
    !-----------------------------------------------------------------
!!$    deallocate( phy_sat_nha % x_Lon )
!!$    deallocate( phy_sat_nha % y_Lat )

!!$    !-----------------------------------------------------------------
!!$    !  ヒストリファイルへのデータ出力の終了処理
!!$    !  Terminate the settings for history data output
!!$    !-----------------------------------------------------------------
!!$    varnames = HstNmlInfoNames( phy_sat_nha % gthstnml )
!!$    call Split( str = varnames, sep = ',', & ! (in)
!!$      & carray = varnames_array )            ! (out)
!!$    vnmax = size( varnames_array )
!!$
!!$    do i = 1, vnmax
!!$      name = varnames_array(i)
!!$      if ( trim( name ) == '' ) exit
!!$      nullify( gthist )
!!$      call HstNmlInfoAssocGtHist( & 
!!$        & gthstnml = phy_sat_nha % gthstnml, & ! (in)
!!$        & name = name, &                           ! (in)
!!$        & history = gthist, &                      ! (out)
!!$        & err = err )                              ! (out)
!!$      if ( HistoryInitialized( gthist ) ) then
!!$
!!$        call HistoryClose( history = gthist, & ! (inout)
!!$          & err = err )                        ! (out)
!!$
!!$      end if
!!$    end do

!!$    !-----------------------------------------------------------------
!!$    !  ヒストリファイルへのデータ出力設定の割付解除
!!$    !  Deallocate the settings for history data output
!!$    !-----------------------------------------------------------------
!!$    call HstNmlInfoClose( &
!!$      & phy_sat_nha % gthstnml, & ! (inout)
!!$      & err = err )                   ! (out)

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
    phy_sat_nha % initialized = .false.
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )

  end subroutine PhySatNhaClose
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
imax :integer, intent(in)
: 経度格子点数. Number of grid points in longitude
jmax :integer, intent(in)
: 緯度格子点数. Number of grid points in latitude
kmax :integer, intent(in)
: 鉛直層数. Number of vertical level
EpsV :real(DP), intent(in)
: $ epsilon_v $ . 水蒸気分子量比. Molecular weight ratio of water vapor
nmlfile :character(*), intent(in), optional
: NAMELIST ファイルの名称. この引数に空文字以外を与えた場合, 指定されたファイルから NAMELIST 変数群を読み込みます. ファイルを読み込めない場合にはエラーを 生じます.

NAMELIST 変数群の詳細に関しては NAMELIST#phy_saturate_nha92_nml を参照してください.

NAMELIST file name. If nonnull character is specified to this argument, NAMELIST group name is loaded from the file. If the file can not be read, an error occurs.

See "NAMELIST#phy_saturate_nha92_nml" for details about a NAMELIST group.

err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

PHYSATNHA 型の変数の初期設定を行います. 他のサブルーチンを使用する前に必ずこのサブルーチンによって PHYSATNHA 型の変数を初期設定してください.

なお, 与えられた phy_sat_nha が既に初期設定されている場合, プログラムはエラーを発生させます.

NAMELIST を利用する場合には引数 nmlfileNAMELIST ファイル名 を与えてください. NAMELIST 変数群の詳細に関しては NAMELIST#phy_saturate_nha92_nml を参照してください.

Constructor of "PHYSATNHA". Initialize phy_sat_nha by this subroutine, before other procedures are used,

Note that if phy_sat_nha is already initialized by this procedure, error is occurred.

In order to use NAMELIST, specify a NAMELIST filename to argument nmlfile. See "NAMELIST#phy_saturate_nha92_nml" for details about a NAMELIST group.

[Source]

  subroutine PhySatNhaCreate( phy_sat_nha, imax, jmax, kmax, EpsV, nmlfile, err )
    !
    ! PHYSATNHA 型の変数の初期設定を行います. 
    ! 他のサブルーチンを使用する前に必ずこのサブルーチンによって 
    ! PHYSATNHA 型の変数を初期設定してください. 
    !
    ! なお, 与えられた *phy_sat_nha* が既に初期設定されている場合, 
    ! プログラムはエラーを発生させます. 
    !
    ! NAMELIST を利用する場合には引数 *nmlfile* に NAMELIST ファイル名
    ! を与えてください. NAMELIST 変数群の詳細に関しては 
    ! NAMELIST#phy_saturate_nha92_nml を参照してください. 
    !
    ! Constructor of "PHYSATNHA". 
    ! Initialize *phy_sat_nha* by this subroutine, 
    ! before other procedures are used, 
    !
    ! Note that if *phy_sat_nha* is already initialized 
    ! by this procedure, error is occurred. 
    !
    ! In order to use NAMELIST, specify a NAMELIST filename to 
    ! argument *nmlfile*. See "NAMELIST#phy_saturate_nha92_nml" 
    ! for details about a NAMELIST group. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_present, only: present_and_not_empty, present_and_true
    use dc_message, only: MessageNotify
    use dc_error, only: StoreError, DC_NOERR, DC_EALREADYINIT, DC_EARGLACK, DC_ENEGATIVE, DC_ENOFILEREAD, USR_ERRNO
    use dc_date, only: DCDiffTimeCreate
    use dc_hash, only: HASH, DCHashPut, DCHashRewind, DCHashNext, DCHashDelete
    use gt4_history_nmlinfo, only: HstNmlInfoCreate, HstNmlInfoAdd, HstNmlInfoEndDefine, HstNmlInfoPutLine
    use gt4_history, only: GT_HISTORY, HistoryAddVariable, HistoryAddAttr
    implicit none
    type(PHYSATNHA), intent(inout):: phy_sat_nha
    integer, intent(in):: imax
                              ! 経度格子点数. 
                              ! Number of grid points in longitude
    integer, intent(in):: jmax
                              ! 緯度格子点数. 
                              ! Number of grid points in latitude
    integer, intent(in):: kmax ! 鉛直層数. 
                               ! Number of vertical level
    real(DP), intent(in):: EpsV
                              ! $ \epsilon_v $ .
                              ! 水蒸気分子量比. Molecular weight ratio of water vapor


!!$    real(DP), intent(in):: x_Lon (0:imax-1)
!!$                              ! 経度. Longitude
!!$    real(DP), intent(in):: y_Lat (0:jmax-1)
!!$                              ! 緯度. Latitude
!!$    real(DP), intent(in):: CoefAlpha
!!$                              ! $ \alpha $ . 係数. Coefficient
!!$    real(DP), intent(in):: DelTime
!!$                              ! $ \Delta t $ . タイムステップ. Time step
!!$    real, intent(in), optional:: current_time_value
!!$                              ! 現在時刻の数値. Numerical value of current time
!!$    character(*), intent(in), optional:: current_time_unit
!!$                              ! 現在時刻の単位. Unit of current time
!!$    character(*), intent(in), optional:: history_varlist
!!$                              ! ヒストリデータの出力変数リスト. 
!!$                              ! カンマで区切って並べる. 
!!$                              ! (例: "Data1,Data2" ). 
!!$                              ! 
!!$                              ! List of variables output to history data. 
!!$                              ! Delimiter is comma. 
!!$                              ! (exp. "Data1,Data2" ). 
!!$                              ! 
!!$    real, intent(in), optional:: history_interval_value
!!$                              ! ヒストリデータの出力間隔の数値. 
!!$                              ! Numerical value for interval of history data output
!!$    character(*), intent(in), optional:: history_interval_unit
!!$                              ! ヒストリデータの出力間隔の単位. 
!!$                              ! Unit for interval of history data output
!!$    character(*), intent(in), optional:: history_precision
!!$                              ! ヒストリデータの精度. 
!!$                              ! Precision of history data
!!$    character(*), intent(in), optional:: history_fileprefix
!!$                              ! ヒストリデータのファイル名の接頭詞. 
!!$                              ! Prefix of history data filenames

    character(*), intent(in), optional:: nmlfile
                              ! NAMELIST ファイルの名称. 
                              ! この引数に空文字以外を与えた場合, 
                              ! 指定されたファイルから 
                              ! NAMELIST 変数群を読み込みます. 
                              ! ファイルを読み込めない場合にはエラーを
                              ! 生じます. 
                              !
                              ! NAMELIST 変数群の詳細に関しては 
                              ! NAMELIST#phy_saturate_nha92_nml 
                              ! を参照してください. 
                              !
                              ! NAMELIST file name. 
                              ! If nonnull character is specified to 
                              ! this argument, 
                              ! NAMELIST group name is loaded from the 
                              ! file. 
                              ! If the file can not be read, 
                              ! an error occurs.
                              ! 
                              ! See "NAMELIST#phy_saturate_nha92_nml" 
                              ! for details about a NAMELIST group. 
                              ! 

    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 

    !-----------------------------------
    !  ヒストリファイルへのデータ出力設定
    !  Configure the settings for history data output
!!$    character(STRING):: name = ''
!!$                              ! 変数名. Variable identifier
!!$    character(STRING):: longname = ''
!!$                              ! 変数の記述的名称. Descriptive name of variables
!!$    character(STRING), allocatable:: dims(:)
!!$                              ! 座標軸の名称. Name of axes
!!$    character(STRING):: units = ''
!!$                              ! 単位. Units
!!$    type(GT_HISTORY), pointer:: gthist =>null()
!!$                              ! gt4_history モジュール用構造体. 
!!$                              ! Derived type for "gt4_history" module
!!$    character(TOKEN):: precision
!!$                              ! ヒストリデータの精度. 
!!$                              ! Precision of history data
!!$    logical:: average
!!$                              ! 出力データの平均化フラグ. 
!!$                              ! Flag for average of output data
!!$    type(HASH):: registered_varnames
!!$                              ! このモジュールから出力される変数名のリスト.
!!$                              ! 
!!$                              ! List of names of variables output 
!!$                              ! from this module. 
!!$    logical:: end

    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: stat
    character(STRING):: cause_c
    character(*), parameter:: subname = 'PhySatNhaCreate'
  continue
    call BeginSub( subname, version )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
    if ( phy_sat_nha % initialized ) then
      stat = DC_EALREADYINIT
      cause_c = 'PHYSATNHA'
      goto 999
    end if

    !-----------------------------------------------------------------
    !  引数の正当性のチェック
    !  Validate arguments
    !-----------------------------------------------------------------
    if (imax < 1) then
      stat = DC_ENEGATIVE
      cause_c = 'imax'
      goto 999
    end if
    if (jmax < 1) then
      stat = DC_ENEGATIVE
      cause_c = 'jmax'
      goto 999
    end if
    if (kmax < 1) then
      stat = DC_ENEGATIVE
      cause_c = 'kmax'
      goto 999
    end if
    if (EpsV < 0.0_DP) then
      stat = DC_ENEGATIVE
      cause_c = 'EpsV'
      goto 999
    end if

    !-----------------------------------------------------------------
    !  波数・格子点の設定
    !  Configure wave number and grid point
    !-----------------------------------------------------------------
    phy_sat_nha % imax = imax
    phy_sat_nha % jmax = jmax
    phy_sat_nha % kmax = kmax

    !-----------------------------------------------------------------
    !  座標軸の設定
    !  Configure axes
    !-----------------------------------------------------------------
!!$    allocate( phy_sat_nha % x_Lon (0:imax-1) )
!!$    phy_sat_nha % x_Lon = x_Lon
!!$
!!$    allocate( phy_sat_nha % y_Lat (0:jmax-1) )
!!$    phy_sat_nha % y_Lat = y_Lat

    !-----------------------------------------------------------------
    !  物理定数の設定
    !  Configure physical constants
    !-----------------------------------------------------------------
    phy_sat_nha % EpsV = EpsV

    !-----------------------------------------------------------------
    !  時刻管理
    !  Time control
    !-----------------------------------------------------------------
!!$    if ( present(current_time_value) .and. present(current_time_unit) ) then
!!$      call DCDiffTimeCreate( &
!!$        & diff = phy_sat_nha % current_time, &  ! (out)
!!$        & value = real( current_time_value, DP ), & ! (in)
!!$        & unit = current_time_unit )                ! (in)
!!$    else
!!$      call DCDiffTimeCreate( &
!!$        & diff = phy_sat_nha % current_time, & ! (out)
!!$        & value = 0.0_DP, &    ! (in)
!!$        & unit = 'sec' )       ! (in)
!!$    end if

!!$    call DCDiffTimeCreate( &
!!$      & diff = phy_sat_nha % delta_time, & ! (out)
!!$      & value = DelTime, &             ! (in)
!!$      & unit = 'sec' )                 ! (in)

    !-----------------------------------------------------------------
    !  "PHYSATNHA" の設定
    !  Configure the settings for "PHYSATNHA"
    !-----------------------------------------------------------------
!!$    phy_sat_nha % CoefAlpha = CoefAlpha
!!$    phy_sat_nha % key00     = ''

!!$    !-----------------------------------------------------------------
!!$    !  ヒストリファイルへのデータ出力設定
!!$    !  Configure the settings for history data output
!!$    !-----------------------------------------------------------------
!!$
!!$    !-------------------------
!!$    !  デフォルト値
!!$    !  Default values
!!$    call HstNmlInfoCreate( gthstnml = phy_sat_nha % gthstnml ) ! (inout)
!!$
!!$    !-------------------------
!!$    !  オプショナル引数からの値
!!$    !  Values from optional arguments
!!$    call HstNmlInfoAdd( &
!!$      & gthstnml = phy_sat_nha % gthstnml, &   ! (inout)
!!$      & name = '', &                               ! (in)
!!$      & interval_value = history_interval_value, & ! (in)
!!$      & interval_unit = history_interval_unit, &   ! (in)
!!$      & precision = history_precision, &           ! (in)
!!$      & average = .false., &                       ! (in)
!!$      & fileprefix = history_fileprefix )          ! (in)
!!$
!!$    if ( present(history_varlist) ) then
!!$      call HstNmlInfoAdd( &
!!$        & gthstnml = phy_sat_nha % gthstnml, & ! (inout)
!!$        & name = history_varlist )                 ! (in)
!!$    end if
!!$
!!$    !-----------------------------------------------------------------
!!$    !  NAMELIST からの値の読み込み
!!$    !  Load values from NAMELIST
!!$    !-----------------------------------------------------------------
!!$    if ( present_and_not_empty(nmlfile) ) then
!!$      call MessageNotify( 'M', subname, &
!!$        & 'Loading NAMELIST file "%c" ...', &
!!$        & c1 = trim(nmlfile) )
!!$      call NmlRead ( nmlfile = nmlfile, &          ! (in)
!!$!!        & CoefAlpha   = phy_sat_nha % CoefAlpha, & ! (inout)
!!$!!        & key00_      = phy_sat_nha % key00, &     ! (inout)
!!$        & gthstnml    = phy_sat_nha % gthstnml, &  ! (inout)
!!$        & err = err )                              ! (out)
!!$      if ( present_and_true(err) ) then
!!$        call MessageNotify( 'W', subname, &
!!$          & '"%c" can not be read.', &
!!$          & c1 = trim(nmlfile) )
!!$        stat = DC_ENOFILEREAD
!!$        cause_c = nmlfile
!!$        goto 999
!!$      end if
!!$    end if
!!$
!!$    call HstNmlInfoEndDefine( &
!!$      & gthstnml = phy_sat_nha % gthstnml, & ! (inout)
!!$      & err = err )                              ! (out)
!!$    if ( present_and_true( err ) ) then
!!$      stat = USR_ERRNO
!!$      goto 999
!!$    end if


    !-----------------------------------------------------------------
    !  データ出力の初期設定
    !  Initialize data output
    !-----------------------------------------------------------------

!!$    !-------------------------
!!$    !  x_Data1 の出力設定
!!$    !  Configure the settings for "x_Data1" output
!!$    name = 'Data1'
!!$    longname = 'Sample data (1)'
!!$    units = '1'
!!$    allocate( dims(2) )
!!$    dims = StoA( 'lon', 'time' )
!!$
!!$    ! 出力ファイルの初期設定.
!!$    !   * gthist (gt4_history#GT_HISTORY) が設定される.
!!$    ! Initialize output file.
!!$    !   * "gthist" (gt4_history#GT_HISTORY) is configured.
!!$    call output_init  ! これは内部サブルーチン. This is an internal subroutine
!!$
!!$    ! 属性の付加などを行う場合には以下のようにする. 
!!$    ! Describe codes as follows in order to add attributes etc.
!!$    if ( associated( gthist ) ) then
!!$      call HistoryAddAttr( &
!!$        & history = gthist, &                           ! (inout)
!!$        & varname = name, attrname = 'missing_value', & ! (in)
!!$        &   value = 9999.0 )                            ! (in)
!!$    end if
!!$    deallocate( dims )
!!$
!!$    !-------------------------
!!$    !  y_Data2 の出力設定
!!$    !  Configure the settings for "y_Data2" output
!!$    name = 'Data2'
!!$    longname = 'Sample data (2)'
!!$    units = '1'
!!$    allocate( dims(2) )
!!$    dims = StoA( 'lat', 'time' )
!!$
!!$    ! 出力ファイルの初期設定.
!!$    !   * gthist (gt4_history#GT_HISTORY) が設定される.
!!$    ! Initialize output file.
!!$    !   * "gthist" (gt4_history#GT_HISTORY) is configured.
!!$    call output_init  ! これは内部サブルーチン. This is an internal subroutine
!!$    deallocate( dims )

    !-----------------------------------------------------------------
    !  このモジュールから出力される変数名のリストを表示
    !  Print list of names of variables output from this module
    !-----------------------------------------------------------------
!!$    call Printf( STDOUT, &
!!$      & ' *** MESSAGE *** +---- "%c" module output varnames list -----', &
!!$      & c1 = 'phy_saturate_nha92' )
!!$    call DCHashRewind( hashv = registered_varnames ) ! (inout)
!!$    do
!!$      call DCHashNext( hashv = registered_varnames, & ! (inout)
!!$        & key = name, value = longname, end = end )   ! (out)
!!$      if ( end ) exit
!!$      call Printf( STDOUT, &
!!$        & ' *** MESSAGE *** |      "%c" (%c)', &
!!$        & c1 = trim(name), c2 = trim(longname) )
!!$    enddo
!!$    call DCHashDelete( hashv = registered_varnames ) ! (inout)
!!$    call Printf( STDOUT, &
!!$      & ' *** MESSAGE *** `----------------------------------------' )

    !-----------------------------------------------------------------
    !  設定値の正当性のチェック
    !  Validate setting values
    !-----------------------------------------------------------------
!!$    if ( phy_sat_nha % CoefAlpha < 0.0_DP ) then
!!$      stat = DC_ENEGATIVE
!!$      cause_c = 'CoefAlpha'
!!$      goto 999
!!$    end if

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
    phy_sat_nha % initialized = .true.
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )

!!$  contains
!!$
!!$    subroutine output_init
!!$      !
!!$      ! 変数 *name* に関して出力ファイルの初期設定を行います. 
!!$      ! 出力ファイル名や出力間隔などの情報は phy_sat_nha % gthstnml 
!!$      ! から取り出されます. 
!!$      ! 
!!$      ! 変数 *name* に関して出力が行われる場合には, 
!!$      ! *gthist* に出力先ファイルの gt4_history#GT_HISTORY
!!$      ! 型変数を結合させます. そうでない場合は, *gthist* を空状態にします. 
!!$      !
!!$      ! また, 出力データの精度を precision に, 
!!$      ! 出力データ平均化の可否を average に設定します. 
!!$      ! 
!!$      ! 標準出力に表示される変数リスト *registered_varnames* に
!!$      ! *name*, *longname*, *dims*, *units* が登録されます. 
!!$      !
!!$      ! An output file is initialized for a variable *name*. 
!!$      ! Information such as the output filename and output intervals 
!!$      ! is taken out of "phy_sat_nha % gthstnml". 
!!$      !
!!$      ! When output is done for the variable *name*, *gthist* is 
!!$      ! associated with the "gt4_history#GT_HISTORY" variable of 
!!$      ! the output file. Otherwise, *gthist* is nullified. 
!!$      !
!!$      ! Moreover, the accuracy of output data is set to *precision*, and 
!!$      ! right or wrong of averaging the output data is set to *average*. 
!!$      !
!!$      ! *name*, *longname*, *dims*, *units* are registered to 
!!$      ! a list of variables *registered_varnames* that is printed to 
!!$      ! standard output. 
!!$      !
!!$      use dc_date, only: DCDiffTimeCreate, EvalSec, EvalByUnit
!!$      use gt4_history_nmlinfo, only: GTHST_NMLINFO, &
!!$        & HstNmlInfoInitialized, HstNmlInfoInquire, &
!!$        & HstNmlInfoOutputValid, HstNmlInfoAssocGtHist, HstNmlInfoPutLine
!!$      use gt4_history, only: GT_HISTORY, &
!!$        & HistoryCreate, HistoryAddVariable, HistoryPut, &
!!$        & HistoryAddAttr, HistoryInitialized
!!$
!!$      !-----------------------------------
!!$      !  作業変数
!!$      !  Work variables
!!$      character(STRING):: file
!!$                                ! ヒストリデータのファイル名. 
!!$                                ! History data filenames
!!$      character(STRING):: dims_str
!!$                                ! 座標軸のリスト. 
!!$                                ! List of axes
!!$      real:: interval_value
!!$                                ! ヒストリデータの出力間隔の数値. 
!!$                                ! Numerical value for interval of history data output
!!$      character(TOKEN):: interval_unit
!!$                                ! ヒストリデータの出力間隔の単位. 
!!$                                ! Unit for interval of history data output
!!$!!!$      real(DP), parameter:: PI = 3.1415926535897930_DP
!!$!!!$                                ! $ \pi $ . 円周率. Circular constant
!!$    continue
!!$      !-----------------------------------------------------------------
!!$      !  標準出力に表示される変数の登録
!!$      !  Register a variable name for print to standard output
!!$      !-----------------------------------------------------------------
!!$      if ( allocated(dims) ) then
!!$        dims_str = JoinChar( dims, ',' )
!!$      else
!!$        dims_str = ''
!!$      end if
!!$      call DCHashPut( hashv = registered_varnames, &     ! (inout)
!!$        & key = name, &                                  ! (in)
!!$        & value = trim( longname ) // ' [' // &
!!$        &         trim( units ) // '] {' // &
!!$        &         trim( dims_str ) // '}' ) ! (in)
!!$
!!$      !-----------------------------------------------------------------
!!$      !  変数の初期化
!!$      !  Initialize variable
!!$      !-----------------------------------------------------------------
!!$      nullify( gthist )
!!$      precision = 'float'
!!$      average = .false.
!!$
!!$      !-----------------------------------------------------------------
!!$      !  出力が有効かどうかを確認する
!!$      !  Confirm whether the output is effective
!!$      !-----------------------------------------------------------------
!!$      if ( .not. HstNmlInfoOutputValid( phy_sat_nha % gthstnml, name ) ) then
!!$        return
!!$      end if
!!$
!!$      !-----------------------------------------------------------------
!!$      !  GT_HISTORY 変数の取得
!!$      !  Get "GT_HISTORY" variable
!!$      !-----------------------------------------------------------------
!!$      call HstNmlInfoAssocGtHist( &
!!$        & gthstnml = phy_sat_nha % gthstnml, & ! (in)
!!$        & name = name, &                       ! (in)
!!$        & history = gthist, &                  ! (out)
!!$        & err = err )                          ! (out)
!!$      if ( present_and_true( err ) ) return
!!$
!!$      call HstNmlInfoInquire( &
!!$        & gthstnml = phy_sat_nha % gthstnml, & ! (in)
!!$        & name = name, &                       ! (in)
!!$        & precision = precision, &             ! (out)
!!$        & average = average, &                 ! (out)
!!$        & err = err )                          ! (out)
!!$      if ( present_and_true( err ) ) return
!!$
!!$      !-----------------------------------------------------------------
!!$      !  GT_HISTORY 変数の初期設定の確認
!!$      !  Check initialization of "GT_HISTORY" variable
!!$      !-----------------------------------------------------------------
!!$      if ( HistoryInitialized( gthist ) ) then
!!$
!!$        !---------------------------------------------------------------
!!$        !  HistoryAddVariable による変数作成
!!$        !  A variable is created by "HistoryAddVariable"
!!$        !---------------------------------------------------------------
!!$        call HistoryAddVariable( &
!!$          &  history = gthist, &                       ! (inout)
!!$          &  varname = name,         dims = dims, &    ! (in)
!!$          & longname = longname,    units = units, &   ! (in)
!!$          &    xtype = precision, average = average )  ! (in)
!!$        return
!!$      end if
!!$
!!$      !-----------------------------------------------------------------
!!$      !  HistoryCreate のための設定値の取得
!!$      !  Get the settings for "HistoryCreate"
!!$      !-----------------------------------------------------------------
!!$      call HstNmlInfoInquire( &
!!$        & gthstnml = phy_sat_nha % gthstnml, & ! (in)
!!$        & name = name, &                       ! (in)
!!$        & file = file, &                       ! (out)
!!$        & interval_unit = interval_unit, &     ! (out)
!!$        & interval_value = interval_value, &   ! (out)
!!$        & err = err )                          ! (out)
!!$      if ( present_and_true( err ) ) return
!!$
!!$      !-----------------------------------------------------------------
!!$      !  HistoryCreate によるファイル作成
!!$      !  Files are created by "HistoryCreate"
!!$      !-----------------------------------------------------------------
!!$!!!$      call HistoryCreate( &
!!$!!!$        & history = gthist, &   ! (out)
!!$!!!$        & file = file, &        ! (in)
!!$!!!$        & title = 'Sample program of dcmodel programming guideline', &  ! (in)
!!$!!!$        & source = 'dcmodel project : ' // trim(version), &             ! (in)
!!$!!!$        & institution = 'GFD Dennou Club', &                     ! (in)
!!$!!!$        & dims = StoA( 'lon', 'lat', 'time' ), &                 ! (in)
!!$!!!$        & dimsizes = (/ phy_sat_nha % imax, phy_sat_nha % jmax, 0 /), & ! (in)
!!$!!!$        & longnames = StoA( 'longitude', 'latitude', 'time' ), & ! (in)
!!$!!!$        & units = StoA( 'degree_east', 'degree_north', &
!!$!!!$        &                interval_unit ), &                      ! (in)
!!$!!!$        & origin = real( EvalbyUnit( phy_sat_nha % current_time, &
!!$!!!$        &                            interval_unit) ), &         ! (in)
!!$!!!$        & interval = interval_value, &                           ! (in)
!!$!!!$        & err = err )                                            ! (out)
!!$!!!$      if ( present_and_true( err ) ) then
!!$!!!$        nullify( gthist )
!!$!!!$        return
!!$!!!$      end if
!!$!!!$
!!$!!!$      call HistoryAddAttr( &
!!$!!!$        & history = gthist, &                            ! (inout)
!!$!!!$        & varname = 'lon', attrname = 'standard_name', & ! (in)
!!$!!!$        & value = 'longitude' )                          ! (in)
!!$!!!$      call HistoryAddAttr( &
!!$!!!$        & history = gthist, &                            ! (inout)
!!$!!!$        & varname = 'lat', attrname = 'standard_name', & ! (in)
!!$!!!$        & value = 'latitude' )                           ! (in)
!!$!!!$      call HistoryAddAttr( &
!!$!!!$        & history = gthist, &                             ! (inout)
!!$!!!$        & varname = 'time', attrname = 'standard_name', & ! (in)
!!$!!!$        & value = 'time' )                                ! (in)
!!$!!!$
!!$!!!$      call HistoryPut( &
!!$!!!$        & history = gthist, &                           ! (inout)
!!$!!!$        & varname = 'lon', &                            ! (in)
!!$!!!$        & array = phy_sat_nha % x_Lon / PI * 180.0_DP ) ! (in)
!!$!!!$      call HistoryPut( &
!!$!!!$        & history = gthist, &                           ! (inout)
!!$!!!$        & varname = 'lat', &                            ! (in)
!!$!!!$        & array = phy_sat_nha % y_Lat / PI * 180.0_DP ) ! (in)
!!$
!!$      !-----------------------------------------------------------------
!!$      !  HistoryAddVariable による変数作成
!!$      !  A variable is created by "HistoryAddVariable"
!!$      !-----------------------------------------------------------------
!!$      if ( HistoryInitialized( gthist ) ) then
!!$        call HistoryAddVariable( &
!!$          &  history = gthist, &                       ! (inout)
!!$          &  varname = name,         dims = dims, &    ! (in)
!!$          & longname = longname,    units = units, &   ! (in)
!!$          &    xtype = precision, average = average )  ! (in)
!!$      else
!!$        nullify( gthist )
!!$      end if
!!$
!!$    end subroutine output_init

  end subroutine PhySatNhaCreate
Function :
result :logical
phy_sat_nha :type(PHYSATNHA), intent(in)

phy_sat_nha が初期設定されている場合には .true. が, 初期設定されていない場合には .false. が返ります.

If phy_sat_nha is initialized, .true. is returned. If phy_sat_nha is not initialized, .false. is returned.

[Source]

  logical function PhySatNhaInitialized( phy_sat_nha ) result(result)
    !
    ! *phy_sat_nha* が初期設定されている場合には .true. が, 
    ! 初期設定されていない場合には .false. が返ります. 
    !
    ! If *phy_sat_nha* is initialized, .true. is returned. 
    ! If *phy_sat_nha* is not initialized, .false. is returned. 
    !
    implicit none
    type(PHYSATNHA), intent(in):: phy_sat_nha
  continue
    result = phy_sat_nha % initialized
  end function PhySatNhaInitialized
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(in)
unit :integer, intent(in), optional
: 出力先の装置番号. デフォルトの出力先は標準出力.

Unit number for output. Default value is standard output.

indent :character(*), intent(in), optional
: 表示されるメッセージの字下げ.

Indent of displayed messages.

err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

引数 phy_sat_nha に設定されている情報を印字します. デフォルトではメッセージは標準出力に出力されます. unit に装置番号を指定することで, 出力先を変更することが可能です.

Print information of phy_sat_nha. By default messages are output to standard output. Unit number for output can be changed by unit argument.

[Source]

  subroutine PhySatNhaPutLine( phy_sat_nha, unit, indent, err )
    !
    ! 引数 *phy_sat_nha* に設定されている情報を印字します. 
    ! デフォルトではメッセージは標準出力に出力されます. 
    ! *unit* に装置番号を指定することで, 出力先を変更することが可能です. 
    !
    ! Print information of *phy_sat_nha*. 
    ! By default messages are output to standard output. 
    ! Unit number for output can be changed by *unit* argument. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_date, only: EvalSec
    use dc_error, only: StoreError, DC_NOERR, DC_ENOTINIT
    use gt4_history_nmlinfo, only: GTHST_NMLINFO, HstNmlInfoPutLine
    implicit none
    type(PHYSATNHA), intent(in):: phy_sat_nha
    integer, intent(in), optional:: unit
                              ! 出力先の装置番号. 
                              ! デフォルトの出力先は標準出力. 
                              !
                              ! Unit number for output. 
                              ! Default value is standard output. 
    character(*), intent(in), optional:: indent
                              ! 表示されるメッセージの字下げ. 
                              !
                              ! Indent of displayed messages. 
    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 

    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: stat
    character(STRING):: cause_c
    integer:: out_unit
    integer:: indent_len
    character(STRING):: indent_str
    character(*), parameter:: subname = 'PhySatNhaPutLine'
  continue
    call BeginSub( subname )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  出力先装置番号と字下げの設定
    !  Configure output unit number and indents
    !-----------------------------------------------------------------
    if ( present(unit) ) then
      out_unit = unit
    else
      out_unit = STDOUT
    end if

    indent_len = 0
    indent_str = ''
    if ( present(indent) ) then
      if ( len(indent) /= 0 ) then
        indent_len = len(indent)
        indent_str(1:indent_len) = indent
      end if
    end if

    !-----------------------------------------------------------------
    !  "PHYSATNHA" の設定の印字
    !  Print the settings for "PHYSATNHA"
    !-----------------------------------------------------------------
    if ( phy_sat_nha % initialized ) then
      call Printf( unit = out_unit, fmt = indent_str(1:indent_len) // '#<PHYSATNHA:: @initialized=%y', l = (/phy_sat_nha % initialized/) )     ! (in)

      call Printf(out_unit, indent_str(1:indent_len) // ' @imax=%d @jmax=%d @kmax=%d', i=(/phy_sat_nha % imax, phy_sat_nha % jmax, phy_sat_nha % kmax/) )

      call Printf( unit = out_unit, fmt = indent_str(1:indent_len) // ' @EpsV=%f', d = (/phy_sat_nha % EpsV/) )     ! (in)

      call Printf( unit = out_unit, fmt = indent_str(1:indent_len) // ' @RUniv=%f @LatHeat=%f @P0=%f', d = (/phy_sat_nha % RUniv, phy_sat_nha % LatHeat, phy_sat_nha % P0/) )               ! (in)

!!$      call Printf( unit = out_unit, &                             ! (in)
!!$        & fmt = indent_str(1:indent_len) // &
!!$        &       ' @current_time=%f [sec] @delta_time=%f [sec]', & ! (in)
!!$        & d = (/ EvalSec( phy_sat_nha % current_time ), &
!!$        &        EvalSec( phy_sat_nha % delta_time ) /) )      ! (in)
!!$
!!$      call Printf( unit = out_unit, &            ! (in)
!!$        & fmt = indent_str(1:indent_len) // &
!!$        &       ' @key00=%c', &                  ! (in)
!!$        & c1 = trim( phy_sat_nha % key00 ) ) ! (in)
!!$
!!$      call PutLine( array = phy_sat_nha % x_Lon, & ! (in)
!!$        & unit = out_unit, &                           ! (in)
!!$        & lbounds = lbound(phy_sat_nha % x_Lon), & ! (in)
!!$        & ubounds = ubound(phy_sat_nha % x_Lon), & ! (in)
!!$        & indent = indent_str(1:indent_len) // &
!!$        &          ' @x_Lon=' )                        ! (in)
!!$
!!$      call PutLine( array = phy_sat_nha % y_Lat, & ! (in)
!!$        & unit = out_unit, &                           ! (in)
!!$        & lbounds = lbound(phy_sat_nha % y_Lat), & ! (in)
!!$        & ubounds = ubound(phy_sat_nha % y_Lat), & ! (in)
!!$        & indent = indent_str(1:indent_len) // &
!!$        &          ' @y_Lat=' )                        ! (in)
!!$
!!$      call Printf( unit = out_unit, &         ! (in)
!!$        & fmt = indent_str(1:indent_len) // &
!!$        &       ' @gthstnml=' )               ! (in)
!!$      call HstNmlInfoPutLine( &
!!$        & gthstnml = phy_sat_nha % gthstnml, &    ! (in)
!!$        & unit = out_unit, &                          ! (in)
!!$        & indent = indent_str(1:indent_len) // '  ' ) ! (in)

      call Printf( unit = out_unit, fmt = indent_str(1:indent_len) // '>' ) ! (in)
    else
      call Printf( unit = out_unit, fmt = indent_str(1:indent_len) // '#<PHYSATNHA:: @initialized=%y>', l = (/phy_sat_nha % initialized/) )       ! (in)
    end if

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )

  end subroutine PhySatNhaPutLine
PhySatNhainitialized( phy_sat_nha ) result(result)
Function :
result :logical
phy_sat_nha :type(PHYSATNHA), intent(in)

phy_sat_nha が初期設定されている場合には .true. が, 初期設定されていない場合には .false. が返ります.

If phy_sat_nha is initialized, .true. is returned. If phy_sat_nha is not initialized, .false. is returned.

Alias for PhySatNhaInitialized

Private Instance methods

NmlRead( nmlfile, gthstnml, [err] )
Subroutine :
nmlfile :character(*), intent(in)
: NAMELIST ファイルの名称. NAMELIST file name
gthstnml :type(GTHST_NMLINFO), intent(inout)
: NAMELIST#phy_saturate_nha92_history_nml から入手される個別のデータ出力情報.

初期設定やデフォルト値の設定などを 行った後に与えること.

Individual data output information from "NAMELIST#phy_saturate_nha92_history_nml".

Before this argument is given to this procedure, initialize and configure the defaut settings.

err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

NAMELIST ファイル nmlfile から値を入力するための サブルーチンです. PhySatNhaCreate 内で呼び出されることを想定しています.

値が NAMELIST ファイル内で指定されていない場合には, 入力された値がそのまま返ります.

なお, nmlfile に空文字が与えられた場合, または 与えられた nmlfile を読み込むことができない場合, プログラムはエラーを発生させます.

This is a subroutine to input values from NAMELIST file nmlfile. This subroutine is expected to be called by "PhySatNhaCreate".

A value not specified in NAMELIST file is returned without change.

If nmlfile is empty, or nmlfile can not be read, error is occurred.

This procedure input/output NAMELIST#phy_saturate_nha92_history_nml .

Alias for PhySatNhaNmlRead

Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(in)
Temp :real(DP), intent(in)
: $ T $ . 温度. Temperature
Press :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
DQVapSatDTemp :real(DP), intent(out)
: $ DP{q^{*}}{T} $ . 飽和比湿の温度微分. Temperature derivative of saturation specific humidity.

温度 Temp と気圧 Press を用い, 飽和比湿の温度微分 DQVapSatDTemp を求めます.

スカラーデータではなくを配列データ与える場合には上記の サブルーチンを用いてください.

Calculate temperature derivative of saturation specific humidity DQVapSatDTemp using temperature Temp and air pressure Press.

If array data is given instead of scalar data, use a above subroutine.

[Source]

  subroutine PhySatNhaCalcDQVapSatDTemp0( phy_sat_nha, Temp, Press, DQVapSatDTemp )
    !
    ! 温度 *Temp* と気圧 *Press* を用い, 
    ! 飽和比湿の温度微分 *DQVapSatDTemp* を求めます. 
    !
    ! スカラーデータではなくを配列データ与える場合には上記の
    ! サブルーチンを用いてください. 
    !
    ! Calculate temperature derivative of saturation specific humidity 
    ! *DQVapSatDTemp* using
    ! temperature *Temp* and air pressure *Press*. 
    !
    ! If array data is given instead of scalar data, 
    ! use a above subroutine. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_present, only: present_and_true
!!$    use dc_error, only: StoreError, DC_NOERR, DC_ENOTINIT, USR_ERRNO
    implicit none
    type(PHYSATNHA), intent(in):: phy_sat_nha
    real(DP), intent(in):: Temp
                              ! $ T $ . 温度. Temperature
    real(DP), intent(in):: Press
                              ! $ p $ . 気圧. 
                              ! Air pressure
    real(DP), intent(out):: DQVapSatDTemp
                              ! $ \DP{q^{*}}{T} $ . 飽和比湿の温度微分. 
                              ! Temperature derivative of saturation specific humidity. 

    !-----------------------------------
    !  *phy_sat_nha* から取り出される設定値
    !  Setting values fetched from *phy_sat_nha*
    real(DP):: EpsV
                              ! $ \epsilon_v $ .
                              ! 水蒸気分子量比. Molecular weight ratio of water vapor
    real(DP):: RUniv
                              ! $ R $ [J mol-1 K-1]. 
                              ! 普遍気体定数. Universal gas constant
    real(DP):: LatHeat
                              ! $ l $ [J mol-1]. 
                              ! 水の凝結の潜熱. Latent heat of condensation of water vapor
    real(DP):: P0
                              ! $ p_0^{*} $ [Pa]. 
                              ! 水蒸気飽和曲線の定数. constant for water vapor saturation curve

    !-----------------------------------
    !  作業変数
    !  Work variables

!!$    integer:: stat
!!$    character(STRING):: cause_c
!!$    character(*), parameter:: subname = 'PhySatNhaCalcDQVapSatDTemp0'
  continue
!!$    call BeginSub( subname )
!!$    stat = DC_NOERR
!!$    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
!!$    if ( .not. phy_sat_nha % initialized ) then
!!$      stat = DC_ENOTINIT
!!$      cause_c = 'PHYSATNHA'
!!$      goto 999
!!$    end if

    !-----------------------------------------------------------------
    !  *phy_sat_nha* に格納されている設定値の取り出し
    !  Fetch setting values stored in *phy_sat_nha*
    !-----------------------------------------------------------------
    EpsV    = phy_sat_nha % EpsV
    RUniv   = phy_sat_nha % RUniv  
    LatHeat = phy_sat_nha % LatHeat
    P0      = phy_sat_nha % P0     

    !-----------------------------------------------------------------
    !  飽和比湿の計算
    !  Calculate saturation specific humidity
    !-----------------------------------------------------------------
    DQVapSatDTemp = EpsV * ( P0 / Press ) * ( LatHeat / ( RUniv * Temp**2 ) ) * exp ( - LatHeat / ( RUniv * Temp ) )

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
999 continue
!!$    call StoreError( stat, subname, err, cause_c )
!!$    call EndSub( subname )
  end subroutine PhySatNhaCalcDQVapSatDTemp0
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xy_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xy_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xy_DQVapSatDTemp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(out)
: $ DP{q^{*}}{T} $ . 飽和比湿の温度微分. Temperature derivative of saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xy_Temp と気圧 xy_Press を用い, 飽和比湿の温度微分 xy_DQVapSatDTemp を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate temperature derivative of saturation specific humidity xy_DQVapSatDTemp using temperature xy_Temp and air pressure xy_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

[Source]

  subroutine PhySatNhaCalcDQVapSatDTemp2( phy_sat_nha, xy_Temp, xy_Press, xy_DQVapSatDTemp, err )
    !
    ! 温度 *xy_Temp* と気圧 *xy_Press* を用い, 
    ! 飽和比湿の温度微分 *xy_DQVapSatDTemp* を求めます. 
    !
    ! 配列データではなくスカラーデータを与える場合には下記の
    ! サブルーチンを用いてください. 
    !
    ! なお, 与えられた *phy_sat_nha* が PhySatNhaCreate 
    ! によって初期設定されていない場合, プログラムはエラーを発生させます. 
    !
    ! Calculate temperature derivative of saturation specific humidity 
    ! *xy_DQVapSatDTemp* using
    ! temperature *xy_Temp* and air pressure *xy_Press*. 
    !
    ! If scalar data is given instead of array data, 
    ! use a following subroutine. 
    !
    ! If *phy_sat_nha* is not initialized 
    ! by "PhySatNhaCreate" yet, error is occurred. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_present, only: present_and_true
    use dc_error, only: StoreError, DC_NOERR, DC_ENOTINIT, USR_ERRNO
    implicit none
    type(PHYSATNHA), intent(inout):: phy_sat_nha
    real(DP), intent(in):: xy_Temp (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1)
                              ! $ T $ . 温度. Temperature
    real(DP), intent(in):: xy_Press (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1)
                              ! $ p $ . 気圧. 
                              ! Air pressure
    real(DP), intent(out):: xy_DQVapSatDTemp (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1)
                              ! $ \DP{q^{*}}{T} $ . 飽和比湿の温度微分. 
                              ! Temperature derivative of saturation specific humidity. 
    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 


    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: i, j            ! DO ループ用作業変数
                              ! Work variables for DO loop
    integer:: stat
    character(STRING):: cause_c
    character(*), parameter:: subname = 'PhySatNhaCalcDQVapSatDTemp2'
  continue
    call BeginSub( subname )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
    if ( .not. phy_sat_nha % initialized ) then
      stat = DC_ENOTINIT
      cause_c = 'PHYSATNHA'
      goto 999
    end if

    !-----------------------------------------------------------------
    !  飽和比湿の計算
    !  Calculate saturation specific humidity
    !-----------------------------------------------------------------
    do i = 0, phy_sat_nha%imax-1
      do j = 0, phy_sat_nha%jmax-1
        call CalcDQVapSatDTemp( phy_sat_nha = phy_sat_nha, Temp = xy_Temp(i,j), Press = xy_Press(i,j), DQVapSatDTemp = xy_DQVapSatDTemp(i,j) )           ! (out)
      end do
    end do

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )
  end subroutine PhySatNhaCalcDQVapSatDTemp2
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xyz_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xyz_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xyz_DQVapSatDTemp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(out)
: $ DP{q^{*}}{T} $ . 飽和比湿の温度微分. Temperature derivative of saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xyz_Temp と気圧 xyz_Press を用い, 飽和比湿の温度微分 xyz_DQVapSatDTemp を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate temperature derivative of saturation specific humidity xyz_DQVapSatDTemp using temperature xyz_Temp and air pressure xyz_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

[Source]

  subroutine PhySatNhaCalcDQVapSatDTemp3( phy_sat_nha, xyz_Temp, xyz_Press, xyz_DQVapSatDTemp, err )
    !
    ! 温度 *xyz_Temp* と気圧 *xyz_Press* を用い, 
    ! 飽和比湿の温度微分 *xyz_DQVapSatDTemp* を求めます. 
    !
    ! 配列データではなくスカラーデータを与える場合には下記の
    ! サブルーチンを用いてください. 
    !
    ! なお, 与えられた *phy_sat_nha* が PhySatNhaCreate 
    ! によって初期設定されていない場合, プログラムはエラーを発生させます. 
    !
    ! Calculate temperature derivative of saturation specific humidity 
    ! *xyz_DQVapSatDTemp* using
    ! temperature *xyz_Temp* and air pressure *xyz_Press*. 
    !
    ! If scalar data is given instead of array data, 
    ! use a following subroutine. 
    !
    ! If *phy_sat_nha* is not initialized 
    ! by "PhySatNhaCreate" yet, error is occurred. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_error, only: StoreError, DC_NOERR, DC_ENOTINIT
    implicit none
    type(PHYSATNHA), intent(inout):: phy_sat_nha
    real(DP), intent(in):: xyz_Temp (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1)
                              ! $ T $ .     温度. Temperature
    real(DP), intent(in):: xyz_Press (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1)
                              ! $ p $ . 気圧. 
                              ! Air pressure
    real(DP), intent(out):: xyz_DQVapSatDTemp (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1)
                              ! $ \DP{q^{*}}{T} $ . 飽和比湿の温度微分. 
                              ! Temperature derivative of saturation specific humidity. 
    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 

    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: i, j, k         ! DO ループ用作業変数
                              ! Work variables for DO loop
    integer:: stat
    character(STRING):: cause_c
    character(*), parameter:: subname = 'PhySatNhaCalcDQVapSatDTemp3'
  continue
    call BeginSub( subname )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
    if ( .not. phy_sat_nha % initialized ) then
      stat = DC_ENOTINIT
      cause_c = 'PHYSATNHA'
      goto 999
    end if

    !-----------------------------------------------------------------
    !  飽和比湿の温度微分の計算
    !  Calculate temperature derivative of saturation specific humidity
    !-----------------------------------------------------------------
    do i = 0, phy_sat_nha%imax-1
      do j = 0, phy_sat_nha%jmax-1
        do k = 0, phy_sat_nha%kmax-1
          call CalcDQVapSatDTemp( phy_sat_nha = phy_sat_nha, Temp = xyz_Temp(i,j,k), Press = xyz_Press(i,j,k), DQVapSatDTemp = xyz_DQVapSatDTemp(i,j,k) )       ! (out)
        end do
      end do
    end do

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )

  end subroutine PhySatNhaCalcDQVapSatDTemp3
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(in)
Temp :real(DP), intent(in)
: $ T $ . 温度. Temperature
Press :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
QVapSat :real(DP), intent(out)
: $ q^{*} $ . 飽和比湿. Saturation specific humidity.

温度 Temp と気圧 Press を用い, 飽和比湿 QVapSat を求めます.

スカラーデータではなくを配列データ与える場合には上記の サブルーチンを用いてください.

Calculate saturation specific humidity QVapSat using temperature Temp and air pressure Press.

If array data is given instead of scalar data, use a above subroutine.

[Source]

  subroutine PhySatNhaCalcQVapSat0( phy_sat_nha, Temp, Press, QVapSat )
    !
    ! 温度 *Temp* と気圧 *Press* を用い, 飽和比湿 *QVapSat* を求めます. 
    !
    ! スカラーデータではなくを配列データ与える場合には上記の
    ! サブルーチンを用いてください. 
    !
    ! Calculate saturation specific humidity *QVapSat* using
    ! temperature *Temp* and air pressure *Press*. 
    !
    ! If array data is given instead of scalar data, 
    ! use a above subroutine. 
    !
    implicit none
    type(PHYSATNHA), intent(in):: phy_sat_nha
    real(DP), intent(in):: Temp
                              ! $ T $ . 温度. Temperature
    real(DP), intent(in):: Press
                              ! $ p $ . 気圧. 
                              ! Air pressure
    real(DP), intent(out):: QVapSat
                              ! $ q^{*} $ . 飽和比湿. 
                              ! Saturation specific humidity. 

    !-----------------------------------
    !  *phy_sat_nha* から取り出される設定値
    !  Setting values fetched from *phy_sat_nha*
    real(DP):: EpsV
                              ! $ \epsilon_v $ .
                              ! 水蒸気分子量比. Molecular weight ratio of water vapor
    real(DP):: RUniv
                              ! $ R $ [J mol-1 K-1]. 
                              ! 普遍気体定数. Universal gas constant
    real(DP):: LatHeat
                              ! $ l $ [J mol-1]. 
                              ! 水の凝結の潜熱. Latent heat of condensation of water vapor
    real(DP):: P0
                              ! $ p_0^{*} $ [Pa]. 
                              ! 水蒸気飽和曲線の定数. constant for water vapor saturation curve

    !-----------------------------------
    !  作業変数
    !  Work variables
!!$    integer:: stat
!!$    character(STRING):: cause_c
!!$    character(*), parameter:: subname = 'PhySatNhaCalcQVapSat0'
  continue
!!$    call BeginSub( subname )
!!$    stat = DC_NOERR
!!$    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
!!$    if ( .not. phy_sat_nha % initialized ) then
!!$      stat = DC_ENOTINIT
!!$      cause_c = 'PHYSATNHA'
!!$      goto 999
!!$    end if

    !-----------------------------------------------------------------
    !  *phy_sat_nha* に格納されている設定値の取り出し
    !  Fetch setting values stored in *phy_sat_nha*
    !-----------------------------------------------------------------
    EpsV    = phy_sat_nha % EpsV
    RUniv   = phy_sat_nha % RUniv  
    LatHeat = phy_sat_nha % LatHeat
    P0      = phy_sat_nha % P0     

    !-----------------------------------------------------------------
    !  飽和比湿の計算
    !  Calculate saturation specific humidity
    !-----------------------------------------------------------------
    QVapSat = EpsV * ( P0 / Press ) * exp ( - LatHeat / ( RUniv * Temp ) )

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
!!$999 continue
!!$    call StoreError( stat, subname, err, cause_c )
!!$    call EndSub( subname )
  end subroutine PhySatNhaCalcQVapSat0
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xy_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xy_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xy_QVapSat(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1) :real(DP), intent(out)
: $ q^{*} $ . 飽和比湿. Saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xy_Temp と気圧 xy_Press を用い, 飽和比湿 xy_QVapSat を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate saturation specific humidity xy_QVapSat using temperature xy_Temp and air pressure xy_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

[Source]

  subroutine PhySatNhaCalcQVapSat2( phy_sat_nha, xy_Temp, xy_Press, xy_QVapSat, err )
    !
    ! 温度 *xy_Temp* と気圧 *xy_Press* を用い, 飽和比湿 *xy_QVapSat* を求めます. 
    !
    ! 配列データではなくスカラーデータを与える場合には下記の
    ! サブルーチンを用いてください. 
    !
    ! なお, 与えられた *phy_sat_nha* が PhySatNhaCreate 
    ! によって初期設定されていない場合, プログラムはエラーを発生させます. 
    !
    ! Calculate saturation specific humidity *xy_QVapSat* using
    ! temperature *xy_Temp* and air pressure *xy_Press*. 
    !
    ! If scalar data is given instead of array data, 
    ! use a following subroutine. 
    !
    ! If *phy_sat_nha* is not initialized 
    ! by "PhySatNhaCreate" yet, error is occurred. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_present, only: present_and_true
    use dc_error, only: StoreError, DC_NOERR, DC_ENOTINIT, USR_ERRNO
    implicit none
    type(PHYSATNHA), intent(inout):: phy_sat_nha
    real(DP), intent(in):: xy_Temp (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1)
                              ! $ T $ . 温度. Temperature
    real(DP), intent(in):: xy_Press (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1)
                              ! $ p $ . 気圧. 
                              ! Air pressure
    real(DP), intent(out):: xy_QVapSat (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1)
                              ! $ q^{*} $ . 飽和比湿. 
                              ! Saturation specific humidity. 
    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 


    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: i, j            ! DO ループ用作業変数
                              ! Work variables for DO loop
    integer:: stat
    character(STRING):: cause_c
    character(*), parameter:: subname = 'PhySatNhaCalcQVapSat2'
  continue
    call BeginSub( subname )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
    if ( .not. phy_sat_nha % initialized ) then
      stat = DC_ENOTINIT
      cause_c = 'PHYSATNHA'
      goto 999
    end if

    !-----------------------------------------------------------------
    !  飽和比湿の計算
    !  Calculate saturation specific humidity
    !-----------------------------------------------------------------
    do i = 0, phy_sat_nha%imax-1
      do j = 0, phy_sat_nha%jmax-1
        call CalcQVapSat( phy_sat_nha = phy_sat_nha, Temp = xy_Temp(i,j), Press = xy_Press(i,j), QVapSat = xy_QVapSat(i,j) )                 ! (out)
      end do
    end do

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )
  end subroutine PhySatNhaCalcQVapSat2
Subroutine :
phy_sat_nha :type(PHYSATNHA), intent(inout)
xyz_Temp(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ T $ . 温度. Temperature
xyz_Press(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(in)
: $ p $ . 気圧. Air pressure
xyz_QVapSat(0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1) :real(DP), intent(out)
: $ q^{*} $ . 飽和比湿. Saturation specific humidity.
err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

温度 xyz_Temp と気圧 xyz_Press を用い, 飽和比湿 xyz_QVapSat を求めます.

配列データではなくスカラーデータを与える場合には下記の サブルーチンを用いてください.

なお, 与えられた phy_sat_nhaPhySatNhaCreate によって初期設定されていない場合, プログラムはエラーを発生させます.

Calculate saturation specific humidity xyz_QVapSat using temperature xyz_Temp and air pressure xyz_Press.

If scalar data is given instead of array data, use a following subroutine.

If phy_sat_nha is not initialized by "PhySatNhaCreate" yet, error is occurred.

[Source]

  subroutine PhySatNhaCalcQVapSat3( phy_sat_nha, xyz_Temp, xyz_Press, xyz_QVapSat, err )
    !
    ! 温度 *xyz_Temp* と気圧 *xyz_Press* を用い, 飽和比湿 *xyz_QVapSat* を求めます. 
    !
    ! 配列データではなくスカラーデータを与える場合には下記の
    ! サブルーチンを用いてください. 
    !
    ! なお, 与えられた *phy_sat_nha* が PhySatNhaCreate 
    ! によって初期設定されていない場合, プログラムはエラーを発生させます. 
    !
    ! Calculate saturation specific humidity *xyz_QVapSat* using
    ! temperature *xyz_Temp* and air pressure *xyz_Press*. 
    !
    ! If scalar data is given instead of array data, 
    ! use a following subroutine. 
    !
    ! If *phy_sat_nha* is not initialized 
    ! by "PhySatNhaCreate" yet, error is occurred. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_present, only: present_and_true
    use dc_date, only: mod, operator(+), operator(==), EvalbyUnit, EvalSec
    use dc_error, only: StoreError, DC_NOERR, DC_ENOTINIT, USR_ERRNO
    use gt4_history_nmlinfo, only: HstNmlInfoInquire, HstNmlInfoOutputValid, HstNmlInfoAssocGtHist, HstNmlInfoPutLine
    use gt4_history, only: GT_HISTORY, HistoryPut, HistoryInitialized
    implicit none
    type(PHYSATNHA), intent(inout):: phy_sat_nha
    real(DP), intent(in):: xyz_Temp (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1)
                              ! $ T $ . 温度. Temperature
    real(DP), intent(in):: xyz_Press (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1)
                              ! $ p $ . 気圧. 
                              ! Air pressure
    real(DP), intent(out):: xyz_QVapSat (0:phy_sat_nha%imax-1, 0:phy_sat_nha%jmax-1, 0:phy_sat_nha%kmax-1)
                              ! $ q^{*} $ . 飽和比湿. 
                              ! Saturation specific humidity. 


!!$    logical, intent(in), optional:: historyput_flag
!!$                              ! データ出力のフラグ. 
!!$                              ! SetTime によって時刻を明示的に
!!$                              ! 指定した場合には, この引数に
!!$                              ! .true. または .false. を指定する
!!$                              ! ことでデータ出力のオンオフを
!!$                              ! 明示的に指定する必要があります. 
!!$                              ! デフォルトは .false. です. 
!!$                              ! 
!!$                              ! Data output flag. 
!!$                              ! When time is specified by "SetTime", 
!!$                              ! explicit specification of data output 
!!$                              ! on/off by specifying ".true." or ".false." 
!!$                              ! to this argument. 
!!$                              ! Default value is ".false.". 
!!$                              ! 

    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 

    !-----------------------------------
    !  ヒストリファイルへのデータ出力設定
    !  Configure the settings for history data output
!!$    character(STRING):: name = ''
!!$                              ! 変数名. Variable identifier
!!$    real:: time
!!$                              ! 時刻. Time
!!$    type(GT_HISTORY), pointer:: gthist =>null()
!!$                              ! gt4_history モジュール用構造体. 
!!$                              ! Derived type for "gt4_history" module

    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: i, j, k         ! DO ループ用作業変数
                              ! Work variables for DO loop
    integer:: stat
    character(STRING):: cause_c
    character(*), parameter:: subname = 'PhySatNhaCalcQVapSat3'
  continue
    call BeginSub( subname )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------
    if ( .not. phy_sat_nha % initialized ) then
      stat = DC_ENOTINIT
      cause_c = 'PHYSATNHA'
      goto 999
    end if

    !-----------------------------------------------------------------
    !  飽和比湿の計算
    !  Calculate saturation specific humidity
    !-----------------------------------------------------------------
    do i = 0, phy_sat_nha%imax-1
      do j = 0, phy_sat_nha%jmax-1
        do k = 0, phy_sat_nha%kmax-1
          call CalcQVapSat( phy_sat_nha = phy_sat_nha, Temp = xyz_Temp(i,j,k), Press = xyz_Press(i,j,k), QVapSat = xyz_QVapSat(i,j,k) )              ! (out)
        end do
      end do
    end do

    !----------------------------------------------------------------
    !  ヒストリファイルへのデータ出力
    !  History data output
    !----------------------------------------------------------------

!!$    !-----------------------------------
!!$    !  x_Data1 の出力
!!$    !  Output "x_Data1"
!!$    name = 'Data1'
!!$
!!$    ! 出力のチェック. 
!!$    !   * gthist (gt4_history#GT_HISTORY), time (単精度実数型) が設定される.
!!$    ! Check for output.
!!$    !   * "gthist" (gt4_history#GT_HISTORY), time (real) are configured.
!!$    call output_check ! これは内部サブルーチン. This is an internal subroutine
!!$
!!$    ! 出力データを引数 array に渡す.
!!$    ! Give output data to argument "array"
!!$    if ( associated( gthist ) ) then
!!$      call HistoryPut( &
!!$        & history = gthist, &                ! (inout)
!!$        & varname = name, array = x_Data1, & ! (in)
!!$        & time = time, quiet = .false., &    ! (in)
!!$        & err = err )                        ! (out)
!!$    end if
!!$
!!$    !-----------------------------------
!!$    !  y_Data2 の出力
!!$    !  Output "y_Data2"
!!$    name = 'Data2'
!!$
!!$    ! 出力のチェック. 
!!$    !   * gthist (gt4_history#GT_HISTORY), time (単精度実数型) が設定される.
!!$    ! Check for output.
!!$    !   * "gthist" (gt4_history#GT_HISTORY), time (real) are configured.
!!$    call output_check ! これは内部サブルーチン. This is an internal subroutine
!!$
!!$    ! 出力データを引数 array に渡す.
!!$    ! Give output data to argument "array"
!!$    if ( associated( gthist ) ) then
!!$      call HistoryPut( &
!!$        & history = gthist, &                ! (inout)
!!$        & varname = name, array = y_Data2, & ! (in)
!!$        & time = time, quiet = .false., &    ! (in)
!!$        & err = err )                        ! (out)
!!$    end if

    !-----------------------------------------------------------------
    !  時刻の更新
    !  Update time
    !-----------------------------------------------------------------
!!$    phy_sat_nha % current_time = &
!!$      & phy_sat_nha % current_time + phy_sat_nha % delta_time

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )

!!$  contains
!!$
!!$    subroutine output_check
!!$      !
!!$      ! 変数 *name* を出力するかどうかをチェックします. 
!!$      ! 出力に関する情報は dcm_sam_cod % gthstnml から取り出されます. 
!!$      !
!!$      ! 変数 *name* に関して出力するよう設定されている場合には, 
!!$      ! *gthist* に出力先ファイルの gt4_history#GT_HISTORY
!!$      ! 型変数を結合させます. そうでない場合は, *gthist* を空状態にします. 
!!$      !
!!$      ! また, 現在時刻を *time* に設定します. 
!!$      !
!!$      ! Check whether to output variable *name*. 
!!$      ! Information about output is taken out of "dcm_sam_cod % gthstnml". 
!!$      !
!!$      ! When output is done for the variable *name*, *gthist* is 
!!$      ! associated with "gt4_history#GT_HISTORY" variable of
!!$      ! the output file. Otherwise, *gthist* is nullified. 
!!$      !
!!$      ! Moreover, current time is set to *time*. 
!!$      !
!!$      character(TOKEN):: interval_unit
!!$                                ! ヒストリデータの出力間隔の単位. 
!!$                                ! Unit for interval of history data output
!!$    continue
!!$
!!$      nullify( gthist )
!!$      time = 0.0
!!$
!!$      if ( HstNmlInfoOutputValid( phy_sat_nha % gthstnml, name ) ) then
!!$        call HstNmlInfoInquire( &
!!$          & gthstnml = phy_sat_nha % gthstnml, & ! (in)
!!$          & name = name, &                           ! (in)
!!$          & interval_unit = interval_unit )          ! (out)
!!$
!!$        time = real( EvalbyUnit( phy_sat_nha % current_time, interval_unit ) )
!!$        if ( present_and_true( historyput_flag ) ) time = 0.0
!!$
!!$        call HstNmlInfoAssocGtHist( & 
!!$          & gthstnml = phy_sat_nha % gthstnml, & ! (in)
!!$          & name = name, &                           ! (in)
!!$          & history = gthist, err = err )            ! (out)
!!$        if ( present_and_true( err ) ) then
!!$          nullify( gthist )
!!$          return
!!$        end if
!!$
!!$        if ( .not. HistoryInitialized( gthist ) ) nullify( gthist )
!!$      end if
!!$
!!$    end subroutine output_check
  end subroutine PhySatNhaCalcQVapSat3
Subroutine :
nmlfile :character(*), intent(in)
: NAMELIST ファイルの名称. NAMELIST file name
gthstnml :type(GTHST_NMLINFO), intent(inout)
: NAMELIST#phy_saturate_nha92_history_nml から入手される個別のデータ出力情報.

初期設定やデフォルト値の設定などを 行った後に与えること.

Individual data output information from "NAMELIST#phy_saturate_nha92_history_nml".

Before this argument is given to this procedure, initialize and configure the defaut settings.

err :logical, intent(out), optional
: 例外処理用フラグ. デフォルトでは, この手続き内でエラーが 生じた場合, プログラムは強制終了します. 引数 err が与えられる場合, プログラムは強制終了せず, 代わりに err に .true. が代入されます.

Exception handling flag. By default, when error occur in this procedure, the program aborts. If this err argument is given, .true. is substituted to err and the program does not abort.

NAMELIST ファイル nmlfile から値を入力するための サブルーチンです. PhySatNhaCreate 内で呼び出されることを想定しています.

値が NAMELIST ファイル内で指定されていない場合には, 入力された値がそのまま返ります.

なお, nmlfile に空文字が与えられた場合, または 与えられた nmlfile を読み込むことができない場合, プログラムはエラーを発生させます.

This is a subroutine to input values from NAMELIST file nmlfile. This subroutine is expected to be called by "PhySatNhaCreate".

A value not specified in NAMELIST file is returned without change.

If nmlfile is empty, or nmlfile can not be read, error is occurred.

This procedure input/output NAMELIST#phy_saturate_nha92_history_nml .

[Source]

  subroutine PhySatNhaNmlRead( nmlfile, gthstnml, err )
    !
    ! NAMELIST ファイル *nmlfile* から値を入力するための
    ! サブルーチンです. PhySatNhaCreate 
    ! 内で呼び出されることを想定しています. 
    !
    ! 値が NAMELIST ファイル内で指定されていない場合には, 
    ! 入力された値がそのまま返ります. 
    !
    ! なお, *nmlfile* に空文字が与えられた場合, または
    ! 与えられた *nmlfile* を読み込むことができない場合, 
    ! プログラムはエラーを発生させます. 
    !
    ! This is a subroutine to input values from 
    ! NAMELIST file *nmlfile*. This subroutine is expected to be 
    ! called by "PhySatNhaCreate". 
    !
    ! A value not specified in NAMELIST file is returned 
    ! without change. 
    !
    ! If *nmlfile* is empty, or *nmlfile* can not be read, 
    ! error is occurred. 
    !
    use dc_trace, only: BeginSub, EndSub
    use dc_string, only: PutLine, Printf, Split, StrInclude, StoA, JoinChar
    use dc_types, only: DP, STRING, TOKEN, STDOUT
    use dc_iounit, only: FileOpen
    use dc_message, only: MessageNotify
    use dc_present, only: present_and_true
    use dc_date, only: DCDiffTimeCreate
    use dc_error, only: StoreError, DC_NOERR, DC_ENOFILEREAD, DC_ENOTINIT
    use gt4_history_nmlinfo, only: GTHST_NMLINFO, HstNmlInfoAdd, HstNmlInfoInquire, HstNmlInfoInitialized, HstNmlInfoPutLine
    implicit none
    character(*), intent(in):: nmlfile
                              ! NAMELIST ファイルの名称. 
                              ! NAMELIST file name

!!$    real(DP), intent(inout):: CoefAlpha
!!$                              ! $ \alpha $ . 係数. Coefficient
!!$
!!$    character(*), intent(inout):: key00_
!!$    character(TOKEN):: key00
!!$                              ! キーワード. Keyword
!!$
    type(GTHST_NMLINFO), intent(inout):: gthstnml
                              ! NAMELIST#phy_saturate_nha92_history_nml 
                              ! から入手される個別のデータ出力情報. 
                              ! 
                              ! 初期設定やデフォルト値の設定などを
                              ! 行った後に与えること. 
                              ! 
                              ! Individual data output information from 
                              ! "NAMELIST#phy_saturate_nha92_history_nml". 
                              ! 
                              ! Before this argument is given to 
                              ! this procedure, initialize and 
                              ! configure the defaut settings. 
    logical, intent(out), optional:: err
                              ! 例外処理用フラグ. 
                              ! デフォルトでは, この手続き内でエラーが
                              ! 生じた場合, プログラムは強制終了します. 
                              ! 引数 *err* が与えられる場合, 
                              ! プログラムは強制終了せず, 代わりに
                              ! *err* に .true. が代入されます. 
                              !
                              ! Exception handling flag. 
                              ! By default, when error occur in 
                              ! this procedure, the program aborts. 
                              ! If this *err* argument is given, 
                              ! .true. is substituted to *err* and 
                              ! the program does not abort. 

!!$    namelist /phy_saturate_nha92_nml/ &
!!$      & CoefAlpha, key00
!!$                              ! phy_saturate_nha92 モジュール用
!!$                              ! NAMELIST 変数群名. 
!!$                              !
!!$                              ! phy_saturate_nha92#PhySatNhaCreate 
!!$                              ! を使用する際に, オプショナル引数 *nmlfile* 
!!$                              ! へ NAMELIST ファイル名を指定することで, 
!!$                              ! そのファイルからこの NAMELIST 変数群を
!!$                              ! 読み込みます. 
!!$                              !
!!$                              ! NAMELIST group name for 
!!$                              ! "phy_saturate_nha92" module. 
!!$                              ! 
!!$                              ! If a NAMELIST filename is specified to 
!!$                              ! an optional argument *nmlfile* when 
!!$                              ! "phy_saturate_nha92#PhySatNhaCreate" 
!!$                              ! is used, this NAMELIST group is 
!!$                              ! loaded from the file. 

    character(STRING):: name
                              ! 変数名. 
                              ! 空白の場合には, この他の設定値は
                              ! phy_saturate_nha92 モジュールにおいて
                              ! 出力されるデータ全ての
                              ! デフォルト値となります. 
                              ! 
                              ! "Data1,Data2" のようにカンマで区切って複数
                              ! の変数を指定することも可能です. 
                              ! 
                              ! Variable identifier. 
                              ! If blank is given, other values are 
                              ! used as default values of output data 
                              ! in "phy_saturate_nha92". 
                              ! 
                              ! Multiple variables can be specified 
                              ! as "Data1,Data2" too. Delimiter is comma. 
    character(STRING):: file
                              ! 出力ファイル名. 
                              ! これはデフォルト値としては使用されません. 
                              ! *name* に値が設定されている時のみ有効です. 
                              ! 
                              ! Output file name. 
                              ! This is not used as default value. 
                              ! This value is valid only when *name* is 
                              ! specified. 

    real:: interval_value
                              ! ヒストリデータの出力間隔の数値. 
                              ! 負の値を与えると, 出力を抑止します. 
                              ! Numerical value for interval of history data output
                              ! Negative values suppresses output.
    character(TOKEN):: interval_unit
                              ! ヒストリデータの出力間隔の単位. 
                              ! Unit for interval of history data output
    character(TOKEN):: precision
                              ! ヒストリデータの精度. 
                              ! Precision of history data
    logical:: average
                              ! 出力データの平均化フラグ. 
                              ! Flag for average of output data
    character(STRING):: fileprefix
                              ! ヒストリデータのファイル名の接頭詞. 
                              ! Prefixes of history data filenames

    namelist /phy_saturate_nha92_history_nml/ name, file, interval_value, interval_unit, precision, fileprefix, average
                              ! phy_saturate_nha92 モジュールのヒストリデータ用
                              ! NAMELIST 変数群名. 
                              !
                              ! phy_saturate_nha92#PhySatNhaCreate 
                              ! を使用する際に, オプショナル引数 *nmlfile* 
                              ! へ NAMELIST ファイル名を指定することで, 
                              ! そのファイルからこの NAMELIST 変数群を
                              ! 読み込みます. 
                              !
                              ! NAMELIST group name for 
                              ! history data of "phy_saturate_nha92" module. 
                              ! 
                              ! If a NAMELIST filename is specified to 
                              ! an optional argument *nmlfile* when 
                              ! "phy_saturate_nha92#PhySatNhaCreate" 
                              ! is used, this NAMELIST group is 
                              ! loaded from the file. 

    !-----------------------------------
    !  作業変数
    !  Work variables
    integer:: stat
    character(STRING):: cause_c
    integer:: unit_nml        ! NAMELIST ファイルオープン用装置番号. 
                              ! Unit number for NAMELIST file open
    integer:: iostat_nml      ! NAMELIST 読み込み時の IOSTAT. 
                              ! IOSTAT of NAMELIST read
    character(TOKEN):: pos_nml
                              ! NAMELIST 読み込み時のファイル位置. 
                              ! File position of NAMELIST read
    character(*), parameter:: subname = 'PhySatNhaNmlRead'
  continue
    call BeginSub( subname )
    stat = DC_NOERR
    cause_c = ''

    !-----------------------------------------------------------------
    !  初期設定のチェック
    !  Check initialization
    !-----------------------------------------------------------------

    !-----------------------------------------------------------------
    !  文字型引数を NAMELIST 変数群へ代入
    !  Substitute character arguments to NAMELIST group
    !-----------------------------------------------------------------
!!$    key00       = key00_

    !----------------------------------------------------------------
    !  NAMELIST ファイルのオープン
    !  Open NAMELIST file
    !----------------------------------------------------------------
    call FileOpen( unit = unit_nml, file = nmlfile, mode = 'r', err = err )                   ! (out)
    if ( present_and_true(err) ) then
      stat = DC_ENOFILEREAD
      cause_c = nmlfile
      goto 999
    end if

    !-----------------------------------------------------------------
    !  NAMELIST 変数群の取得
    !  Get NAMELIST group
    !-----------------------------------------------------------------

    !-------------------------
    !  係数などの取得
    !  Get coefficients etc.
!!$    rewind( unit_nml )
!!$    read( unit = unit_nml, &         ! (in)
!!$      &    nml = phy_saturate_nha92_nml, & ! (out)
!!$      & iostat = iostat_nml )        ! (out)
!!$    if ( iostat_nml == 0 ) then
!!$      call MessageNotify( 'M', subname, &
!!$        & 'NAMELIST group "%c" is loaded from "%c".', &
!!$        & c1 = 'phy_saturate_nha92_nml', c2 = trim(nmlfile) )
!!$      write(STDOUT, nml = phy_saturate_nha92_nml)
!!$    else
!!$      call MessageNotify( 'W', subname, &
!!$        & 'NAMELIST group "%c" is not found in "%c" (iostat=%d).', &
!!$        & c1 = 'phy_saturate_nha92_nml', c2 = trim(nmlfile), &
!!$        & i = (/iostat_nml/) )
!!$    end if
!!$
    !-------------------------
    !  出力データの個別情報の取得
    !  Get individual information of output data
    rewind( unit_nml )
    iostat_nml = 0
    pos_nml = ''
    do while ( trim(pos_nml) /= 'APPEND' .and. iostat_nml == 0 )

      name                   = ''
      file                   = ''
      call HstNmlInfoInquire( gthstnml = gthstnml, interval_value = interval_value, interval_unit = interval_unit, precision = precision, average = average, fileprefix = fileprefix )          ! (out)

      read( unit = unit_nml, nml = phy_saturate_nha92_history_nml, iostat = iostat_nml )                ! (out)
      inquire( unit = unit_nml, position = pos_nml )   ! (out)

      if ( iostat_nml == 0 ) then
        call MessageNotify( 'M', subname, 'NAMELIST group "%c" is loaded from "%c".', c1='phy_saturate_nha92_history_nml', c2=trim(nmlfile) )
        write(STDOUT, nml = phy_saturate_nha92_history_nml)

        call HstNmlInfoAdd( gthstnml = gthstnml, name = name, file = file, interval_value = interval_value, interval_unit = interval_unit, precision = precision, average = average, fileprefix = fileprefix )          ! (in)

      else
        call MessageNotify( 'W', subname, 'NAMELIST group "%c" is not found in "%c" any more (iostat=%d).', c1='phy_saturate_nha92_history_nml', c2=trim(nmlfile), i = (/iostat_nml/) )
      end if
    end do

    close( unit_nml )

    !-----------------------------------------------------------------
    !  NAMELIST 変数群を文字型引数へ代入
    !  Substitute NAMELIST group to character arguments
    !-----------------------------------------------------------------
!!$    key00_       = key00

    !-----------------------------------------------------------------
    !  終了処理, 例外処理
    !  Termination and Exception handling
    !-----------------------------------------------------------------
999 continue
    call StoreError( stat, subname, err, cause_c )
    call EndSub( subname )

  end subroutine PhySatNhaNmlRead
version
Constant :
version = ’$Name: dcpam4-20080609-1 $’ // ’$Id: phy_saturate_nha92.f90,v 1.8 2008-06-03 11:17:24 morikawa Exp $’ :character(*), parameter

[Validate]