diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /73/CH11/EX11.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '73/CH11/EX11.4')
-rwxr-xr-x | 73/CH11/EX11.4/Example11_4.sci | 10 |
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 |