Skip to content

Commit

Permalink
Merge pull request #10061 from rmcdermo/master
Browse files Browse the repository at this point in the history
Matlab: fix VTT_Sprays fonts
  • Loading branch information
rmcdermo authored Nov 18, 2021
2 parents ea5cbd1 + 1313229 commit fe0d4ef
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Utilities/Matlab/scripts/VTT_Sprays.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
disp('VTT_Sprays ...')

plot_style
Font_Interpreter='LaTeX';

outdir = '../../../out/VTT_Sprays/';
expdir = '../../../exp/VTT_Sprays/';
Expand Down Expand Up @@ -70,7 +71,7 @@
set(gca,'FontName',Font_Name)
set(gca,'FontSize',Label_Font_Size)
xlabel('Radial position (m)', 'Interpreter', Font_Interpreter,'FontSize',Label_Font_Size)
ylabel('Velocity (m/s)','FontSize',Label_Font_Size)
ylabel('Velocity (m/s)','FontSize',Label_Font_Size, 'Interpreter', Font_Interpreter)
h = legend({'Experiment','FDS 1 cm','FDS 2 cm','FDS 4 cm'}, 'Location', 'Northeast');
set(h,'Interpreter', Font_Interpreter)
set(h,'FontSize', Key_Font_Size)
Expand Down Expand Up @@ -101,7 +102,7 @@
set(gca,'FontName',Font_Name)
set(gca,'FontSize',Label_Font_Size)
xlabel('Radial position (m)', 'Interpreter', Font_Interpreter,'FontSize',Label_Font_Size)
ylabel('Diameter d_{32} ({\mu}m)','FontSize',Label_Font_Size)
ylabel('Diameter d$_{32}$ ($\mu$m)','FontSize',Label_Font_Size, 'Interpreter', Font_Interpreter)
h = legend({'Experiment','FDS 1 cm','FDS 2 cm','FDS 4 cm'}, 'Location', 'Southeast');
set(h,'Interpreter', Font_Interpreter)
set(h,'FontSize', Key_Font_Size)
Expand Down Expand Up @@ -132,7 +133,7 @@
set(gca,'FontName',Font_Name)
set(gca,'FontSize',Label_Font_Size)
xlabel('Radial position (m)', 'Interpreter', Font_Interpreter,'FontSize',Label_Font_Size)
ylabel('Droplet Flux (kg/m^2/s)','FontSize',Label_Font_Size)
ylabel('Droplet Flux (kg/m$^2$/s)','FontSize',Label_Font_Size, 'Interpreter', Font_Interpreter)
h = legend({'Experiment','FDS 1 cm','FDS 2 cm','FDS 4 cm'}, 'Location', 'Northeast');
set(h,'Interpreter', Font_Interpreter)
set(h,'FontSize', Key_Font_Size)
Expand Down Expand Up @@ -164,7 +165,7 @@
set(gca,'FontName',Font_Name)
set(gca,'FontSize',Label_Font_Size)
xlabel('Radial position (m)', 'Interpreter', Font_Interpreter,'FontSize',Label_Font_Size)
ylabel('Velocity (m/s)','FontSize',Label_Font_Size)
ylabel('Velocity (m/s)','FontSize',Label_Font_Size, 'Interpreter', Font_Interpreter)
h = legend({'Experiment','FDS 1 cm','FDS 2 cm','FDS 4 cm'}, 'Location', 'Northeast');
set(h,'Interpreter', Font_Interpreter)
set(h,'FontSize', Key_Font_Size)
Expand Down Expand Up @@ -195,7 +196,7 @@
set(gca,'FontName',Font_Name)
set(gca,'FontSize',Label_Font_Size)
xlabel('Radial position (m)', 'Interpreter', Font_Interpreter,'FontSize',Label_Font_Size)
ylabel('Diameter d_{32} ({\mu}m)','FontSize',Label_Font_Size)
ylabel('Diameter d$_{32}$ ($\mu$m)','FontSize',Label_Font_Size, 'Interpreter', Font_Interpreter)
h = legend({'Experiment','FDS 1 cm','FDS 2 cm','FDS 4 cm'}, 'Location', 'Southeast');
set(h,'Interpreter', Font_Interpreter)
set(h,'FontSize', Key_Font_Size)
Expand Down Expand Up @@ -226,7 +227,7 @@
set(gca,'FontName',Font_Name)
set(gca,'FontSize',Label_Font_Size)
xlabel('Radial position (m)', 'Interpreter', Font_Interpreter,'FontSize',Label_Font_Size)
ylabel('Droplet Flux (kg/m^2/s)','FontSize',Label_Font_Size)
ylabel('Droplet Flux (kg/m$^2$/s)','FontSize',Label_Font_Size, 'Interpreter', Font_Interpreter)
h = legend({'Experiment','FDS 1 cm','FDS 2 cm','FDS 4 cm'}, 'Location', 'Northeast');
set(h,'Interpreter', Font_Interpreter)
set(h,'FontSize', Key_Font_Size)
Expand Down

0 comments on commit fe0d4ef

Please sign in to comment.