diff options
Diffstat (limited to '3630/CH15/EX15.8/Ex15_8.sce')
-rw-r--r-- | 3630/CH15/EX15.8/Ex15_8.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3630/CH15/EX15.8/Ex15_8.sce b/3630/CH15/EX15.8/Ex15_8.sce new file mode 100644 index 000000000..7da991c84 --- /dev/null +++ b/3630/CH15/EX15.8/Ex15_8.sce @@ -0,0 +1,24 @@ +clc;
+Rf=100000;
+Rin=10000;
+AcL=(Rf/Rin)+1;
+Acm=0.001;
+CMRR=AcL/Acm;
+Vin=1;
+Vout=AcL*Vin;
+slewrate=500000;
+Vpk=5.5;
+fmax=slewrate/(2*3.14*Vpk);
+disp(' ',AcL,"AcL=");//The answers vary due to round off error
+
+disp(' ',CMRR,"CMRR=");//The answers vary due to round off error
+
+disp('Vpp',Vout,"Vout=");//The answers vary due to round off error
+
+disp('kHz',fmax/1000,"fmax=");//The answers vary due to round off error
+
+
+
+
+
+
|