summaryrefslogtreecommitdiff
path: root/3754/CH35/EX35.11/35_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH35/EX35.11/35_11.sce')
-rw-r--r--3754/CH35/EX35.11/35_11.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3754/CH35/EX35.11/35_11.sce b/3754/CH35/EX35.11/35_11.sce
new file mode 100644
index 000000000..f8fee302d
--- /dev/null
+++ b/3754/CH35/EX35.11/35_11.sce
@@ -0,0 +1,19 @@
+clear//
+
+//Variables
+
+ACL = 1.0 //Closed loop gain
+Acm = 0.001 //Common mode gain
+Slew_rate = 0.5 * 10**6 //Slew rate (in Volt per second)
+
+//Calculation
+
+CMRR = ACL / Acm //Common-mode rejection ratio
+vin = 1.0 //Voltage (in volts)
+Vout = ACL * vin //Output voltage (in volts)
+Vpk = 3.0 //Peak-to-peak voltage (in volts)
+fmax = Slew_rate/(2*%pi*Vpk) //Maximum frequency (in Hertz)
+
+//Result
+
+printf("\n ACL is %0.3f .\nCMRR is %0.3f .\nfmax is %0.1f kHz.",ACL,CMRR,fmax*10**-3)