htcp

Properties of water suspended in clouds
git clone git://git.meso-star.fr/htcp.git
Log | Files | Refs | README | LICENSE

commit 4ec8ec7374795728edb3621c12b27c4f1ac12d5c
parent 39e191921d315baa6ba287c280f20d249949258a
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon, 30 Apr 2018 11:56:24 +0200

Fix an issue in the les2htcop tool

The written definition in Z was wrong

Diffstat:
Msrc/les2htcop.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/les2htcop.c b/src/les2htcop.c @@ -712,7 +712,7 @@ main(int argc, char** argv) WRITE(&grid.is_z_irregular, 1, "'irregular' Z boolean"); WRITE(&grid.nx, 1, "X definition"); WRITE(&grid.ny, 1, "Y definition"); - WRITE(&grid.ny, 1, "Z definition"); + WRITE(&grid.nz, 1, "Z definition"); WRITE(&grid.ntimes, 1, "time definition"); WRITE(grid.lower, 3, "lower position"); WRITE(&grid.vxsz_x, 1, "X voxel size");