cg_iric_read_sol_grid3d_coords_withgridid¶
計算結果の3次元構造格子を取得する。
形式 (FORTRAN)¶
call cg_iric_read_sol_grid3d_coords_withgridid(fid, gid, step, x, y, z, ier)
形式 (C/C++)¶
ier = cg_iRIC_Read_Sol_Grid3d_Coords_WithGridId(fid, gid, step, x, y, z);
形式 (Python)¶
x, y, z = cg_iRIC_Read_Sol_Grid3d_Coords_WithGridId(fid, gid, step)
引数¶
変数名 | 型 | I/O | 内容 |
---|---|---|---|
fid | integer | I | ファイルID |
gid | integer | I | 格子ID |
step | integer | I | ステップ数 |
x | double precision, dimension(:), allocatable | O | X座標 |
y | double precision, dimension(:), allocatable | O | Y座標 |
z | double precision, dimension(:), allocatable | O | Z座標 |
ier | integer | O | エラーコード。0なら成功 |