Monday, October 5, 2020

REFRACTIVITY CALCULATION FROM FOOT TO TOP OF Mt.Everest

 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

CHECKING WHETHER THE SYSTEM IS STABLE OR NOT

  % SURAJ BASTOLA % % ==========CHECKING WHETHER SYSTEM IS STABLE OR NOT ================== % H(z) = (2z+0.5)/(z^2+0.5z-1) b = [2 0.5]; a=[1...