From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3673/CH7/EX7.a.1/Example_a_7_1.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3673/CH7/EX7.a.1/Example_a_7_1.sce (limited to '3673/CH7/EX7.a.1') diff --git a/3673/CH7/EX7.a.1/Example_a_7_1.sce b/3673/CH7/EX7.a.1/Example_a_7_1.sce new file mode 100644 index 000000000..6baf8504d --- /dev/null +++ b/3673/CH7/EX7.a.1/Example_a_7_1.sce @@ -0,0 +1,17 @@ +//Example_a_7_1 page no:269 +clc; +R=2; +C=-2*%i; +L1=8*%i; +L2=6*%i; +V=5/(0.5+(1/L1)+(1/(4*%i))); +Vmag=sqrt(real(V)^2+imag(V)^2); +Vang=atand(imag(V)/real(V)); +Vabmag=Vmag*6/4; +Vabang=Vang; +disp(Vabmag,"the magnitude of voltage across AB is (in V)"); +disp(Vabang,"the angle of voltage across AB is (in degree)"); +Iamag=Vmag/2; +Iaang=Vang-(-90); +disp(Iamag,"the magnitude of short circuited current through terminals AB is (in A)"); +disp(Iaang,"the angle of short circuited current through terminals AB is (in degree)"); -- cgit