summaryrefslogtreecommitdiff
path: root/1739/CH8/EX8.9/Exa8_9.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1739/CH8/EX8.9/Exa8_9.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1739/CH8/EX8.9/Exa8_9.sce')
-rwxr-xr-x1739/CH8/EX8.9/Exa8_9.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1739/CH8/EX8.9/Exa8_9.sce b/1739/CH8/EX8.9/Exa8_9.sce
new file mode 100755
index 000000000..c73f3e442
--- /dev/null
+++ b/1739/CH8/EX8.9/Exa8_9.sce
@@ -0,0 +1,15 @@
+//Exa 8.9
+clc;
+clear;
+close;
+//Given data :
+C=1;//in pF
+//Part (a) :
+FH=1;//in MHz
+R=1/((2*%pi*FH*10^6*C)*10^-12);//in ohm
+disp(R*10^-3,"For 1 MHz, Maximum Load Resistnce in Kohm : ");
+
+//Part (b) :
+FH=1;//in GHz
+R=1/((2*%pi*FH*10^9*C)*10^-12);//in ohm
+disp(R,"For 1 GHz, Maximum Load Resistnce in Ohm : "); \ No newline at end of file