summaryrefslogtreecommitdiff
path: root/2702/CH6/EX6.2/Ex_6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH6/EX6.2/Ex_6_2.sce')
-rw-r--r--2702/CH6/EX6.2/Ex_6_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2702/CH6/EX6.2/Ex_6_2.sce b/2702/CH6/EX6.2/Ex_6_2.sce
new file mode 100644
index 000000000..ecc350b1c
--- /dev/null
+++ b/2702/CH6/EX6.2/Ex_6_2.sce
@@ -0,0 +1,15 @@
+// Exa 6.2
+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 : ")