diff options
Diffstat (limited to '3754/CH35/EX35.3/35_3.sce')
-rw-r--r-- | 3754/CH35/EX35.3/35_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH35/EX35.3/35_3.sce b/3754/CH35/EX35.3/35_3.sce new file mode 100644 index 000000000..722993f4c --- /dev/null +++ b/3754/CH35/EX35.3/35_3.sce @@ -0,0 +1,14 @@ +clear//
+
+//Variables
+
+Slew_rate = 0.5 * 10**6 //Slew rate (in volt per second)
+Vpk = 100.0 * 10**-3 //Peak-to-peak voltage (in volts)
+
+//Calculation
+
+fmax = Slew_rate / (2 * %pi * Vpk) //Maximum operating frequency (in Hertz)
+
+//Result
+
+printf("\n The maximum operating frequency for the amplifier is %0.0f kHz.",fmax * 10**-3)
|