summaryrefslogtreecommitdiff
path: root/2093/CH6/EX6.2/exa_6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2093/CH6/EX6.2/exa_6_2.sce')
-rwxr-xr-x2093/CH6/EX6.2/exa_6_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2093/CH6/EX6.2/exa_6_2.sce b/2093/CH6/EX6.2/exa_6_2.sce
new file mode 100755
index 000000000..ecc350b1c
--- /dev/null
+++ b/2093/CH6/EX6.2/exa_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 : ")