From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3830/CH2/EX2.2/Ex2_2.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 3830/CH2/EX2.2/Ex2_2.sce (limited to '3830/CH2/EX2.2') diff --git a/3830/CH2/EX2.2/Ex2_2.sce b/3830/CH2/EX2.2/Ex2_2.sce new file mode 100644 index 000000000..80d2014c6 --- /dev/null +++ b/3830/CH2/EX2.2/Ex2_2.sce @@ -0,0 +1,20 @@ +// Exa 2.2 + +clc; +clear; + +// Given + +// A wien bridge oscillator under consideration + +fo= 10^6 ; // frequency of oscillations in Hz + +// Solution + +printf(' Let R = 3 k Ohms \n'); + +R = 3000; // Ohm's +// since, fo = 1/(2*%pi*R*C); therefore, +C = 1/(2*%pi*fo*R); + +printf(' Substituting that, the value of capacitor = %d pf \n',C*10^12); -- cgit