diff options
Diffstat (limited to '1757/CH5/EX5.23/EX5_23.sce')
-rwxr-xr-x | 1757/CH5/EX5.23/EX5_23.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1757/CH5/EX5.23/EX5_23.sce b/1757/CH5/EX5.23/EX5_23.sce new file mode 100755 index 000000000..3f01ba065 --- /dev/null +++ b/1757/CH5/EX5.23/EX5_23.sce @@ -0,0 +1,19 @@ +//Example5.23 // To determine input output miller capacitances
+clc;
+clear;
+close;
+A = 150 ; //gain
+Cm = 0.02 ; // uF // compensated capacitor
+
+// the input output miller capacitance are defined as
+Cin = Cm*(A+1);
+disp('The input miller capacitance Cin value is = '+string(Cin)+'uF ');
+Cout = (Cm*((A+1)/A));
+disp('The output miller capacitance Cout value is = '+string(Cout)+'uF ');
+
+// In the miller compensating network input capacitance introduce a pole . The initiated frequency of miller compensating network by pole is define as
+
+// fp = 1/(2*%pi*R*Cin);
+R = 1 ; // K ohm
+fp = 1/(2*%pi*R*Cout);
+disp('The initiated frequency of miller compensating network by pole is = '+string(fp)+' KHz ');
|