diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH10/EX10.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '147/CH10/EX10.5')
-rw-r--r-- | 147/CH10/EX10.5/Example10_5.sce | 21 | ||||
-rw-r--r-- | 147/CH10/EX10.5/Result10_5.txt | 3 |
2 files changed, 24 insertions, 0 deletions
diff --git a/147/CH10/EX10.5/Example10_5.sce b/147/CH10/EX10.5/Example10_5.sce new file mode 100644 index 000000000..0f19db771 --- /dev/null +++ b/147/CH10/EX10.5/Example10_5.sce @@ -0,0 +1,21 @@ +close();
+clear;
+clc;
+//voltage gain 'Av'
+Aol = -10^(6);
+Av = 1;
+Rd = 1*10^(6); //ohm
+
+//(a)
+//writing a loop equation
+//let vs be any constant
+vs = 1;
+vo = vs/(1-(1/Aol));
+if(vs==round(vo)) then
+ mprintf("Prooved that vo=vs\n\n");
+end
+
+//(b)
+//amplifier input impedance 'Zin'
+Zin = (1-Aol)*Rd; //ohm
+mprintf("Zin = %d Tohm",Zin/(10^12));
\ No newline at end of file diff --git a/147/CH10/EX10.5/Result10_5.txt b/147/CH10/EX10.5/Result10_5.txt new file mode 100644 index 000000000..f9fb29311 --- /dev/null +++ b/147/CH10/EX10.5/Result10_5.txt @@ -0,0 +1,3 @@ +Prooved that vo=vs
+
+Zin = 1 Tohm
\ No newline at end of file |