summaryrefslogtreecommitdiff
path: root/3682/CH4/EX4.7/Ex4_7.sce
blob: 60e6d13f32dc3c1d2366fa95d856afcb8aecb839 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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');