You are on page 1of 15

Mean Pressure Coefficients

clc
clear
close all

load('TPU_Normal.mat')

Wind_Pressure_Plot = mean(Wind_Pressure_Cp);
%figure(1)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Normal Direction')

load('WERFL_Normal.mat')

Wind_Pressure_Plot = mean(Wind_Pressure_Cp);
%figure(2)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Normal Direction')

load('TPU_Cornering.mat')

Wind_Pressure_Plot = mean(Wind_Pressure_Cp);
%figure(3)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Corner Direction')

load('WERFL_Cornering.mat')

Wind_Pressure_Plot = mean(Wind_Pressure_Cp);
%figure(4)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Corner Direction')

1
Mean Pressure Coefficients

2
Mean Pressure Coefficients

Published with MATLAB R2017b

3
RMS Pressure Coefficients

clc
clear
close all

load('TPU_Normal.mat')

Wind_Pressure_Plot = rms(Wind_Pressure_Cp);
%figure(1)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Normal Direction')

load('WERFL_Normal.mat')

Wind_Pressure_Plot = rms(Wind_Pressure_Cp);
%figure(2)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Normal Direction')

load('TPU_Cornering.mat')

Wind_Pressure_Plot = rms(Wind_Pressure_Cp);
%figure(3)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Corner Direction')

load('WERFL_Cornering.mat')

Wind_Pressure_Plot = rms(Wind_Pressure_Cp);
%figure(4)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Corner Direction')

1
RMS Pressure Coefficients

2
RMS Pressure Coefficients

Published with MATLAB R2017b

3
Min Pressure Coefficients

clc
clear
close all

load('TPU_Normal.mat')

Wind_Pressure_Plot = min(Wind_Pressure_Cp);
%figure(1)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Normal Direction')

load('WERFL_Normal.mat')

Wind_Pressure_Plot = min(Wind_Pressure_Cp);
%figure(2)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Normal Direction')

load('TPU_Cornering.mat')

Wind_Pressure_Plot = min(Wind_Pressure_Cp);
%figure(3)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Corner Direction')

load('WERFL_Cornering.mat')

Wind_Pressure_Plot = min(Wind_Pressure_Cp);
%figure(4)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Corner Direction')

1
Min Pressure Coefficients

2
Min Pressure Coefficients

Published with MATLAB R2017b

3
Max Pressure Coefficients

clc
clear
close all

load('TPU_Normal.mat')

Wind_Pressure_Plot = max(Wind_Pressure_Cp);
%figure(1)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Normal Direction')

load('WERFL_Normal.mat')

Wind_Pressure_Plot = max(Wind_Pressure_Cp);
%figure(2)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Normal Direction')

load('TPU_Cornering.mat')

Wind_Pressure_Plot = max(Wind_Pressure_Cp);
%figure(3)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Wind Tunnel Corner Direction')

load('WERFL_Cornering.mat')

Wind_Pressure_Plot = max(Wind_Pressure_Cp);
%figure(4)
Cp_plot(Location_of_measured_points, Wind_Pressure_Plot)
title('\fontsize{36}Full Scale Corner Direction')

1
Max Pressure Coefficients

2
Max Pressure Coefficients

Published with MATLAB R2017b

You might also like