diff options
Diffstat (limited to '2414/CH14/EX14.12')
-rwxr-xr-x | 2414/CH14/EX14.12/Ex14_12.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2414/CH14/EX14.12/Ex14_12.sce b/2414/CH14/EX14.12/Ex14_12.sce new file mode 100755 index 000000000..add65bb29 --- /dev/null +++ b/2414/CH14/EX14.12/Ex14_12.sce @@ -0,0 +1,15 @@ +clc;
+close();
+clear();
+//page no 487
+//prob no. 14.12
+Ex=3 //V/m
+n0=377;
+Hy=Ex/n0;
+mprintf('(a) The vaulue of Hy is, Hy = %.3f * 10^-3 A/m\n',Hy*10^3);
+
+Px=Ex^2/n0;
+mprintf(' (b) The power density Px is, Px = %.3f * 10^-3 W/m^2\n',Px*10^3);
+A=10*30;
+P=Px*A;
+mprintf(' (c) The net power transmitted is, P = %.3f W \n',P);
|