Toggle navigation
Gtool Project
地球流体電脳倶楽部
dcmodel プロジェクト
SIGEN
English
gtool
gtool_history
hsp3d.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: hsp3d.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#HistoryPut :: HSP1D, HSP2D, HSP3D, HSP1R, HSP2R, HSP3R
13
!
14
subroutine
hsp3d
(vname,var,i,j,k)
15
!
16
!== 機能
17
!
18
! ヒストリーに変数を出力する
19
!
20
21
use
gtool_history
22
character(len=*)
:: vname
! 変数名
23
double precision
:: var(i,j,k)
! 変数
24
integer
:: i,j,k
! 各次元の大きさ
25
26
call
historyput(vname,var)
27
28
end subroutine
hsp3d
gtool_history
Definition:
gtool_history.f90:12
hsp3d
subroutine hsp3d(vname, var, i, j, k)
Definition:
hsp3d.f90:15