summaryrefslogtreecommitdiff
path: root/1739/CH8/EX8.13
diff options
context:
space:
mode:
Diffstat (limited to '1739/CH8/EX8.13')
-rwxr-xr-x1739/CH8/EX8.13/Exa8_13.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1739/CH8/EX8.13/Exa8_13.sce b/1739/CH8/EX8.13/Exa8_13.sce
new file mode 100755
index 000000000..35a926139
--- /dev/null
+++ b/1739/CH8/EX8.13/Exa8_13.sce
@@ -0,0 +1,12 @@
+//Exa 8.13
+clc;
+clear;
+close;
+//Given data :
+C=6;//in pF
+C=C*10^-12;//in F
+FH=8;//in MHz
+FH=FH*10^6;//in Hz
+//Formula : FH=1/(2*%pi*R*C)
+R=1/(2*%pi*FH*C);//in Ohm
+disp(R*10^-3,"Maximum load resistance in Kohm"); \ No newline at end of file