gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
hsp3d.f90 File Reference

Fortran 77 compatibility wrapper for gtool_history HistoryPut (3D double precision) . More...

Go to the source code of this file.

Functions/Subroutines

subroutine hsp3d (vname, var, i, j, k)

Detailed Description

Fortran 77 compatibility wrapper for gtool_history HistoryPut (3D double precision)

.

Author
Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA

Definition in file hsp3d.f90.

Function/Subroutine Documentation

◆ hsp3d()

subroutine hsp3d ( character(len=*) vname,
double precision, dimension(i,j,k) var,
integer i,
integer j,
integer k )

Output a variable to history

Definition at line 23 of file hsp3d.f90.

24
26 character(len=*) :: vname ! 変数名
27 double precision :: var(i,j,k) ! 変数
28 integer :: i,j,k ! 各次元の大きさ
29
30 call historyput(vname,var)
31