summaryrefslogtreecommitdiff
path: root/73/CH11/EX11.5/Example11_5.sci
blob: fa7332981e4397fe6ccc50da4e4dd00f8a926b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
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:')