diff options
Diffstat (limited to '3515/CH6/EX6.4/Ex_6_4.sce')
-rw-r--r-- | 3515/CH6/EX6.4/Ex_6_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3515/CH6/EX6.4/Ex_6_4.sce b/3515/CH6/EX6.4/Ex_6_4.sce new file mode 100644 index 000000000..e1506d3f5 --- /dev/null +++ b/3515/CH6/EX6.4/Ex_6_4.sce @@ -0,0 +1,16 @@ +// Exa 6.4
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+R1= 200;// in kohm
+R1=R1*10^3;// in ohm
+R2=R1;// in ohm
+C1= 200;// in pF
+C1= C1*10^-12;// in F
+C2=C1;// in F
+f= 1/(2*%pi*R1*C1);// in Hz
+disp(f*10^-3,"Frequency of oscilltions in kHz is : ")
+
+// Note: Calculation to find the value of f in the book is wrong, so answer in the book is wrong
|