summaryrefslogtreecommitdiff
path: root/3754/CH35/EX35.4/35_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH35/EX35.4/35_4.sce')
-rw-r--r--3754/CH35/EX35.4/35_4.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3754/CH35/EX35.4/35_4.sce b/3754/CH35/EX35.4/35_4.sce
new file mode 100644
index 000000000..f3a3818b7
--- /dev/null
+++ b/3754/CH35/EX35.4/35_4.sce
@@ -0,0 +1,16 @@
+clear//
+
+//Variables
+
+Slew_rate1 = 0.5 * 10**6 //Slew rate (in volt per second)
+Slew_rate2 = 13.0 * 10**6 //Slew rate (in volt per second)
+Vpk = 10.0 //Peak-to-peak voltage (in volts)
+
+//Calculation
+
+fmax = Slew_rate1 / (2 * %pi * Vpk) //Maximum operating frequency1 (in Hertz)
+fmax1 = Slew_rate2 / (2 * %pi * Vpk) //Maximum operating frequency2 (in Hertz)
+
+//Result
+
+printf("\n The maximum operating frequency for TLO 741 is %0.3f kHz.\nThe maximum opearing frequency for TLO 81 is %0.1f kHz.",fmax*10**-3,fmax1*10**-3)