-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_fold_save_pic.m
130 lines (113 loc) · 5.27 KB
/
create_fold_save_pic.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
function [] = create_fold_save_pic(wingtype, folder_vec, plot_type)
% this function produces the directory depending on inputs and modality (no title
% for papers, with title for analysis)
if wingtype == "hard"
if folder_vec(1) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '_', plot_type, '/', 'CL_CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '/CL_CD_plot/'));
end
end
if folder_vec(2) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '_', plot_type, '/', 'CL_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '/CL_plot/'));
end
end
if folder_vec(3) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '_', plot_type, '/', 'CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '/CD_plot/'));
end
end
if folder_vec(4) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '_', plot_type, '/', 'avCL_avCD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '/avCL_avCD_plot/'));
end
end
if folder_vec(5) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '_', plot_type, '/', 'medianCL_CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_hardwing/', date, '/medianCL_CD_plot/'));
end
end
elseif wingtype == "soft"
if folder_vec(1) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '_', plot_type, '/', 'avCL_avCD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '/avCL_avCD_plot/'));
end
end
if folder_vec(2) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '_', plot_type, '/', 'CL_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '/CL_plot/'));
end
end
if folder_vec(3) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '_', plot_type, '/', 'CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '/CD_plot/'));
end
end
if folder_vec(4) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '_', plot_type, '/', 'avCL_avCD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '/avCL_avCD_plot/'));
end
end
if folder_vec(5) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '_', plot_type, '/', 'medianCL_CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softwing/', date, '/medianCL_CD_plot/'));
end
end
elseif wingtype == "soft_hard"
if folder_vec(1) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '_', plot_type, '/', 'CL_CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '/CL_CD_plot/'));
end
end
if folder_vec(2) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '_', plot_type, '/', 'CL_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '/CL_plot/'));
end
end
if folder_vec(3) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '_', plot_type, '/', 'CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '/CD_plot/'));
end
end
if folder_vec(4) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '_', plot_type, '/', 'avCL_avCD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '/avCL_avCD_plot/'));
end
end
if folder_vec(5) == 1
if plot_type == "no_title"
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '_', plot_type, '/', 'medianCL_CD_plot/'));
else
[~, ~, ~] = mkdir(strcat('./pictures_wing/pic_softhardwing/', date, '/medianCL_CD_plot/'));
end
end
end
end