summaryrefslogtreecommitdiff
path: root/2621/CH2/EX2.13/Ex2_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '2621/CH2/EX2.13/Ex2_13.sce')
-rw-r--r--2621/CH2/EX2.13/Ex2_13.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/2621/CH2/EX2.13/Ex2_13.sce b/2621/CH2/EX2.13/Ex2_13.sce
new file mode 100644
index 000000000..2a4fa0579
--- /dev/null
+++ b/2621/CH2/EX2.13/Ex2_13.sce
@@ -0,0 +1,23 @@
+// Example 2.13
+clc;
+clear;
+close;
+// Given data
+format('v',6);
+SR= 6;// slew rate in V/µs
+SR= 6*10^6;// in V/s
+
+// Part (i) For Vmax= 1V
+Vmax= 1;// in V
+fmax= SR/(2*%pi*Vmax);// limiting frequency in Hz
+fmax= fmax*10^-6;// in MHz
+disp(fmax,"Part (i) : The limiting frequency for maximum voltage of 1V in MHz is : ");
+
+// Part (ii) For Vmax= 10V
+Vmax= 10;// in V
+fmax= SR/(2*%pi*Vmax);// limiting frequency in Hz
+fmax= fmax*10^-3;// in kHz
+disp(fmax,"Part (ii) : The limiting frequency for maximum voltage of 10V in kHz is : ");
+
+
+