diff options
Diffstat (limited to '3754/CH35/EX35.5/35_5.sce')
-rw-r--r-- | 3754/CH35/EX35.5/35_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH35/EX35.5/35_5.sce b/3754/CH35/EX35.5/35_5.sce new file mode 100644 index 000000000..fee99dc99 --- /dev/null +++ b/3754/CH35/EX35.5/35_5.sce @@ -0,0 +1,14 @@ +clear//
+
+//Variables
+
+ACL = 200.0 //Closed loop voltage gain
+Vout = 8.0 //Output voltage (in volts)
+
+//Calculation
+
+Vin = - Vout / ACL //Input a.c. voltage (in volts)
+
+//Result
+
+printf("\n Maximum allowable input voltage (Vin) is %0.3f mV." ,abs(Vin * 10**3))
|