commit 09b8fad5ea39a3fc20b3feb170f8b7f1e77b960f
parent e61a60f36938ea1c34e4e478c6f53b67baa21e97
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 5 Mar 2021 10:13:37 +0100
Print a message priorly to the write of the combustion octree
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/combustion/htrdr_combustion.c b/src/combustion/htrdr_combustion.c
@@ -241,6 +241,9 @@ dump_volumetric_acceleration_structure(struct htrdr_combustion* cmd)
/* Nothing to do on non master process */
if(htrdr_get_mpi_rank(cmd->htrdr) != 0) goto exit;
+ htrdr_log(cmd->htrdr, "Write volumetric acceleration structure to '%s'.\n",
+ str_cget(&cmd->output_name));
+
res = atrstm_dump_svx_octree(cmd->medium, &args, cmd->output);
if(res != RES_OK) goto error;