gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
gtdata_netcdf_file_internal.f90
Go to the documentation of this file.
1!>
2!> @file gtdata_netcdf_file_internal.f90
3!>
4!> @author Yasuhiro MORIKAWA, Eizi TOYODA
5!> @copyright Copyright (C) GFD Dennou Club, 2000-2026. All rights reserved. <br/>
6!> License is BSD-2-Clause. See [COPYRIGHT](@ref COPYRIGHT) in detail
7!>
8!> @en
9!> @brief Internal constants, variables, procedures used in "gtdata_netcdf_file"
10!> @enden
11!>
12!> @ja
13!> @brief gtdata_netcdf_file 内で使用される内部向け定数, 変数, 手続き群
14!> @endja
15!>
16
17!>
18!> @private
19!>
20!> @en
21!> @brief Internal constants, variables, procedures used in "gtdata_netcdf_file"
22!>
23!> This module provides internal variables for managing the list of
24!> open netCDF files.
25!> @enden
26!>
27!> @ja
28!> @brief gtdata_netcdf_file 内で使用される内部向け定数, 変数, 手続き群
29!>
30!> このモジュールはオープンされた netCDF ファイルのリストを管理するための
31!> 内部変数を提供します。
32!> @endja
33!>
35 !
37 implicit none
38
39 type(gd_nc_file_id_entry), save, pointer:: id_head
40 !< @en ID table for open/close of netCDF files @enden
41 !< @ja netCDF ファイルのオープンクローズのための ID テーブル @endja
42
43 logical, save:: id_used = .false.
44 !< @en Flag indicating whether id_head has been initialized @enden
45 !< @ja id_head が初期化済みかを示すフラグ @endja
46
logical, save id_used
Flag indicating whether id_head has been initialized
type(gd_nc_file_id_entry), pointer, save id_head
ID table for open/close of netCDF files