File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ class WufiFoundationInterface(BaseModel):
745
745
746
746
# -- Unheated Basement
747
747
HeightBasementWallAboveGrade : Optional [wufi_unit .M ] = None
748
- FloorCeilingArea : Optional [wufi_unit .M ] = None
748
+ FloorCeilingArea : Optional [wufi_unit .M2 ] = None
749
749
U_ValueCeilingToUnheatedCellar : Optional [wufi_unit .Watts_per_M2K ] = None
750
750
U_ValueWallAboveGround : Optional [wufi_unit .Watts_per_M2K ] = None
751
751
BasementVolume : Optional [wufi_unit .M3 ] = None
Original file line number Diff line number Diff line change 27
27
wufi_xml_model = WUFIplusProject .parse_obj (wufi_xml_data )
28
28
29
29
# ----------------------------------------------------------------
30
- # # -- 2) Convert the Pydantic WUFI model over to a PHX model
30
+ # -- 2) Convert the Pydantic WUFI model over to a PHX model
31
31
print (f"[green bold]> Converting XML-data to a PHX-Model[/green bold]" )
32
32
phx_project = convert_WUFI_XML_to_PHX_project (wufi_xml_model )
33
33
34
- # # ----------------------------------------------------------------
35
- # # -- 3) Output the PHX model back to a WUFI-XML
34
+ # ----------------------------------------------------------------
35
+ # -- 3) Output the PHX model back to a WUFI-XML
36
36
target_file = TARGET_DIR / xm_source_file_name
37
37
xml_txt = xml_builder .generate_WUFI_XML_from_object (phx_project )
38
38
39
- # # ----------------------------------------------------------------
40
- # # -- 4) Save the XML file
39
+ # ----------------------------------------------------------------
40
+ # -- 4) Save the XML file
41
41
print (f"[bold]> Saving the XML file to: ./{ target_file } [/bold]" )
42
42
xml_txt_to_file .write_XML_text_file (target_file , xml_txt , False )
You can’t perform that action at this time.
0 commit comments