cg_iric_read_grid2d_coords¶
二次元構造格子を読み込む。
形式 (FORTRAN)¶
call cg_iric_read_grid2d_coords(fid, x, y, ier)
形式 (C/C++)¶
ier = cg_iRIC_Read_Grid2d_Coords(fid, x, y);
形式 (Python)¶
x, y = cg_iRIC_Read_Grid2d_Coords(fid)
引数¶
変数名 |
型 |
I/O |
内容 |
---|---|---|---|
fid |
integer |
I |
ファイルID |
x |
double precision, dimension(:), allocatable |
O |
格子点のx座標値 |
y |
double precision, dimension(:), allocatable |
O |
格子点のy座標値 |
ier |
integer |
O |
エラーコード。0なら成功 |