Answer To: Derivation Case No. X Z Y XXXXXXXXXX64e-15 XXXXXXXXXX89e-15 XXXXXXXXXX148e-15 XXXXXXXXXX3e-15 Case...
Swapnil answered on Aug 09 2021
clear all;
clc;
x = linspace(0.1,5,20);
y = linspace(30*power(10,-15),300*power(10,-15),20);
w = 2.388*power(10,11);
[X Y] = meshgrid(x,y);
%for z = 3000
z = 3000;
for i=1:20
A(i) = (4*x(i))/(sqrt(4*power((4*x(i) + 1),2)+power(w,2)*power(x(i)*y(i)*z,2)));
B(i) = sqrt(4*power(x(i),2)*(2*power(w*y(i),2)*x(i)*((x(i)+3*x(i)*z+z)+3*x(i)+1))+power(w*y(i),2)*power((6*power(x(i),2)*z -x(i)*z - x(i) - z),2))/ (power(3*x(i)+1,2) + power(w*y(i),2)*power((x(i) + 3*x(i)*y(i) + z),2));
end;
[A A] = meshgrid(A,A);
[B B] = meshgrid(B,B);
subplot(4,2,1)
surf(X,Y,A);
title('A (z=3000)');
xlabel('X axis');
ylabel('Y axis');
subplot(4,2,2)
surf(X,Y,B);
title('B (z=3000)');
xlabel('X axis');
ylabel('Y axis');
clear A;
clear B;
%for z =...