cg_iric_writegridcoord3d_f

  • Outputs a three-dimensional structured grid.

Format (FORTRAN)

call cg_iric_writegridcoord2d_f(nx, ny, x, y, ier)

Format (C/C++)

ier = cg_iRIC_WriteGridCoord3d(nx, ny, nz, x, y, z);

Format (Python)

cg_iRIC_WriteGridCoord3d(nx, ny, nz, x, y, z)

Arguments

Table 159 Arguments of cg_iric_writegridcoord3d_f
Variable name Type I/O Description
nx integer I Number of grid nodes in the i direction
ny integer I Number of grid nodes in the j direction
nz integer I Number of grid nodes in the k direction
x double precision, dimension(:), allocatable I x coordinate value of a grid node
y double precision, dimension(:), allocatable I y coordinate value of a grid node
z double precision, dimension(:), allocatable I z coordinate value of a grid node
ier integer O Error code. 0 means success.