summaryrefslogtreecommitdiff
path: root/3830/CH2/EX2.1/Ex2_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3830/CH2/EX2.1/Ex2_1.sce')
-rw-r--r--3830/CH2/EX2.1/Ex2_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3830/CH2/EX2.1/Ex2_1.sce b/3830/CH2/EX2.1/Ex2_1.sce
new file mode 100644
index 000000000..6bd11c1fd
--- /dev/null
+++ b/3830/CH2/EX2.1/Ex2_1.sce
@@ -0,0 +1,18 @@
+// Exa 2.1
+
+clc;
+clear;
+
+// Given
+
+// A wien bridge oscillator under consideration
+R = 55*10^3; // Resistance in Ohms
+// R = R1 = R2 ... given
+C = 800*10^-12; // Capacitor in Farad
+// C = C2 = C1 .. given
+
+// Solution
+
+f = 1/(2*%pi*R*C) ;
+
+printf(' The frequency of oscillations = %.1f Hz \n',f);