city_generator2

Generated conformal 3D meshes representing a city
git clone git://git.meso-star.fr/city_generator2.git
Log | Files | Refs | README | LICENSE

commit ea0cd087cef266cffc5eaa2af1cd5b4fb419e83d
parent 4006df469213579e5a6830450e653757c7eae062
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Mon, 27 Jan 2025 17:05:54 +0100

Fix stardis output for SOLID-FLUID connections

Diffstat:
Msrc/cg_stardis_model.h | 24+++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/src/cg_stardis_model.h b/src/cg_stardis_model.h @@ -239,12 +239,34 @@ "export cavity_TINIT=273\n" \ "export cavity_T_IMPOSED=UNKNOWN\n" +#define GENERIC_ATTIC_CAVITY_VARS \ + "# Generic FLUID ATTIC CAVITY properties.\n" \ + "export attic_cavity_RHO=1.25\n" \ + "export attic_cavity_CP=1000\n" \ + "export attic_cavity_TINIT=273\n" \ + "export attic_cavity_T_IMPOSED=UNKNOWN\n" + +#define GENERIC_HABITABLE_CAVITY_VARS \ + "# Generic FLUID HABITABLE CAVITY properties.\n" \ + "export habitable_cavity_RHO=1.25\n" \ + "export habitable_cavity_CP=1000\n" \ + "export habitable_cavity_TINIT=273\n" \ + "export habitable_cavity_T_IMPOSED=UNKNOWN\n" + +#define GENERIC_CRAWLSPACE_CAVITY_VARS \ + "# Generic FLUID CRAWLSPACE CAVITY properties.\n" \ + "export crawlspace_cavity_RHO=1.25\n" \ + "export crawlspace_cavity_CP=1000\n" \ + "export crawlspace_cavity_TINIT=273\n" \ + "export crawlspace_cavity_T_IMPOSED=UNKNOWN\n" + #define GENERIC_SFC_VARS \ "# Generic SOLID-FLUID CONNECTION properties.\n" \ "export SFC_TREF=293\n" \ "export SFC_EMISSIVITY=0.9\n" \ "export SFC_SPEC_FRACTION=0\n" \ - "export SFC_H=5\n" + "export SFC_H=5\n" \ + "export SFC_TEXT=273\n" #define GENERIC_B_WALL_VARS \ "# Generic WALL BOUNDARY properties.\n" \