diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1697/CH1/EX1.19/Exa1_19.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1697/CH1/EX1.19/Exa1_19.sce')
-rwxr-xr-x | 1697/CH1/EX1.19/Exa1_19.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/1697/CH1/EX1.19/Exa1_19.sce b/1697/CH1/EX1.19/Exa1_19.sce new file mode 100755 index 000000000..fdef53ec0 --- /dev/null +++ b/1697/CH1/EX1.19/Exa1_19.sce @@ -0,0 +1,27 @@ +//Exa 1.19
+clc;
+clear;
+close;
+//given data :
+P=10;//in W/m^2
+f=40;//in MHz
+f=f*10^6;//in Hz
+mu_r=4;//constant
+epsilon_r=5;//constant
+//Velocity of propagation
+//formula : v=(1/sqrt(mu_o*epsilon_o))*(1/sqrt(mu_r*epsilon_r));//in m/s
+//1/sqrt(mu_o*epsilon_o)=c=speed of light=3*10^8 m/s
+c=3*10^8;//speed of light in m/s
+v=c*(1/sqrt(mu_r*epsilon_r));//in m/s
+disp(v,"Velocity of propagation in m/s : ");
+//Wavelength
+lambda=v/f;//in meter
+disp(lambda,"Wavelength in Meter : ");
+//rms electric field
+//Formula : E=P*sqrt(mu_o/epsilon_o)*sqrt(mu_r/epsilon_r);//in V/m
+E=sqrt(1200*%pi*sqrt(4/5));//in V/m
+Erms=sqrt(E^2/sqrt(2));//in V/m
+disp(Erms,"rms Electric Field in V/m: ");
+//Impedence of medium
+Eta=(sqrt(2)*Erms)^2/P;//in Ohm
+disp(Eta,"Impedence of medium in ohm : ");
\ No newline at end of file |