hsavar.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: hsavar.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#HistoryAddVariable :: HSAVAR
13 !
14 subroutine hsavar(vname,idim,dims,lname,unit,xtype)
15  !
16  !== 機能
17  !
18  ! 変数を定義する.
19  !
20  use gtool_history
21  character(len=*),intent(in) :: vname ! 変数名
22  integer,intent(in) :: idim ! 定義する変数の次元の大きさ
23  character(len=*),dimension(idim),intent(in) :: dims ! 次元
24  character(len=*),intent(in) :: lname ! 長い名前
25  character(len=*),intent(in) :: unit ! 単位
26  character(len=*),intent(in) :: xtype ! 定義する変数のタイプ
27 
28  call historyaddvariable(varname=vname, dims=dims, &
29  & longname=lname, units=unit, xtype=xtype)
30 
31 end subroutine hsavar
subroutine hsavar(vname, idim, dims, lname, unit, xtype)
Definition: hsavar.f90:15