hscrea.f90
Go to the documentation of this file.
1 !
2 != gtool_history Fortran 77 用インターフェース
3 !
4 ! Authors:: Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA
5 ! Version:: $Id: hscrea.f90,v 1.2 2009-06-01 15:17:19 morikawa Exp $
6 ! Tag Name:: $Name: $
7 ! Copyright:: Copyright (C) GFD Dennou Club, 2000-2005. All rights reserved.
8 ! License:: See COPYRIGHT[link:../../COPYRIGHT]
9 !
10 !== サブルーチン対応表
11 !
12 ! gtool_history_generic#HistoryCreate :: HSCREA
13 !
14 subroutine hscrea(fname,title,source,institution, &
15  & idim,dims,dimsiz,xtypes,longnames,units, &
16  & origin,interval )
17  !
18  !== 機能
19  !
20  ! ヒストリーを定義する.
21  !
22 
23  use gtool_history, only: historycreate
24  implicit none
25 
26  character(len=*) :: fname ! 出力ファイル
27  character(len=*) :: title ! データ全体の表題
28  character(len=*) :: source ! データを作成する際の手段
29  character(len=*) :: institution ! ファイルを最終的に変更した人/組織
30  integer :: idim ! 定義する軸変数の数
31  character(len=1),dimension(idim) :: dims ! 軸変数名
32  integer,dimension(idim) :: dimsiz ! 軸変数の大きさ
33  character(len=*),dimension(idim) :: xtypes ! 軸変数のタイプ
34  character(len=*),dimension(idim) :: longnames ! 軸変数の長い名前
35  character(len=*),dimension(idim) :: units ! 単位
36  real :: origin ! 開始時間
37  real :: interval ! 出力時間間隔
38 
39  call historycreate( file=fname, title=title, &
40  & source=source, institution=institution, &
41  & dims=dims, dimsizes=dimsiz, xtypes=xtypes, &
42  & longnames=longnames, units=units, &
43  & origin=origin, interval=interval )
44 
45 end subroutine hscrea
subroutine hscrea(fname, title, source, institution, idim, dims, dimsiz, xtypes, longnames, units, origin, interval)
Definition: hscrea.f90:17