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 /215/CH16/EX16.8/ex16_8.sce | |
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 '215/CH16/EX16.8/ex16_8.sce')
-rwxr-xr-x | 215/CH16/EX16.8/ex16_8.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/215/CH16/EX16.8/ex16_8.sce b/215/CH16/EX16.8/ex16_8.sce new file mode 100755 index 000000000..0b018478a --- /dev/null +++ b/215/CH16/EX16.8/ex16_8.sce @@ -0,0 +1,14 @@ +clc
+//Example 16.8
+//From figure 16.26
+disp('Writing the expression for voltage gain')
+disp('Vout/Vin=4000*(-1/200)*(5000*10^8/s)/((5000+10^8/s)*(5000+10^6/20s))')
+//On simplification
+s=poly(0,'s')
+h=syslin('c',(-2*s)/((1+s/10)*(1+s/20000)))
+disp(h)
+fmin=0.01
+fmax=10^7
+scf(1);clf;
+bode(h,fmin,fmax)
+
|