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 /509/CH18 | |
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 '509/CH18')
-rw-r--r-- | 509/CH18/EX18.1/18_1.sci | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/509/CH18/EX18.1/18_1.sci b/509/CH18/EX18.1/18_1.sci new file mode 100644 index 000000000..451809f22 --- /dev/null +++ b/509/CH18/EX18.1/18_1.sci @@ -0,0 +1,14 @@ +// Chapter 18 Example 1//
+clc
+clear
+//line to ground capacitance= c,supply frequency=f//
+//inductance of the coil =l//
+f=50;
+c=0.2*10^-6;
+l=1/(3*(2*%pi*f)^2*c);
+printf("\n Inductance of the coil %.2f H\n",l);
+//kVA rating of the coil = kVA,operating voltage =v//
+v=132; // in kV//
+vph=v*10^3/sqrt(3);
+kVA=vph^2/(2*%pi*f*l);
+printf("\n kVA rating is given by %.f kVA\n",kVA/10^3);// to get ans in kVA divide by 10^3//
|