write circuit analysis technical report for electrical engineering lab
Based in the documents below write a lab report, make sure to follow the lab format.
Save your time - order a paper!
Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines
Order Paper Nowand use our result from Matlab
R1= 1000;
R2 =4700;
R3 = 8200;
R4 = 1000;
R5 = 680;
R6 = 100;
%V=[v1;v2;v3];
K = [(1/R1) + (1/R2)+(1/R6), -1/R2, -1/R6; (-1/R2), (1/R2)+(1/R3)+(1/R4), -1/R4; -1/R6, (-1/R4),(1/R4)+(1/R5)+(1/R6)];
f = [10/R1;0;0];
V = inv(K) * f
VR1 = 10 – V(1)
VR2 = V(1)-V(2)
VR3 =V(2)
VR4 =V(3)-V(2)
VR5 =V(3)
VR6 = V(1)-V(3)
IR1 = VR1/R1
IR2 = VR2/R2
IR3 = VR3/R3
IR4 = VR4/R4
IR5 = VR5/R5
IR6 = VR6/R6
PR1 = IR1^2*R1
PR2 = IR2^2*R2
PR3 = IR3^2*R3
PR4 = IR4^2*R4
PR5 = IR5^2*R5
PR6 = IR6^2*R6