stardis-solver

Solve coupled heat transfers
git clone git://git.meso-star.fr/stardis-solver.git
Log | Files | Refs | README | LICENSE

commit 187ac5c5e0742059678126c8e88320a1190c8ecb
parent cd7c9cca4b06a5ab0930e8f48c2584b451c03f1d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon, 19 Feb 2018 17:29:09 +0100

Add comments to the 2D conducto radiative test

Diffstat:
Msrc/test_sdis_conducto_radiative.c | 10+++++-----
Msrc/test_sdis_conducto_radiative_2d.c | 19+++++++++++++++++++
2 files changed, 24 insertions(+), 5 deletions(-)

diff --git a/src/test_sdis_conducto_radiative.c b/src/test_sdis_conducto_radiative.c @@ -22,11 +22,11 @@ #define UNKNOWN_TEMPERATURE -1 /* The scene is composed of a solid cube whose temperature is unknown. The cube - * face on +/-X are in contact with a fluid and their convection coefficient is - * null while their emissivity is 1. The left and right fluids are enclosed by - * surfaces whose emissivity are null excepted for the faces orthogonal to the - * X axis that are fully emissive and whose temperature is known. The medium - * that surrounds the solid cube and the 2 fluids is a solid with a null + * faces on +/-X are in contact with a fluid and their convection coefficient + * is null while their emissivity is 1. The left and right fluids are enclosed + * by surfaces whose emissivity are null excepted for the faces orthogonal to + * the X axis that are fully emissive and whose temperature is known. The + * medium that surrounds the solid cube and the 2 fluids is a solid with a null * conductivity. * * Y (1, 1, 1) diff --git a/src/test_sdis_conducto_radiative_2d.c b/src/test_sdis_conducto_radiative_2d.c @@ -20,6 +20,25 @@ #define UNKNOWN_TEMPERATURE -1 +/* The scene is composed of a solid square whose temperature is unknown. The + * square segments on +/-X are in contact with a fluid and their convection + * coefficient is null while their emissivity is 1. The left and right fluids + * are enclosed by segments whose emissivity are null excepted for the segments + * orthogonal to the X axis that are fully emissive and whose temperature is + * known. The medium that surrounds the solid square and the 2 fluids is a + * solid with a null conductivity. + * + * (1, 1) + * +-----+----------+-----+ (1.5,1,1) + * | |##########| | + * | |##########| | + * 300K | E=1 |##########| E=1 | 310K + * | |##########| | + * | |##########| | + * (-1.5,-1) +-----+----------+-----+ + * (-1,-1) + */ + /******************************************************************************* * Geometry ******************************************************************************/