@@ -379,7 +379,7 @@ def generate_archetype(self):
379379 outer_wall .orientation = value [1 ]
380380 outer_wall .area = (
381381 self .facade_estimation_factors [self .building_age_group ]["ow1" ]
382- * type_bldg_area
382+ * zone . area
383383 ) / len (self ._outer_wall_names_1 )
384384
385385 if self .facade_estimation_factors [self .building_age_group ]["ow2" ] != 0 :
@@ -396,7 +396,7 @@ def generate_archetype(self):
396396 outer_wall .orientation = value [1 ]
397397 outer_wall .area = (
398398 self .facade_estimation_factors [self .building_age_group ]["ow2" ]
399- * type_bldg_area
399+ * zone . area
400400 ) / len (self ._outer_wall_names_2 )
401401
402402 if self .facade_estimation_factors [self .building_age_group ]["win1" ] != 0 :
@@ -413,7 +413,7 @@ def generate_archetype(self):
413413 window .orientation = value [1 ]
414414 window .area = (
415415 self .facade_estimation_factors [self .building_age_group ]["win1" ]
416- * type_bldg_area
416+ * zone . area
417417 ) / len (self .window_names_1 )
418418
419419 if self .facade_estimation_factors [self .building_age_group ]["win2" ] != 0 :
@@ -430,7 +430,7 @@ def generate_archetype(self):
430430 window .orientation = value [1 ]
431431 window .area = (
432432 self .facade_estimation_factors [self .building_age_group ]["win2" ]
433- * type_bldg_area
433+ * zone . area
434434 ) / len (self .window_names_2 )
435435
436436 if self .facade_estimation_factors [self .building_age_group ]["gf1" ] != 0 :
@@ -448,7 +448,7 @@ def generate_archetype(self):
448448 gf .orientation = value [1 ]
449449 gf .area = (
450450 self .facade_estimation_factors [self .building_age_group ]["gf1" ]
451- * type_bldg_area
451+ * zone . area
452452 ) / len (self .ground_floor_names_1 )
453453
454454 if self .facade_estimation_factors [self .building_age_group ]["gf2" ] != 0 :
@@ -466,7 +466,7 @@ def generate_archetype(self):
466466 gf .orientation = value [1 ]
467467 gf .area = (
468468 self .facade_estimation_factors [self .building_age_group ]["gf2" ]
469- * type_bldg_area
469+ * zone . area
470470 ) / len (self .ground_floor_names_2 )
471471
472472 if self .facade_estimation_factors [self .building_age_group ]["rt1" ] != 0 :
@@ -484,7 +484,7 @@ def generate_archetype(self):
484484 rt .orientation = value [1 ]
485485 rt .area = (
486486 self .facade_estimation_factors [self .building_age_group ]["rt1" ]
487- * type_bldg_area
487+ * zone . area
488488 ) / len (self .roof_names_1 )
489489
490490 if self .facade_estimation_factors [self .building_age_group ]["rt2" ] != 0 :
@@ -502,7 +502,7 @@ def generate_archetype(self):
502502 rt .orientation = value [1 ]
503503 rt .area = (
504504 self .facade_estimation_factors [self .building_age_group ]["rt2" ]
505- * type_bldg_area
505+ * zone . area
506506 ) / len (self .roof_names_2 )
507507
508508 if self .facade_estimation_factors [self .building_age_group ]["door" ] != 0 :
@@ -520,7 +520,7 @@ def generate_archetype(self):
520520 door .orientation = value [1 ]
521521 door .area = (
522522 self .facade_estimation_factors [self .building_age_group ]["door" ]
523- * type_bldg_area
523+ * zone . area
524524 ) / len (self .door_names )
525525
526526 for key , value in self .inner_wall_names .items ():
0 commit comments