commit 430c32e9c0e8fe661218406868df02ccb41f4d2f
parent 43e0876f71df86c952fde95ddc8c4bf63f778446
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Thu, 15 Sep 2022 12:32:20 +0200
Fix print of H+F description
Diffstat:
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/stardis-hfbound.c b/src/stardis-hfbound.c
@@ -76,11 +76,12 @@ str_print_hf_boundary
ASSERT(str && desc && DESC_IS_HF(desc));
b = desc->d.hf_boundary;
ERR(str_append_printf(str,
- "H boundary for %s '%s': ref_temperature=%g emissivity=%g specular_fraction=%g "
- "hc=%g T=%g (using medium %u as external medium)",
+ "HF boundary for %s '%s': ref_temperature=%g emissivity=%g specular_fraction=%g "
+ "hc=%g flux=%g T=%g (using medium %u as external medium)",
(desc->type == DESC_BOUND_HF_FOR_SOLID ? "solid" : "fluid"),
str_cget(&b->name), b->ref_temperature, b->emissivity,
- b->specular_fraction, b->hc, b->imposed_temperature, b->mat_id));
+ b->specular_fraction, b->hc, b->imposed_flux, b->imposed_temperature,
+ b->mat_id));
end:
return res;
error: