forked from Future-Power-Networks/Simplus-Grid-Tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InstallSimplusGT.m
83 lines (68 loc) · 2.71 KB
/
InstallSimplusGT.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
% This file installs SimplusGT. Users do not need to read or understand the
% codes in this file. Please just run it directly and run it ONCE. Please
% use "UserMain.m" in the root path to run SimplusGT after installation.
% Author(s): Yitong Li, Yunjie Gu
function InstallSimplusGT()
clc
%% Generate msgbox
InstallMsg = 'Installing Simplus Grid Tool. This may take one minute... ';
bar = waitbar(0.3,InstallMsg,'Name','Simplus');
bar.CloseRequestFcn = '';
%% Install
% Change the current folder
fprintf('Changing the current folder to SimplusGT folder...\n')
MfilePath = mfilename('fullpath');
[RootPath,~,~] = fileparts(MfilePath);
cd(RootPath);
% Check the matlab version
fprintf('Checking the Matlab version...\n')
% MatlabVersion = version('-release');
% MatlabVersion = MatlabVersion(1:(end-1));
% MatlabVersionYear = MatlabVersion;
% if str2double(MatlabVersionYear)<2015
% error(['Error: Please use Matlab version 2015a or later!']);
% end
if hex2dec(version('-release')) < hex2dec('2015b')
delete(bar);
StopInstall('Error: Please use Matlab 2015a or later version!');
return;
end
% Check if a previous version of SimplusGT has been installed
fprintf('Checking if the toolbox has been installed before...\n')
if exist('SimplusGT')~=0
delete(bar);
StopInstall(['Error: SimplusGT has been installed on this PC before or SimplusGT lib is opened. Please uninstall the old version first or close the SimplusGT lib.']);
return;
end
% Add folder to path
fprintf('Installing...\n')
addpath(genpath([RootPath,'/Examples'])); % Add "Examples" folder
addpath(genpath([RootPath,'/Library'])); % Add "Library" folder
addpath(genpath([RootPath,'/Documentations'])); % Add "Documentations" folder
addpath(genpath(RootPath)); % Add root path
savepath;
% Waitbar
waitbar(0.6,bar,InstallMsg,'Name','Simplus');
% Convert the lib to the required version of matlab
fprintf('Converting SimplusGT library to the required Matlab version, please wait a minute...\n')
warning('off','all') % Turn off all warnings
load_system('SimplusGT_2015a.slx');
save_system('SimplusGT_2015a.slx','Library/SimplusGT.slx');
close_system('SimplusGT.slx');
warning('on','all') % Turn on all warnings
%%
fprintf('Congratulations!\n')
fprintf('Simplus Grid Tool successfully installed!\n')
fprintf('Please run "UserMain.m" later in the root path for using SimplusGT.\n')
fprintf('Please read manuals in the "Documentations" folder for more information.\n')
%% Remove msgbox
beep;
waitbar(1,bar,InstallMsg,'Name','Simplus');
pause(1);
delete(bar);
msgbox('Simplus Grid Tool successfully installed!','Simplus');
end
function StopInstall(msg)
beep;
uiwait(msgbox(msg,'Simplus','warn','modal'));
end