forked from joaoantoniocardoso/OpenProp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenprop.m
More file actions
executable file
·60 lines (55 loc) · 4.37 KB
/
openprop.m
File metadata and controls
executable file
·60 lines (55 loc) · 4.37 KB
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
clear global; clear all; close all; clc;
disp('% ----------------------------------------------------------------------- %')
disp('% %')
disp('% 0111000 %')
disp('% 100 1 100 001 %')
disp('% 10 1 1 1 00 %')
disp('% 01 1 1 1 0 %')
disp('% 0 1 1 1 1 1 1 0 %')
disp('% 0 1 1 1 1 1 0 %')
disp('% 0 1 1 1 1 1 0 %')
disp('% 0 1 1 1 1 0 1 0 %')
disp('% 0 1 1 1 0 1 0 %')
disp('% 01 1 1 1 1 0 %')
disp('% 0 0 1 0 1 0 %')
disp('% 0 1 0 %')
disp('% 10010 0 1101111110111 %')
disp('% 10 1 1 1111111111 11 11 %')
disp('% 0 1 1 1 11111111101011010111 %')
disp('% 01 11 11111111 1 1 1 110 %')
disp('% 011 1 1 111111110011 1 1 1 110 %')
disp('% 0 11 1 1 1 111 0 1 1 1 10 %')
disp('% 0 1 11 1 0 1 1 1 1 1 1 0 %')
disp('% 1 11 1 1 11 0 1 1 1 1 11 %')
disp('% 0 1 1 0 011 1 1 1 10 %')
disp('% 10 1 1 0 0 1 1 1 11 %')
disp('% 10 01 01 10 %')
disp('% 10001 001 100 %')
disp('% 111 %')
disp('% %')
disp('% ____ _____ %')
disp('% / __ \ | __ \ %')
disp('% | | | |_ __ ___ _ __ | |__) | __ ___ _ __ %')
disp('% | | | | ''_ \ / _ \ ''_ \| ___/ ''__/ _ \| ''_ \ %')
disp('% | |__| | |_) | __/ | | | | | | | (_) | |_) | %')
disp('% \____/| .__/ \___|_| |_|_| |_| \___/| .__/ %')
disp('% | | | | %')
disp('% |_| |_| %')
disp('% %')
disp('% An integrated rotor design and analysis tool. %')
disp('% %')
disp('% %')
disp('% Copyright (C) 2011, Brenden Epps. %')
disp('% %')
disp('% This program is free software; you can redistribute it and/or modify it %')
disp('% under the terms of the GNU General Public License as published by the %')
disp('% Free Software Foundation. %')
disp('% %')
disp('% This program is distributed in the hope that it will be useful, but %')
disp('% WITHOUT ANY WARRANTY; without even the implied warranty of %')
disp('% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. %')
disp('% See the GNU General Public License for more details. %')
disp('% %')
disp('% ----------------------------------------------------------------------- %')
addpath SourceCode
run('SourceCode/OpenPropSingle.m')