summaryrefslogtreecommitdiff
path: root/2045/CH8/EX8.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2045/CH8/EX8.1
downloadScilab-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-x2045/CH8/EX8.1/Ex8_1.pdfbin0 -> 10666 bytes
-rwxr-xr-x2045/CH8/EX8.1/Ex8_1.sce19
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
new file mode 100755
index 000000000..055e94ba4
--- /dev/null
+++ b/2045/CH8/EX8.1/Ex8_1.pdf
Binary files differ
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)));
+
+
+