-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot2D.m
132 lines (116 loc) · 4.13 KB
/
plot2D.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
131
132
clear all; close all;
%-- Sets a nice background for exporting the final figure
set(0,'DefaultFigureColor','w',... % Sets figure background to white
'DefaultAxesColor','w',... % Sets axes background to white
'DefaultFigureInvertHardCopy','off',... % 'off' preserves on-screen colour
'DefaultLineLineWidth',0.75,... % This is to specify line width
'DefaultAxesFontName','Times',... % Secify axes font name
'DefaultTextInterpreter','latex',... % Secify text interpreter
'DefaultAxesFontsize',10,... % Specify axes font size = 10
'DefaultLineMarkerSize',10); % Specify line marker size = 10
%-- Add paths to all subroutines so that you can use them
addpath(genpath('subroutines'));
%-- First load some sample data
filename = 'data/data_plot2D.dat';
fid = fopen(filename, 'r');
%-- Skip the first 72 lines
for i = 1:72
str = fgets(fid);
end
[data, ~] = fscanf(fid, '%f', inf);
%-- Reshape data to preserve structure
couette_retau220_mean = reshape(data,6,96)';
%-- Now plot the data
figure(1)
h1 = semilogx(couette_retau220_mean(:,2),couette_retau220_mean(:,3),'b-','linewidth',2);
hold on;
%-- I'm a turbulence researcher, so here's the log-law
kappa = 0.41;
xlin = logspace(0.0,1.1,50);
ylin = xlin;
xlog = logspace(1.0,3.0,50);
ylog = 1.0/kappa*log(xlog)+5.1;
figure(1)
hlin = plot(xlin,ylin,'k--');
hlog = plot(xlog,ylog,'k--');
%-- Now format FIGURE 1
figure(1)
xlim([1e-1 1e3]);
ylim([0 25]);
set(gca,'PlotBoxAspectRatio',[4 3 1]); % 4:3 is a pleasing aspect ratio
set(gca,'xtick',logspace(-1,5,7));
set(gcf,'Position',[100 100 4*50 3*50])
xlabel('$x^+$','interpreter','latex');
ylabel('$\overline{v}^+$','interpreter','latex');
%-- Now put a colored patch here
%-- Viscous sublayer
xp = [1e-2 7 7 1e-2 1e-2];
yp = [0 0 25 25 0];
hp = patch(xp,yp,[1.0,0.9,0.9]);
set(hp,'FaceAlpha',.8,'LineStyle','none');
uistack(hp,'bottom')
%-- Buffer region
xp = [7 20 20 7 7];
hp = patch(xp,yp,[0.9,1.0,0.9]);
set(hp,'FaceAlpha',.8,'LineStyle','none');
uistack(hp,'bottom')
%-- Log to outer region
xp = [20 1e3 1e3 20 20];
hp = patch(xp,yp,[0.9,0.9,1.0]);
set(hp,'FaceAlpha',.8,'LineStyle','none');
uistack(hp,'bottom')
%-- For control over text placement
limx = get(gca,'xlim');
limy = get(gca,'ylim');
limx_interval = log10(limx(2)) - log10(limx(1));
limy_interval = limy(2) - limy(1);
limx_mid = limx(1) * 10^(0.5 * limx_interval);
limy_mid = limy(1) + (0.5 * limy_interval);
t1 = text(limx(1)*10^(-0.15*limx_interval),limy(1)+(limy_interval),'($a$)');
%-- Apply following formats to all figures
for k = 1
fig = figure(k);
set(gca,'ticklength',[0.025 0.025],'layer','top');
set(findall(fig,'type','text'),'HorizontalAlignment','center')
set(findall(fig,'type','axes'),'linewidth',0.75)
set(gca,'TickLabelInterpreter','latex');
end
%% PLOTTING OPTION 1
%-- I use export_fig which generates beautiful true-screen output
figure(1);
%-- First save the background patch as png
box off; axis off; % Switches off axes boundaries
t1.Visible = 'off'; % Switches off text
h1.Visible = 'off'; % Switches off line plot
hlin.Visible = 'off'; % Switches off linear plot
hlog.Visible = 'off'; % Switches off log plot
export_fig('figs/uavg_raw_bg','-rgb','-png','-m2'); %background only
%-- Now save the figure without the patch
h = findall(gcf,'type','patch'); delete(h);
box on; axis on;
t1.Visible = 'on';
h1.Visible = 'on';
hlin.Visible = 'on';
hlog.Visible = 'on';
set(gcf,'Color','none');
set(gca,'Color','none');
export_fig('figs/uavg_raw','-rgb','-pdf'); %pdf version
export_fig('figs/uavg_raw','-rgb','-eps'); %eps version
% %% PLOTTING OPTION 2
% %-- For more 'hardcore' control, I use figure_eps, which is a
% % wrapper for laprint (a LaTeX figure generator) with cleanup tools.
%
% %-- First remove the text interpreters.
% for k = 1
% fig = figure(k);
% set(findall(fig,'type','text'),'Interpreter','none')
% end
%
% figw = 34;
% figh = figw/4*3;
% figw_m = 0;
% figh_m = 0 ;
%
% %-- Now generate the figure with labels for psfrag
% figure(1)
% figure_eps(figw, figh, figw_m, figh_m, 'figs/uavg_eps');