Assignment 1: CLC Clear Resistance 10e3 Capacitance 16e-9
Assignment 1: CLC Clear Resistance 10e3 Capacitance 16e-9
1 (a)
( (b)
Testing for linearity by testing for homogeneity. If the equation of the circuit is linear ( )
then scaling the input Vin by a factor of 2 would scale the output Vout by a factor of 2 that is ( )
so , h(f) =
(b) using the following matlab code, the following graph has been generated.
Features include, Practically no gain for the opamp at frequencies smaller than 102 HZ.
3 The vD and the were found using an iterative method the following matlab code was used to find the answer
clc; clear;
a = 6e-3; vd = 5; vs = 10; r = 1000; iterations = 20; x = 0; while (x < iterations); i = a*vd^(1/5); vd = (i*r)-vs; vd = vd*-1; x = x+1;
disp(vd); end
after 20 iterations the answer converges to VD = 2.6880 V and by substituting this into the original equation we get .