cg_iric_write_sol_particle_pos3d_withgridid¶
粒子の位置を出力する。 (3次元)
形式 (FORTRAN)¶
call cg_iric_write_sol_particle_pos3d_withgridid(fid, gid, count, x, y, z, ier)
形式 (C/C++)¶
ier = cg_iRIC_Write_Sol_Particle_Pos3d_WithGridId(fid, gid, count, x, y, z);
形式 (Python)¶
cg_iRIC_Write_Sol_Particle_Pos3d_WithGridId(fid, gid, x, y, z)
引数¶
変数名 | 型 | I/O | 内容 |
---|---|---|---|
fid | integer | I | ファイルID |
gid | integer | I | 格子ID |
count | integer | I | 粒子の数 |
x | double precision, dimension(:), allocatable | I | X座標 |
y | double precision, dimension(:), allocatable | I | Y座標 |
z | double precision, dimension(:), allocatable | I | Z座標 |
ier | integer | O | エラーコード。0なら成功 |