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 /2045/CH8 | |
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 '2045/CH8')
-rwxr-xr-x | 2045/CH8/EX8.1/Ex8_1.pdf | bin | 0 -> 10666 bytes | |||
-rwxr-xr-x | 2045/CH8/EX8.1/Ex8_1.sce | 19 | ||||
-rwxr-xr-x | 2045/CH8/EX8.2/Ex8_2.pdf | bin | 0 -> 9974 bytes | |||
-rwxr-xr-x | 2045/CH8/EX8.2/Ex8_2.sce | 11 | ||||
-rwxr-xr-x | 2045/CH8/EX8.3/Ex8_3.pdf | bin | 0 -> 10529 bytes | |||
-rwxr-xr-x | 2045/CH8/EX8.3/Ex8_3.sce | 11 | ||||
-rwxr-xr-x | 2045/CH8/EX8.6/Ex8_6.pdf | bin | 0 -> 12183 bytes | |||
-rwxr-xr-x | 2045/CH8/EX8.6/Ex8_6.sce | 19 | ||||
-rwxr-xr-x | 2045/CH8/EX8.7/Ex8_7.pdf | bin | 0 -> 10571 bytes | |||
-rwxr-xr-x | 2045/CH8/EX8.7/Ex8_7.sce | 6 | ||||
-rwxr-xr-x | 2045/CH8/EX8.9/Ex8_9.pdf | bin | 0 -> 12807 bytes | |||
-rwxr-xr-x | 2045/CH8/EX8.9/Ex8_9.sce | 20 |
12 files changed, 86 insertions, 0 deletions
diff --git a/2045/CH8/EX8.1/Ex8_1.pdf b/2045/CH8/EX8.1/Ex8_1.pdf Binary files differnew file mode 100755 index 000000000..055e94ba4 --- /dev/null +++ b/2045/CH8/EX8.1/Ex8_1.pdf diff --git a/2045/CH8/EX8.1/Ex8_1.sce b/2045/CH8/EX8.1/Ex8_1.sce new file mode 100755 index 000000000..bae56b215 --- /dev/null +++ b/2045/CH8/EX8.1/Ex8_1.sce @@ -0,0 +1,19 @@ +//pagenumber 399 example 1
+clear
+freque=5*10^3;//hertz
+//(1)
+g=2*10^-3;//ampere per volt
+rd=10*10^3;//ohm
+r1=30*10^3;//ohm
+r12=r1*r1/(r1+r1);
+volgai=-(g*r12*rd)/(r12+rd);
+disp("voltage gain = "+string((volgai)));//correction r12 should be taken as 15*10^3ohm in book
+//(2) capacitance included
+c=0.025*10^-6;//farad
+frequ1=1/((2*3.14*(((rd*r1)/(rd+r1))+r1))*c);
+volgai=(volgai/(sqrt((1+(frequ1/freque)^2))));
+
+disp("voltage gain = "+string((volgai)));
+
+
+
diff --git a/2045/CH8/EX8.2/Ex8_2.pdf b/2045/CH8/EX8.2/Ex8_2.pdf Binary files differnew file mode 100755 index 000000000..43985ecfc --- /dev/null +++ b/2045/CH8/EX8.2/Ex8_2.pdf diff --git a/2045/CH8/EX8.2/Ex8_2.sce b/2045/CH8/EX8.2/Ex8_2.sce new file mode 100755 index 000000000..0d8b416d1 --- /dev/null +++ b/2045/CH8/EX8.2/Ex8_2.sce @@ -0,0 +1,11 @@ +//pagenumber 400 example 2
+clear
+rd=80*10^3;//ohm
+r1=8*10^3;//ohm
+rd12=5*10^3;//ohm
+rd1=rd*r1/(rd+r1);
+u=30;
+volgai=-(u*rd1)/(rd1+rd12);
+
+disp("voltage gain "+string((volgai)));
+
diff --git a/2045/CH8/EX8.3/Ex8_3.pdf b/2045/CH8/EX8.3/Ex8_3.pdf Binary files differnew file mode 100755 index 000000000..18bcfc02d --- /dev/null +++ b/2045/CH8/EX8.3/Ex8_3.pdf diff --git a/2045/CH8/EX8.3/Ex8_3.sce b/2045/CH8/EX8.3/Ex8_3.sce new file mode 100755 index 000000000..5be9fb290 --- /dev/null +++ b/2045/CH8/EX8.3/Ex8_3.sce @@ -0,0 +1,11 @@ +//pagenumber 401 example 3
+clear
+r1=60*10^3;//ohm
+volgai=-17.7;
+rg=80*10^3;//ohm
+volgai=((volgai*rg)/(1-volgai))/((rg/(1-volgai))+r1);
+disp("voltage gain = "+string((volgai)));
+
+
+
+
diff --git a/2045/CH8/EX8.6/Ex8_6.pdf b/2045/CH8/EX8.6/Ex8_6.pdf Binary files differnew file mode 100755 index 000000000..d8b7e2da2 --- /dev/null +++ b/2045/CH8/EX8.6/Ex8_6.pdf diff --git a/2045/CH8/EX8.6/Ex8_6.sce b/2045/CH8/EX8.6/Ex8_6.sce new file mode 100755 index 000000000..86f93ec2a --- /dev/null +++ b/2045/CH8/EX8.6/Ex8_6.sce @@ -0,0 +1,19 @@ +//pagenumber 405 example 6
+clear
+vds=14;//volt
+idq=3*10^-3;//ampere
+vdd=20;//volt
+g=2*10^-2;
+rd=50*10^3;//ohm
+vgs=-1.5;//volt
+w=(vdd-vds)/idq;
+r1=-vgs/idq;
+r2=w-r1;
+inpres=1/(1-(0.8*((r1)/(r1+r2))));
+volgai=(r1+r2)/(r1+r2+(1/(g)));
+disp("r1 = "+string((r1))+"ohm");
+disp("effective input resistance = "+string((inpres))+"r3ohm");
+disp("r2 = "+string((r2))+"ohm");
+
+
+disp("voltage gain = "+string((volgai))+"av`");
diff --git a/2045/CH8/EX8.7/Ex8_7.pdf b/2045/CH8/EX8.7/Ex8_7.pdf Binary files differnew file mode 100755 index 000000000..ca0b3365e --- /dev/null +++ b/2045/CH8/EX8.7/Ex8_7.pdf diff --git a/2045/CH8/EX8.7/Ex8_7.sce b/2045/CH8/EX8.7/Ex8_7.sce new file mode 100755 index 000000000..26aa1f051 --- /dev/null +++ b/2045/CH8/EX8.7/Ex8_7.sce @@ -0,0 +1,6 @@ +//pagenumber 405 example 7
+clear
+rg=40*10^3;//ohm
+voltag=(1-6*50)*3.3*10^3/(5.3*10^3);
+
+disp("output voltage = "+string((voltag))+"volt");//correction in the book
diff --git a/2045/CH8/EX8.9/Ex8_9.pdf b/2045/CH8/EX8.9/Ex8_9.pdf Binary files differnew file mode 100755 index 000000000..071dcf595 --- /dev/null +++ b/2045/CH8/EX8.9/Ex8_9.pdf diff --git a/2045/CH8/EX8.9/Ex8_9.sce b/2045/CH8/EX8.9/Ex8_9.sce new file mode 100755 index 000000000..f854cc915 --- /dev/null +++ b/2045/CH8/EX8.9/Ex8_9.sce @@ -0,0 +1,20 @@ +//pagenumber 406 example 9
+clear
+u=50;
+rd=10*10^3;//ohm
+cgs=5*10^-12;//farad
+cgd=2*10^-12;//farad
+cds=2*10^-12;//farad
+freque=3;//decibel
+g=u/rd;
+volgai=-u*rd/(rd+rd);
+req=rd*rd/(rd+rd);
+frequ1=1/(2*3.14*cgd*req);
+disp("voltage gain = "+string((volgai)));//correction in book
+disp("frequency = "+string((frequ1))+"hertz");
+capac1=cgd*(1+g);
+disp("output capacitance = "+string((capac1))+"farad");
+
+
+
+disp("req = "+string((req))+"ohm");
|