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/EX8.1 | |
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/EX8.1')
-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 |
2 files changed, 19 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)));
+
+
+
|