diff options
Diffstat (limited to '2882/CH11/EX11.4/Ex11_4.sce')
-rwxr-xr-x | 2882/CH11/EX11.4/Ex11_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2882/CH11/EX11.4/Ex11_4.sce b/2882/CH11/EX11.4/Ex11_4.sce new file mode 100755 index 000000000..2ad3cb16c --- /dev/null +++ b/2882/CH11/EX11.4/Ex11_4.sce @@ -0,0 +1,14 @@ +//Tested on Windows 7 Ultimate 32-bit
+//Chapter 11 Oscillators and Multivibrators Pg no. 361
+clear;
+clc;
+
+//Given
+
+R=4.7D3;//R1,R2,R3 resistances in RC filter circuit in ohms
+C=2.2D-9;//C1,C2,C3 resistances in RC filter circuit in farads
+
+//Solution
+
+f0=1/(2*%pi*R*C*sqrt(6));//frequency of oscillation in hertz
+printf("Frequency of oscillation f0 = %.3f kHz",f0/10^3);
|