-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinit_point.m
49 lines (38 loc) · 903 Bytes
/
init_point.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
function [P] = init_point()
global empty_point
if ~isempty(empty_point)
P = empty_point;
else
P.p = [];
P.pT = [];
P.pTrel = [];
P.T = [];
P.TT = [];
P.TTrel = [];
P.TIS = [];
P.h = [];
P.hT = [];
P.hTrel = [];
P.hIS = 0;%[];
P.cp = [];
P.cv = [];
P.gamma = [];
P.k = [];
P.rho = [];
P.mu = [];
P.v = [];
P.w = [];
P.a = [];
P.M = [];
P.Mrel = [];
P.s = [];
P.sT = [];
%% non thermodynamical properties
P.b = [];
P.c = [];
P.nBlades = [];
P.chord_su_b = [];
P.span = [];
empty_point = P;
end
end