commit 68df2f08fc71f0ea8d69c48064d07f27513b84d3
parent d0e3c1e77bdbf307f4306f40772c7bb60c192070
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 12 Jan 2024 17:14:31 +0100
Fixed minor errors in test comments
Diffstat:
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/test_sdis_draw_external_flux.c b/src/test_sdis_draw_external_flux.c
@@ -160,7 +160,7 @@ mesh_add_ground(struct mesh* mesh)
MEDIUM_PROP(solid, calorific_capacity, 500.0) /* [J/K/Kg] */
MEDIUM_PROP(solid, thermal_conductivity, 25.0) /* [W/m/K] */
MEDIUM_PROP(solid, volumic_mass, 7500.0) /* [kg/m^3] */
-MEDIUM_PROP(solid, temperature, 310/*<=> unknown*/) /* [K] */
+MEDIUM_PROP(solid, temperature, 310) /* [K] */
MEDIUM_PROP(solid, delta, 1.0/20.0) /* [m] */
MEDIUM_PROP(fluid, calorific_capacity, 2.0) /* [J/K/Kg] */
MEDIUM_PROP(fluid, volumic_mass, 25.0) /* |kg/m^3] */
diff --git a/src/test_sdis_solve_probe_list.c b/src/test_sdis_solve_probe_list.c
@@ -36,12 +36,12 @@
* trilinear profile. Thus, we should find by Monte Carlo the temperature
* defined by the trilinear profile.
*
- * /\ <-- T(x,y,z)
- * T(z) ___/ \___
- * | \ . T=? /
- * o-- T(x) /_ __ _\
- * / \/ \/
- * T(y)
+ * T(z) /\ <-- T(x,y,z)
+ * | T(y) ___/ \___
+ * |/ \ . T=? /
+ * o--- T(x) /_ __ _\
+ * \/ \/
+ *
*/
/*******************************************************************************