diff options
Diffstat (limited to '3630/CH15/EX15.7')
-rw-r--r-- | 3630/CH15/EX15.7/Ex15_7.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3630/CH15/EX15.7/Ex15_7.sce b/3630/CH15/EX15.7/Ex15_7.sce new file mode 100644 index 000000000..5ec3c1f18 --- /dev/null +++ b/3630/CH15/EX15.7/Ex15_7.sce @@ -0,0 +1,25 @@ +clc;
+Rf=100000;
+Rin=10000;
+AcL=Rf/Rin;
+Zin=Rin;
+Acm=0.001;
+CMRR=AcL/Acm;
+Vin=1;
+Vout=AcL*Vin;
+slewrate=500000;
+Vpk=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
+
+
+
+
+
+
|