diff options
Diffstat (limited to '3754/CH35/EX35.2')
-rw-r--r-- | 3754/CH35/EX35.2/35_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH35/EX35.2/35_2.sce b/3754/CH35/EX35.2/35_2.sce new file mode 100644 index 000000000..f15b7363c --- /dev/null +++ b/3754/CH35/EX35.2/35_2.sce @@ -0,0 +1,14 @@ +clear//
+
+//Variables
+
+CMRR = 90.0 //Common-mode rejection ratio (in Decibels)
+Adm = 30000.0 //Differential gain
+
+//Calculation
+
+Acm = 10**(-CMRR/20.0) * Adm //Common-mode gain
+
+//Result
+
+printf("\n The common-mode gain is %0.3f .",Acm)
|