diff options
Diffstat (limited to '2609/CH6/EX6.8/Ex6_8.sce')
-rwxr-xr-x | 2609/CH6/EX6.8/Ex6_8.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2609/CH6/EX6.8/Ex6_8.sce b/2609/CH6/EX6.8/Ex6_8.sce new file mode 100755 index 000000000..c225e8ad7 --- /dev/null +++ b/2609/CH6/EX6.8/Ex6_8.sce @@ -0,0 +1,12 @@ +//Ex 6.8
+clc;
+clear;
+close;
+format('v',5);
+Rf=570;//kohm
+Ri=15;//kohm
+A=Rf/Ri;//Gain of the circuit
+Amin=29;//Minimum Gain requirement of RC phase shift oscillator
+deltaA=(A-Amin)/Amin*100;//%(Exceeding Gain)
+disp(deltaA,"Gain is exceeded by(%) ");
+disp("It will cause distortion at output.");
|