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 /25/CH4/EX4.3/4_3.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 '25/CH4/EX4.3/4_3.sce')
-rwxr-xr-x | 25/CH4/EX4.3/4_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/25/CH4/EX4.3/4_3.sce b/25/CH4/EX4.3/4_3.sce new file mode 100755 index 000000000..828e03cad --- /dev/null +++ b/25/CH4/EX4.3/4_3.sce @@ -0,0 +1,9 @@ +//example:-4.3,page no.-167.
+//program to find out the highest usable frequency.
+a=0.000889;b=0.0029464;eipsilar=2.2;c=3*10^8;
+// here (b/a)=3.3,so for this kc*a=0.47
+kc=0.47/a;
+fc=(c*kc)/(2*%pi*sqrt(eipsilar))
+fc=fc/(10^9);
+fmax=0.95*fc;
+disp(fmax,'maximum usable frequency in GHZ=')
\ No newline at end of file |