Skip to content

Commit 1ddd229

Browse files
author
vikrants
committed
updates to visualization
1 parent 10735fe commit 1ddd229

21 files changed

+523
-13009
lines changed
1.55 KB
Loading
92 Bytes
Binary file not shown.
3 Bytes
Binary file not shown.

Overview/FunctionReferenceList.mlx

135 Bytes
Binary file not shown.

Overview/html/FunctionReferenceList.html

Lines changed: 21 additions & 18 deletions
Large diffs are not rendered by default.

ScriptsData/Parts/building_with_solar_load.xml

Lines changed: 295 additions & 12844 deletions
Large diffs are not rendered by default.
-30.2 KB
Binary file not shown.

Workflow/BuildingHeatLoadEstimation/createSimpleHouseWithInclinedRoof.m

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,26 @@
6161

6262
floorPlan = defineBuildingFloorPlan(Apartments={apartment});
6363

64-
visualizeBuildingWallsToAddWindowsVents(FloorPlan=floorPlan);
64+
tblWinVentData = visualizeBuildingWallsToAddWindowsVents(FloorPlan=floorPlan,Plot=false);
6565
windowData = [1,2,0.50; ...
6666
2,3,0.50; ...
6767
3,4,0.50;...
6868
4,1,0.50];
6969
disp("Adding windows on all 4 sides of the building");
70+
for i = 1:size(windowData,1)
71+
id = find(and(tblWinVentData.("From Point")==windowData(i,1),...
72+
tblWinVentData.("To Point")==windowData(i,2)));
73+
for j = 1:size(id,1)
74+
tblWinVentData.("Window (0-1)")(id(j,1),1) = windowData(i,3);
75+
end
76+
end
77+
78+
disp(" "); disp("*** Updated window and vent data"); disp(" ");
79+
figure("Name","Updated Window and Vent Data");
80+
disp(tblWinVentData);
81+
7082
updatedFloorPlan = addOpeningOnWallSection(FloorPlan=floorPlan,...
71-
Data=windowData,...
72-
Type="window");
83+
Data=tblWinVentData);
7384

7485
bldgFlatRoof = generateBuilding3Dlayout(BuildingName="BuildingUnit",...
7586
BuildingFloorPlan=updatedFloorPlan,...
-2.05 KB
Binary file not shown.
-7.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)