diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3809/CH6/EX6.6 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3809/CH6/EX6.6')
-rw-r--r-- | 3809/CH6/EX6.6/EX6_6.sce | 24 |
1 files changed, 24 insertions, 0 deletions
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
|