diff options
Diffstat (limited to '73/CH11/EX11.5')
-rwxr-xr-x | 73/CH11/EX11.5/Example11_5.sci | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/73/CH11/EX11.5/Example11_5.sci b/73/CH11/EX11.5/Example11_5.sci new file mode 100755 index 000000000..fa7332981 --- /dev/null +++ b/73/CH11/EX11.5/Example11_5.sci @@ -0,0 +1,12 @@ +//Chapter 11_Nonlinear Circuit Application
+//Caption : Rise Time
+//Example11.5: The upper 3-dB frequency of an Op-Amp is 1MHz.Calculate the rise time of the output. If the upper 3-dB frequency of the Op-Amp is increased to 50 MHz by reducing the gain such that gain bandwidth product remains constant,then find out the new rise time.Discuss the effect of increasing bandwidth on accuracy of comparator.
+//Solution:
+clear;
+clc;
+F3dB=1*10^6;//upper 3-dB frequency of Op-Amp
+Tr=0.35/F3dB;//from definition of rise time
+disp('n sec',Tr*10^9,'Rise time of the output is:')
+F3dB1=50*10^6;
+Tr1=0.35/F3dB1;
+disp('n sec',Tr1*10^9,'Rise time of the output is:')
\ No newline at end of file |