diff options
Diffstat (limited to '3754/CH35/EX35.7/35_7.sce')
-rw-r--r-- | 3754/CH35/EX35.7/35_7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3754/CH35/EX35.7/35_7.sce b/3754/CH35/EX35.7/35_7.sce new file mode 100644 index 000000000..ff76a153a --- /dev/null +++ b/3754/CH35/EX35.7/35_7.sce @@ -0,0 +1,18 @@ +clear//
+
+//Variables
+
+R1 = 1.0 * 10**3 //Resistance (in volts)
+R2 = 10.0 * 10**3 //Resistance (in volts)
+vinmin = 0.1 //Input voltage minimum (in volts)
+vinmax = 0.4 //Input voltage maximum (in volts)
+
+//Calculation
+
+ACL = R2 / R1 //Closed loop voltage gain
+Voutmin = ACL * vinmin //Minimum output voltage (in volts)
+Voutmax = ACL * vinmax //Maximum output voltage (in volts)
+
+//Result
+
+printf("\n The value of output voltage increases from %0.3f V to %0.3f V.",Voutmin,Voutmax)
|