Gtool Project
地球流体電脳倶楽部
dcmodel プロジェクト
SIGEN
English
gtool
gtool_history
historyaxisclear.f90
Go to the documentation of this file.
1
!= GT_HISTORY_AXIS 変数のクリア
2
!= Destructor of GT_HISTORY_AXIS
3
!
4
! Authors:: Yasuhiro MORIKAWA
5
! Version:: $Id: historyaxisclear.f90,v 1.2 2009-05-25 09:45:20 morikawa Exp $
6
! Tag Name:: $Name: $
7
! Copyright:: Copyright (C) GFD Dennou Club, 2000-2009. All rights reserved.
8
! License:: See COPYRIGHT[link:../../../COPYRIGHT]
9
!
10
subroutine
historyaxisclear
(axis)
11
!
12
!== GT_HISTORY_AXIS 型変数初期化
13
!
14
! *axis* で与えられた変数を HistoryAxisCreate による初期設定よりも
15
! さらに前の状態に初期化します。
16
!
17
! Destructor of GT_HISTORY_AXIS
18
!
19
use
gtool_history_types
, only
: gt_history, gt_history_axis, gt_history_varinfo, gt_history_attr
20
use
gtool_history_internal
, only
: default
21
use
dc_trace
, only
: beginsub, endsub, dbgmessage
22
use
dc_types
, only
:
string
,
token
,
dp
23
implicit none
24
type
(gt_history_axis),
intent(inout)
:: axis
25
character(len = *)
,
parameter
:: subname =
"HistoryAxisClear1"
26
call
beginsub(subname)
27
axis % name =
""
28
axis % length = 0
29
axis % longname =
""
30
axis % units =
""
31
axis % xtype =
""
32
if
(
associated
(axis % attrs))
then
33
deallocate
(axis % attrs)
34
end if
35
call
endsub(subname)
36
end subroutine
historyaxisclear
historyaxisclear
subroutine historyaxisclear(axis)
Definition:
historyaxisclear.f90:11
dc_types::token
integer, parameter, public token
単語やキーワードを保持する文字型変数の種別型パラメタ
Definition:
dc_types.f90:109
dc_types::dp
integer, parameter, public dp
倍精度実数型変数
Definition:
dc_types.f90:83
dc_types
種別型パラメタを提供します。
Definition:
dc_types.f90:49
gtool_history_types
Definition:
gtool_history_types.f90:12
dc_types::string
integer, parameter, public string
文字列を保持する 文字型変数の種別型パラメタ
Definition:
dc_types.f90:118