summaryrefslogtreecommitdiff
path: root/3515/CH6/EX6.2/Ex_6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH6/EX6.2/Ex_6_2.sce')
-rw-r--r--3515/CH6/EX6.2/Ex_6_2.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3515/CH6/EX6.2/Ex_6_2.sce b/3515/CH6/EX6.2/Ex_6_2.sce
new file mode 100644
index 000000000..a6d80e17f
--- /dev/null
+++ b/3515/CH6/EX6.2/Ex_6_2.sce
@@ -0,0 +1,16 @@
+// Exa 6.2
+format('v',6);
+clc;
+clear;
+close;
+// Given data
+R1= 50;// in kohm
+R1=R1*10^3;// in ohm
+R2=R1;// in ohm
+R3=R2;// in ohm
+C1= 60;// in pF
+C1= C1*10^-12;// in F
+C2=C1;// in F
+C3=C2;// in F
+f= 1/(2*%pi*R1*C1*sqrt(6));
+disp(f*10^-3,"Frequency of oscilltions in kHz is : ")