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 --- 3809/CH6/EX6.6/EX6_6.sce | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 3809/CH6/EX6.6/EX6_6.sce (limited to '3809/CH6/EX6.6/EX6_6.sce') diff --git a/3809/CH6/EX6.6/EX6_6.sce b/3809/CH6/EX6.6/EX6_6.sce new file mode 100644 index 000000000..3e5901737 --- /dev/null +++ b/3809/CH6/EX6.6/EX6_6.sce @@ -0,0 +1,24 @@ +//Chapter 6, Example 6.6 +clc +//Initialisation +C=3*10**-8 //capacitance in farad +pi=3.14 //pi +f=10**3 //frequency in hertz +V=10 //voltage +R=10**4 //resistance in ohm +i=5 //current in ampere +r=10 //resistance in ohm +L=25*10**-3 //inductance in henry +VL=39.3 //from phasor diagram +VR=50 //from phasor diagram + + +//Calculation +w=2*pi*f //angular frequency +Xc=1/(w*C) //capacitive reactance in ohm +I=sqrt((V**2)/(R**2+Xc**2)) //current in ampere +phi=atan(Xc/R) //phase angle + +//Results +printf("Current, I = %d uA\n",I*10**6) +printf("Phase Angle, phi = %.2f Degree",phi*180/pi) //wrong answer in textbook -- cgit