hsp1d.f90

Path: hsp1d.f90
Last Update: Sun Jan 15 16:10:30 +0900 2006

gt4_history Fortran 77 用インターフェース

Authors:Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA
Version:$Id: hsp1d.f90,v 1.3 2006-01-15 07:10:30 morikawa Exp $
Tag Name:$Name: gt4f90io-20080728 $
Copyright:Copyright (C) GFD Dennou Club, 2000-2005. All rights reserved.
License:See COPYRIGHT

サブルーチン対応表

gt4_history#HistoryPut :HSP1D, HSP2D, HSP3D, HSP1R, HSP2R, HSP3R

Required files

Methods

hsp1d  

Included Modules

gt4_history

Public Instance methods

Subroutine :
vname :character(len=*)
: 変数名
var(i) :double precision
: 変数
i :integer
: 各次元の大きさ

機能

ヒストリーに変数を出力する

[Source]

subroutine hsp1d(vname,var,i)
  !
  !== 機能
  !
  ! ヒストリーに変数を出力する
  !

  use gt4_history
  character(len=*) :: vname ! 変数名
  double precision :: var(i) ! 変数
  integer          :: i ! 各次元の大きさ

  call HistoryPut(vname,var)

end subroutine hsp1d

[Validate]