diff options
Diffstat (limited to '1757/CH13/EX13.3/EX13_3.sce')
-rwxr-xr-x | 1757/CH13/EX13.3/EX13_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1757/CH13/EX13.3/EX13_3.sce b/1757/CH13/EX13.3/EX13_3.sce new file mode 100755 index 000000000..5afd332e1 --- /dev/null +++ b/1757/CH13/EX13.3/EX13_3.sce @@ -0,0 +1,11 @@ +//Example13.3 // to calculate the frequency of a wein bridge oscillator
+clc;
+clear;
+close;
+C = 2400*10^-12 ; // F
+R = 10*10^3 ; // ohm
+
+// the oscillator frequency of practical RC phase shift oscillator f
+f = 1/(2*%pi*R*C);
+disp('the oscillator frequency of practical RC phase shift oscillator f is = '+string(f)+ ' Hz ');
+
|