-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMatlabContamToolbox.m
958 lines (786 loc) · 31.4 KB
/
MatlabContamToolbox.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
%{
Copyright (c) 2018 KIOS Research and Innovation Centre of Excellence
(KIOS CoE), University of Cyprus (www.kios.org.cy)
Licensed under the EUPL, Version 1.1 or – as soon they will be approved
by the European Commission - subsequent versions of the EUPL (the "Licence");
You may not use this work except in compliance with theLicence.
You may obtain a copy of the Licence at: https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12
Unless required by applicable law or agreed to in writing, software distributed
under the Licence is distributed on an "AS IS" basis,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the Licence for the specific language governing permissions and limitations under the Licence.
Author(s) : Marinos Christoloulou, Marios Kyriakou and Alexis Kyriacou
Work address : KIOS Research Center, University of Cyprus
email : [email protected] (Alexis Kyriacou)
Website : http://www.kios.ucy.ac.cy
Last revision : June 2018
%}
function varargout = MatlabContamToolbox(varargin)
% MATLABCONTAMTOOLBOX MATLAB code for MatlabContamToolbox.fig
% MATLABCONTAMTOOLBOX, by itself, creates a new MATLABCONTAMTOOLBOX or raises the existing
% singleton*.
%
% H = MATLABCONTAMTOOLBOX returns the handle to a new MATLABCONTAMTOOLBOX or the handle to
% the existing singleton*.
%
% MATLABCONTAMTOOLBOX('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in MATLABCONTAMTOOLBOX.M with the given input argumentsC.
%
% MATLABCONTAMTOOLBOX('Property','Value',...) creates a new MATLABCONTAMTOOLBOX or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before MatlabContamToolbox_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to MatlabContamToolbox_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
% Edit the above text to modify the response to help MatlabContamToolbox
% Last Modified by GUIDE v2.5 12-May-2018 11:57:19
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @MatlabContamToolbox_OpeningFcn, ...
'gui_OutputFcn', @MatlabContamToolbox_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before MatlabContamToolbox is made visible.
function MatlabContamToolbox_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line argumentsC to MatlabContamToolbox (see VARARGIN)
% Clear Building properties and other variables from base workspace
evalin( 'base', 'clear' )
clc % Clear the command window
% Choose default command line output for MatlabContamToolbox
handles.output = hObject;
% Position the figure in the center of the screen
movegui(handles.MatlabContamToolbox,'center')
% To include all the folders and subfolders inside the main folder
path(path,genpath(pwd));
% KIOS Logo
rgb= imread('KIOS.jpg');
axes(handles.axes2)
image(rgb)
axis on
set(handles.axes2,'xtick',[]);
set(handles.axes2,'ytick',[]);
set(handles.axes2,'Parent',handles.axes1a)
% uistack(handles.axes2, 'top')
% UCY Logo
rgb= imread('ucy.jpg');
axes(handles.axes3)
image(rgb)
axis on
set(handles.axes3,'xtick',[]);
set(handles.axes3,'ytick',[]);
set(handles.axes3,'Parent',handles.axes1a)
% Tepak Logo
rgb= imread('tepak2.png');
axes(handles.axes4)
image(rgb)
axis on
set(handles.axes4,'xtick',[]);
set(handles.axes4,'ytick',[]);
set(handles.axes4,'Parent',handles.axes1a)
set(handles.axes1,'Parent',handles.axes1a)
%Set off until open CONTAM project file
set(handles.LevelUp, 'Enable', 'off')
set(handles.LevelDown, 'Enable', 'off')
set(handles.ZoneID, 'Enable', 'off')
set(handles.PathID, 'Enable', 'off')
set(handles.CreateScenarios, 'Enable', 'off')
handles.Algorithms.Enable='off';
handles.SimulateScenarios.Enable='off';
set(handles.SetDistributedSubsystems, 'Enable', 'off')
handles.ResultsTab.Enable='off';
handles.DefaultBuildingProperties.Enable='off';
set(handles.CDIResults, 'Enable', 'off')
set(handles.ComputeImpactMatrix, 'Enable', 'off')
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
handles.ResultsInformationListbox.Visible='off';
handles.SaveResults.Visible='off';
handles.DisplayResults.Visible='off';
handles.LoadResults.Visible='off';
handles.RemoveFiles.Visible='off';
handles.ChooseSimulationData.Visible='off';
handles.RunSimulation.Visible='off';
handles.LoadScenariosM.Visible='off';
handles.ScenariosFileTextM.Visible='off';
handles.ResultsFileText.Visible='off';
handles.DisplayResults.Visible='off';
handles.ResultsListbox.Visible='off';
% Enable Building Properties button
handles.DefaultBuildingProperties.Enable='off';
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes MatlabContamToolbox wait for user response (see UIRESUME)
% uiwait(handles.MatlabContamToolbox);
% --- Outputs from this function are returned to the command line.
function varargout = MatlabContamToolbox_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% --------------------------------------------------------------------
function Open_Callback(hObject, eventdata, handles)
% hObject handle to Open (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Clear Building properties and other variables from base workspace
evalin( 'base', 'clear' )
[ProjectName,ProjectPath] = uigetfile('PROJECTS\*.prj', ...
'Select a CONTAM Project File (*.prj)');
if ProjectName~=0
msg = '>> Loading CONTAM Project ...';
pause(0.2)
% reads Data from CONTAM project file
B = readPRJ(ProjectPath,ProjectName);
if ~strcmp(B.X.project{1}(1:11),'ContamW 3.1')
uiwait(msgbox(['The version of the sellected project file (i.e.,ContamW ' X.project{1}(8:11)...
') is not supported. Please use a CONTAM version 3.1 project file.'], 'Error', 'error'))
return;
end
set(handles.MatlabContamToolbox, 'Name', ['Matlab - CONTAM Toolbox: ',B.ProjectName])
if B.nLevel>1
set(handles.LevelUp, 'Enable', 'on', 'Visible', 'on')
else
set(handles.LevelUp, 'Enable', 'off' )
set(handles.LevelDown, 'Enable', 'off')
end
set(handles.ZoneID, 'Enable', 'on')
set(handles.PathID, 'Enable', 'on')
set(handles.CreateScenarios, 'Enable', 'on')
handles.Algorithms.Enable='on';
handles.SimulateScenarios.Enable='on';
set(handles.SetDistributedSubsystems, 'Enable', 'on')
set(handles.CDIResults, 'Enable', 'on')
set(handles.ComputeImpactMatrix, 'Enable', 'on')
handles.ResultsTab.Enable='on';
handles.DefaultBuildingProperties.Enable='on';
handles.CDI0=DefaultParametersCDI;
handles.B = B;
if handles.axes2~=0
delete(handles.axes2);
delete(handles.axes3);
delete(handles.axes4);
handles.axes2 = 0;
handles.axes3 = 0;
handles.axes4 = 0;
end
% The plotB function plots the building schematic
[B.Size B.X1 B.Y1 handles.cmp B.ZoneID] = plotB(B.X,handles.axes1,...
handles.axes5,...
B.LevelCounter,...
B.Decomposition,...
B.clr,...
B.WindDirection,...
B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
% Enable Building Properties button
handles.DefaultBuildingProperties.Enable='on';
handles.AllPossiblePartitions={};
% Update handles structure
guidata(hObject, handles);
end
% --- Executes on button press in ZoneID.
function ZoneID_Callback(hObject, eventdata, handles)
% hObject handle to ZoneID (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of ZoneID
B = handles.B;
temp_obj=findobj(0,'Name','Sensor Placement Results');
if ~isempty(temp_obj)
figure2_handles=guidata(temp_obj);
figure2_handles.B.LevelCounter=B.LevelCounter;
figure2_handles.ZoneID=handles.ZoneID.Value;
figure2_handles.PathID=handles.PathID.Value;
SensorPlacementResults('VisualizeInMainWindow',figure2_handles)
else
plotB(B.X,handles.axes1,...
handles.axes5,...
B.LevelCounter,...
B.Decomposition,...
B.clr,...
B.WindDirection,...
B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
end
% --- Executes on button press in PathID.
function PathID_Callback(hObject, eventdata, handles)
% hObject handle to PathID (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of PathID
B = handles.B;
temp_obj=findobj(0,'Name','Sensor Placement Results');
if ~isempty(temp_obj)
figure2_handles=guidata(temp_obj);
figure2_handles.B.LevelCounter=B.LevelCounter;
figure2_handles.PathID=handles.PathID.Value;
figure2_handles.ZoneID=handles.ZoneID.Value;
SensorPlacementResults('VisualizeInMainWindow',figure2_handles)
else
plotB(B.X,handles.axes1,...
handles.axes5,...
B.LevelCounter,...
B.Decomposition,...
B.clr,...
B.WindDirection,...
B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
end
% --- Executes on button press in LevelUp.
function LevelUp_Callback(hObject, eventdata, handles)
% hObject handle to LevelUp (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
B = handles.B;
B.LevelCounter = B.LevelCounter+1; % goes up one level
temp_obj=findobj(0,'Name','Sensor Placement Results');
if ~isempty(temp_obj)
figure2_handles=guidata(temp_obj);
figure2_handles.B.LevelCounter=B.LevelCounter;
figure2_handles.ZoneID=handles.ZoneID.Value;
figure2_handles.PathID=handles.PathID.Value;
% SensorPlacementResults(VisualizeInMainWindow(figure2.handles))
SensorPlacementResults('VisualizeInMainWindow',figure2_handles)
else
% plots the building schematic
plotB(B.X,handles.axes1,...
handles.axes5,...
B.LevelCounter,...
B.Decomposition,...
B.clr,...
B.WindDirection,...
B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
end
% if last level
if B.LevelCounter==B.nLevel
set(handles.LevelUp, 'Enable', 'off')
else
set(handles.LevelUp, 'Enable', 'on')
end
% if not first level
if B.LevelCounter ~= 1
set(handles.LevelDown, 'Enable', 'on')
else
set(handles.LevelDown, 'Enable', 'off')
end
handles.B = B;
guidata(hObject, handles);
% --- Executes on button press in LevelDown.
function LevelDown_Callback(hObject, eventdata, handles)
% hObject handle to LevelDown (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
B = handles.B;
B.LevelCounter = B.LevelCounter-1; % goes down one level
temp_obj=findobj(0,'Name','Sensor Placement Results');
if ~isempty(temp_obj)
figure2_handles=guidata(temp_obj);
figure2_handles.B.LevelCounter=B.LevelCounter;
figure2_handles.ZoneID=handles.ZoneID.Value;
figure2_handles.PathID=handles.PathID.Value;
% SensorPlacementResults(VisualizeInMainWindow(figure2.handles))
SensorPlacementResults('VisualizeInMainWindow',figure2_handles)
else
% plots the building schematic
plotB(B.X,handles.axes1,...
handles.axes5,...
B.LevelCounter,...
B.Decomposition,...
B.clr,...
B.WindDirection,...
B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
end
% if last level
if B.LevelCounter==B.nLevel
set(handles.LevelUp, 'Enable', 'off')
else
set(handles.LevelUp, 'Enable', 'on')
end
% if not first level
if B.LevelCounter ~= 1
set(handles.LevelDown, 'Enable', 'on')
else
set(handles.LevelDown, 'Enable', 'off')
end
handles.B = B;
guidata(hObject, handles);
% --------------------------------------------------------------------
function CDIParameters_Callback(hObject, eventdata, handles)
% hObject handle to CDIParameters (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
B = handles.B;
%Compute Nominal Amat
[Amat Qext Flows] = computeAmatrix(B,B.WindDirection,...
B.WindSpeed,...
B.AmbientTemperature,...
B.AmbientPressure,...
B.v, B.Temp, B.Openings);
if strcmp(eventdata.Source.Tag,'Centralized')
handles.CDI0.ActiveDistributed=0;
elseif strcmp(eventdata.Source.Tag,'Distributed')
if isempty(handles.CDI0.nSub) || isempty(handles.CDI0.Subsystems{1})
selection = questdlg(['Subsystems have to be defined before running Distributed CDI. Do you wish to define them now?'],...
'Close Request Function',...
'Yes','No','Yes');
switch selection,
case 'No',
return
case 'Yes',
% SetDistributedSubsystems_Callback(hObject, eventdata, handles);
arguments1.CDI = handles.CDI0;
arguments1.B = handles.B;
if isfield(handles,'AllPossiblePartitions')
if ~isempty(handles.AllPossiblePartitions)
arguments1.AllPossiblePartitions=handles.AllPossiblePartitions;
else
arguments1.AllPossiblePartitions={};
end
else
arguments1.AllPossiblePartitions={};
end
[A B C] = SetDistributedSubsystemsGUI(arguments1);
if ~any(any(B.B.Decomposition))
return
end
handles.CDI0 = B.CDI;
handles.B = B.B;
handles.AllPossiblePartitions=C;
if isfield(handles.B.X,'Sim')
handles.B.X = rmfield(handles.B.X ,'Sim');
end
% plots the building schematic
plotB(handles.B.X,handles.axes1,...
handles.axes5,...
handles.B.LevelCounter,...
handles.B.Decomposition,...
handles.B.clr,...
handles.B.WindDirection,...
handles.B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
end
end
handles.CDI0.ActiveDistributed=1;
end
% argumentsC.AlgorithmSelection=eventdata.Source.Parent.Tag;
argumentsC.CDI0=handles.CDI0;
argumentsC.B=handles.B; % Nominal Building Paramenters
argumentsC.Amat = Amat; % Nominal A matrix
clear B
guidata(hObject, handles);
[A B]=CDIParametersGUI3(argumentsC);
handles.CDI0 = B.CDI0;
handles.B = B.B;
guidata(hObject, handles);
% var=CDIParameter(handles)
% --------------------------------------------------------------------
function RunCDIalgorithm_Callback(hObject, eventdata, handles)
% hObject handle to RunCDIalgorithm (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(findobj('type','figure','name','Run Multiple CDI'))
load([pwd,'\RESULTS\','pathname.File'],'pathname','-mat');
if exist('File0.File','file')==2
load([pwd,'\RESULTS\','File0.File'],'-mat');
if exist([pathname,file0],'file')==2
if ~isempty(file0)
load([pathname,file0],'-mat');
else
B.ProjectName = handles.B.ProjectName;
end
else
B.ProjectName=[];
end
else
file0=[];
end
argumentsC.file0=file0(1:end-2);
argumentsC.B=handles.B;
argumentsC.CDI0=handles.CDI0;
argumentsC.AlgorithmSelection=eventdata.Source.Tag;
[A B] = RunMultipleCDIGUI(argumentsC);
guidata(hObject, handles);
% --------------------------------------------------------------------
function ComputeImpactMatrix_Callback(hObject, eventdata, handles)
% hObject handle to ComputeImpactMatrix (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
load([pwd,'\RESULTS\','pathname.File'],'pathname','-mat');
if exist('File0.File','file')==2
load([pwd,'\RESULTS\','File0.File'],'-mat');
if exist([pathname,file0],'file')==2
if ~isempty(file0)
load([pathname,file0],'-mat');
else
B.ProjectName = handles.B.ProjectName;
end
else
B.ProjectName=[];
end
else
file0=[];
end
argumentsC.file0=file0(1:end-2);
argumentsC.B=handles.B;
[A B]=ComputeImpactMatricesGui(argumentsC);
guidata(hObject, handles);
% --------------------------------------------------------------------
function SolveSensorPlacement_Callback(hObject, eventdata, handles)
% hObject handle to SolveSensorPlacement (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(findobj('type','figure','name','Solve Sensor Placement'))
load([pwd,'\RESULTS\','pathname.File'],'pathname','-mat');
if exist('File0.File','file')==2
load([pwd,'\RESULTS\','File0.File'],'-mat');
if exist([pathname,file0],'file')==2
if ~isempty(file0)
load([pathname,file0],'-mat');
if exist([pathname,file0(1:end-2),'.w'],'file')==2
else
B.ProjectName=[];
end
else
B.ProjectName = handles.B.ProjectName;
end
else
B.ProjectName=[];
end
else
file0=[];
end
argumentsC.file0=file0(1:end-2);
argumentsC.B=handles.B;
[A B]=SolveSensorPlacementGui(argumentsC); % Solve Sensor Placement
guidata(hObject, handles);
% --------------------------------------------------------------------
function CreateScenarios_Callback(hObject, eventdata, handles)
% hObject handle to CreateScenarios (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[A B] = CreateScenariosGui(handles.B);
handles.B = B.B;
if isfield(handles.B,'X')
if isfield(handles.B.X,'Sim')
handles.B.X = rmfield(handles.B.X ,'Sim');
end
end
% plots the building schematic
plotB(handles.B.X,handles.axes1,...
handles.axes5,...
handles.B.LevelCounter,...
handles.B.Decomposition,...
handles.B.clr,...
handles.B.WindDirection,...
handles.B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
guidata(hObject, handles);
% --------------------------------------------------------------------
function RunMultipleScenarios_Callback(hObject, eventdata, handles)
% hObject handle to RunMultipleScenarios (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(findobj('type','figure','name','Run Multiple Scenarios'))
load([pwd,'\RESULTS\','pathname.File'],'pathname','-mat');
if exist('File0.File','file')==2
load([pwd,'\RESULTS\','File0.File'],'-mat');
if exist([pathname,file0],'file')==2
if ~isempty(file0)
load([pathname,file0],'-mat');
else
B.ProjectName = handles.B.ProjectName;
end
else
B.ProjectName=[];
end
else
file0=[];
end
for i=1:handles.B.nZones
handles.B.clr{i} = 'w'; % color for the zone area
end
argumentsC.file0=file0(1:end-2);
argumentsC.B=handles.B;
[A B] = runMultipleScenariosGui(argumentsC);
guidata(hObject, handles);
% --------------------------------------------------------------------
function SetDistributedSubsystems_Callback(hObject, eventdata, handles)
% hObject handle to SetDistributedSubsystems (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
argumentsC.CDI = handles.CDI0;
argumentsC.B = handles.B;
if isfield(handles,'AllPossiblePartitions')
if ~isempty(handles.AllPossiblePartitions)
argumentsC.AllPossiblePartitions=handles.AllPossiblePartitions;
else
argumentsC.AllPossiblePartitions={};
end
else
argumentsC.AllPossiblePartitions={};
end
[A,B,C] = SetDistributedSubsystemsGUI(argumentsC);
handles.CDI0 = B.CDI;
handles.B = B.B;
handles.AllPossiblePartitions=C;
if isfield(handles.B.X,'Sim')
handles.B.X = rmfield(handles.B.X ,'Sim');
end
% plots the building schematic
plotB(handles.B.X,handles.axes1,...
handles.axes5,...
handles.B.LevelCounter,...
handles.B.Decomposition,...
handles.B.clr,...
handles.B.WindDirection,...
handles.B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
guidata(hObject, handles);
% --------------------------------------------------------------------
function SensorData_Callback(hObject, eventdata, handles)
% hObject handle to SensorData (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[A B]=SensorDataGUI(handles.B);
handles.B = B;
if isfield(handles.B.X,'Sim')
handles.B.X = rmfield(handles.B.X ,'Sim');
end
% plots the building schematic
plotB(handles.B.X,handles.axes1,...
handles.axes5,...
handles.B.LevelCounter,...
handles.B.Decomposition,...
handles.B.clr,...
handles.B.WindDirection,...
handles.B.C,...
get(handles.ZoneID,'Value'),...
get(handles.PathID,'Value'));
guidata(hObject, handles);
% --------------------------------------------------------------------
function CDIResults_Callback(hObject, eventdata, handles)
% hObject handle to CDIResults (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(findobj('type','figure','name','CDI Results'))
load([pwd,'\RESULTS\','pathname.File'],'pathname','-mat');
if exist('File0.File','file')==2
load([pwd,'\RESULTS\','File0.File'],'-mat');
if exist([pathname,file0],'file')==2
if ~isempty(file0)
load([pathname,file0],'-mat');
else
B.ProjectName = handles.B.ProjectName;
end
else
B.ProjectName=[];
end
else
file0=[];
end
argumentsC.file0=file0(1:end-2);
argumentsC.B=handles.B;
CDIResultsGUI2(argumentsC);
% --------------------------------------------------------------------
function ScenarioResults_Callback(hObject, eventdata, handles)
% hObject handle to ScenarioResults (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(findobj('type','figure','name','Scenario Results'))
load([pwd,'\RESULTS\','pathname.File'],'pathname','-mat');
if exist('File0.File','file')==2
load([pwd,'\RESULTS\','File0.File'],'-mat');
if exist([pathname,file0],'file')==2
if ~isempty(file0)
load([pathname,file0],'-mat');
else
B.ProjectName = handles.B.ProjectName;
end
else
B.ProjectName=[];
end
else
file0=[];
end
argumentsC.file0=file0(1:end-2);
argumentsC.B=handles.B;
ScenarioResultsGUI(argumentsC);
% --- Executes on button press in ChooseSimulationData.
function ChooseSimulationData_Callback(hObject, eventdata, handles)
% hObject handle to ChooseSimulationData (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
argumentsC.Sim = handles.Sim;
argumentsC.B = handles.BR;
[A B] = SimulationDataGUI(argumentsC);
handles.Sim = B.Sim;
% Update handles structure
guidata(hObject, handles);
% --- Executes on button press in DisplayResults.
function DisplayResults_Callback(hObject, eventdata, handles)
% hObject handle to DisplayResults (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
file0 = get(handles.ScenariosFileTextM,'String');
fileR = get(handles.ResultsFileText,'String');
[Path Name Extension] = fileparts(fileR);
SceNum = regexp(Extension,'\d+','match');
Extn = Extension(1:end-length(SceNum{1}));
argumentsC.pathName = handles.pathName;
argumentsC.file0=file0;
argumentsC.fileR=fileR;
switch Extn
case '.c'
ScenarioResultsGUI(argumentsC);
case '.cdi'
CDIResultsGUI2(argumentsC);
end
% --------------------------------------------------------------------
function Save_ClickedCallback(hObject, eventdata, handles)
% hObject handle to Save (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
F = getframe(handles.axes1);
[im,map] = frame2im(F);
if isfield(handles, 'pathfileR')
[Path Name Extension] = fileparts(handles.pathfileR);
[file0,pathname] = uiputfile([Path,'\','*.png'],'Save Results',[Path,'\',Name,'.png']);
else
if isfield(handles, 'B')
[file0,pathname] = uiputfile([pwd,'\RESULTS\','*.png'],'Save Results',[pwd,'\RESULTS\',handles.B.ProjectName(1:end-4),'.png']);
else
warndlg('Save failed. No building model has been loaded.','! Warning !')
return
end
end
if isnumeric(file0)
file0=[];
end
if ~isempty((file0))
imwrite(im,[pathname,file0]);
end
% --------------------------------------------------------------------
function DefaultBuildingProperties_Callback(hObject, eventdata, handles)
% hObject handle to DefaultBuildingProperties (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
setDefaultBuildingPropertiesWorkspace(handles.B)
openvar('DefaultBuildingProperties')
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function Algorithms_Callback(hObject, eventdata, handles)
% hObject handle to Algorithms (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function Centralized_Callback(hObject, eventdata, handles)
% hObject handle to Centralized (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function Distributed_Callback(hObject, eventdata, handles)
% hObject handle to Distributed (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function SensorPlacementResults_Callback(hObject, eventdata, handles)
% hObject handle to SensorPlacementResults (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(findobj('type','figure','name','CDI Results'))
load([pwd,'\RESULTS\','pathname.File'],'pathname','-mat');
if exist('File0.File','file')==2
load([pwd,'\RESULTS\','File0.File'],'-mat');
if exist([pathname,file0],'file')==2
if ~isempty(file0)
load([pathname,file0],'-mat');
temp_file_name=regexp(file0,'\.','split');
filey=[temp_file_name{1} '.y0'];
if exist([pathname,filey],'file')==2
if ~isempty(filey)
argumentsC.filey=filey;
end
else
argumentsC.filey=[];
end
else
B.ProjectName = handles.B.ProjectName;
end
else
B.ProjectName=[];
end
else
file0=[];
end
argumentsC.file0=file0(1:end-2);
argumentsC.B=handles.B;
argumentsC.axes1=handles.axes1;
argumentsC.axes5=handles.axes5;
argumentsC.ZoneID=get(handles.ZoneID,'Value');
argumentsC.PathID=get(handles.PathID,'Value');
handles.File.Enable='off';
handles.SimulateScenarios.Enable='off';
handles.Algorithms.Enable='off';
handles.Results.Enable='off';
SensorPlacementResults(argumentsC);
% --------------------------------------------------------------------
function File_Callback(hObject, eventdata, handles)
% hObject handle to File (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function ResultsTab_Callback(hObject, eventdata, handles)
% hObject handle to ResultsTab (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function About_Callback(hObject, eventdata, handles)
% hObject handle to About (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
about;
% --------------------------------------------------------------------
function Instructions_Callback(hObject, eventdata, handles)
% hObject handle to Instructions (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
web('Instructions.html');
% --------------------------------------------------------------------
function Exit_Callback(hObject, eventdata, handles)
% hObject handle to Exit (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function Help_Callback(hObject, eventdata, handles)
% hObject handle to Exit (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)