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 | |
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')
-rwxr-xr-x | 73/CH11/EX11.11/Example11_11.sci | 17 | ||||
-rwxr-xr-x | 73/CH11/EX11.4/Example11_4.sci | 10 | ||||
-rwxr-xr-x | 73/CH11/EX11.5/Example11_5.sci | 12 |
3 files changed, 39 insertions, 0 deletions
diff --git a/73/CH11/EX11.11/Example11_11.sci b/73/CH11/EX11.11/Example11_11.sci new file mode 100755 index 000000000..48613d3d5 --- /dev/null +++ b/73/CH11/EX11.11/Example11_11.sci @@ -0,0 +1,17 @@ +//Chapter 11_Nonlinear Circuit Application
+//Caption :Design Peak Detector
+//Example11.11: Design a positive peak detector using type uA 760 comparator that can respond to a 100 mV(pp),5 MHz sinusoidal input signal.The device has following specifications. Response time=25 ns, propagation time=12 ns, and Input bias current=8uA.
+//Solution:
+clear;
+clc;
+Vp=50*10^-3;//since peak-peak voltage is 100 mV
+f=5*10^6;
+T=200*10^-9;
+t=15*10^-9//since rise time(t) should be greater than propagation delay(12ns)
+deltaVc=Vp*(1-cos(4*t/T*90*(%pi)/180));
+Ib=8*10^-6;//input bias current
+C=Ib/(deltaVc/T);
+disp('mV',deltaVc*10^3,'voltage change is:')
+disp('pF',C*10^12,'capacitor value is:')
+//Note:
+// the Exact value as calculated is taken to calculate C, so C=293.59555 pF. If approx value of deltaVc is taken as 5 mV then C=320 pF
\ No newline at end of file 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 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 |