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 /2891/CH2/EX2.27 | |
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 '2891/CH2/EX2.27')
-rwxr-xr-x | 2891/CH2/EX2.27/Ex2_27.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2891/CH2/EX2.27/Ex2_27.sce b/2891/CH2/EX2.27/Ex2_27.sce new file mode 100755 index 000000000..0201865ce --- /dev/null +++ b/2891/CH2/EX2.27/Ex2_27.sce @@ -0,0 +1,12 @@ +// Exa 2.27
+clc;
+clear;
+close;
+// given :
+eta_0=377 // intrinsic impedance in free space in ohm
+disp("E=sin(omega*t-beta*z)ax+2*sin(omega*t-beta*z+75)ay // electric field in V/m")
+Ex=1// magnitude of Ex
+Ey=2 // magnitude of Ey
+E=sqrt(Ex^2+Ey^2) // resultant magnitude
+Pav=(1/2)*E^2/(eta_0) // power per unit area conveyed by the wave in free space
+disp(Pav*1000,"power per unit area conveyed by the wave in free space in mW/m^2:")
|