forked from FelixPerezCicala/modRankineSCC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.m
31 lines (23 loc) · 821 Bytes
/
run.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
function run()
% Run program
%%%%%%%%%
% Copyright (c) 2017, Félix Pérez Cicala
% This program was developed as a Master’s degree final project. The
% project's name was:
% Modelizacion de ciclos Rankine mediante el método de Spencer, Cotton y
% Cannon
% Modelling of Rankine cycles using the Spencer, Cotton and Cannon method
% The supervisor of this project was Domingo Santana Santana (Universidad Carlos
% III de Madrid)
% This program has been tested in R2016a. It is not guaranteed it will work
% in any version preceding R2016a, and it will not work in any version
% preceding R2014
%%%%%%%%%
% Add all folders to path, and subfolders
% Current file pathname
folder = fileparts(which(mfilename));
% Add that folder plus all subfolders to the path.
addpath(genpath(folder));
% Open first GUI
gui_run();
end