diff options
Diffstat (limited to '1739/CH8/EX8.9/Exa8_9.sce')
-rwxr-xr-x | 1739/CH8/EX8.9/Exa8_9.sce | 15 |
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 |