clc;
% -------- SURAJ BASTOLA ------------%
% -------- Refractivity Calculation-------------%
h0 = 7.350; % height above sea-level
N0 = 315;% Refractivity above sea-level
h = 0:0.5:8.848; % Mt. Everest = 8.848km i.e. height above earth surface
n = 1+ (N0*10^-6)*exp(-h/h0); % refractivity above earth surface
display(h);
display(n);
plot(h,n) % plotting refractivity vs height above earth surface
grid on;
xlabel("Height above earth surface");
ylabel("Refractivity above earth surface");
title("REFRACTIVITY CALCULATION FROM FOOT TO TOP OF MT.Everest");
No comments:
Post a Comment