summaryrefslogtreecommitdiff
path: root/73/CH11/EX11.4
diff options
context:
space:
mode:
Diffstat (limited to '73/CH11/EX11.4')
-rwxr-xr-x73/CH11/EX11.4/Example11_4.sci10
1 files changed, 10 insertions, 0 deletions
diff --git a/73/CH11/EX11.4/Example11_4.sci b/73/CH11/EX11.4/Example11_4.sci
new file mode 100755
index 000000000..1199f670b
--- /dev/null
+++ b/73/CH11/EX11.4/Example11_4.sci
@@ -0,0 +1,10 @@
+//Chapter 11_Nonlinear Circuit Application
+//Caption :Time taken
+//Example11.4: b)Type 741 Op-amp is used as a comparator and its slew rate is 0.5V/us.How long will it change from +10 V to -10v?
+//b)Solution:
+clear;
+clc;
+deltaVo=10-(-10);
+SlewRate=0.5*10^-6;
+t=deltaVo/SlewRate;
+disp('us',t/10^6,'time taken by the output voltage to change from +10 V to -10 V is:') \ No newline at end of file