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 /3682/CH4/EX4.7/Ex4_7.sce | |
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 '3682/CH4/EX4.7/Ex4_7.sce')
-rw-r--r-- | 3682/CH4/EX4.7/Ex4_7.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3682/CH4/EX4.7/Ex4_7.sce b/3682/CH4/EX4.7/Ex4_7.sce new file mode 100644 index 000000000..60e6d13f3 --- /dev/null +++ b/3682/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,23 @@ +// Exa 4.7
+
+clc;
+clear;
+
+// Given data
+
+// Referring Circuit in Fig. 4.27
+
+// Solution
+
+printf(' The transfer gain of the cirucuit is - \n');
+printf(' Vo(s) = -Zf = (R2+R3)+s*C*R2*R3 \n');
+printf(' ---- ---- -----------------\n');
+printf(' Vi(s) = R1 = R1*(1+s*C*R3)\n');
+
+printf('\n i.e R1(1+s*C*R3)*Vo(s)+[(R2+R3)+s*C*R2*R3]*Vi(s) = 0.\n');
+printf('\n\n Writing above equation in time domain (s→d/dt), we get,\n');
+printf('\n R1 + C*R3*R1(d/dt Vo(t))+ [(R2+R3)+c*R2*R3]*(d/dt Vi(t)) = 0 ...eq(1)\n\n');
+
+printf(' Since, vi(t) = V, \n Therefore, d/dt Vi(t) = 0.\n\n');
+printf(' Therefore eq(1) becomes- \n C*(d/dt vo) + vo/R3 + V/R1 + (R2/R1*R3)*V = 0.\n');
+printf(' \n Thus, output vo(t) is given by a differential equation as shown above. \n');
|