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 /2863/CH2/EX2.29/ex2_29.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 '2863/CH2/EX2.29/ex2_29.sce')
-rwxr-xr-x | 2863/CH2/EX2.29/ex2_29.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2863/CH2/EX2.29/ex2_29.sce b/2863/CH2/EX2.29/ex2_29.sce new file mode 100755 index 000000000..7de666ba3 --- /dev/null +++ b/2863/CH2/EX2.29/ex2_29.sce @@ -0,0 +1,19 @@ +//chapter 2
+//part a
+printf("\n");
+c=3*10^8;
+f=10^9;
+lamda=c/f;
+printf("the wavelength is %gm",lamda);
+//part b
+dl=3*10^-2;
+Rrad=80*(%pi)^2*(dl/lamda)^2;
+printf("\nthe radiation resistance is %gohm",Rrad);
+//part c
+Gdmax=1.5//Gd=1.5sin^2(theta),where theta=90 for short dipole
+n=0.6;
+Gp=n*Gdmax;
+printf("\nthe antenna gain is given by %g",Gp);
+//part d
+Ae=1.5*(lamda)^2/(4*(%pi));
+printf("\nthe effective aperture is %gm^2",Ae);
|