summaryrefslogtreecommitdiff
path: root/3311/CH7/EX7.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3311/CH7/EX7.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3311/CH7/EX7.1')
-rwxr-xr-x3311/CH7/EX7.1/Ex7_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3311/CH7/EX7.1/Ex7_1.sce b/3311/CH7/EX7.1/Ex7_1.sce
new file mode 100755
index 000000000..d8213c7e9
--- /dev/null
+++ b/3311/CH7/EX7.1/Ex7_1.sce
@@ -0,0 +1,16 @@
+// chapter 7
+// example 7.1
+// Compute the peak value of circulating current
+// page-431
+clear;
+clc;
+// given
+Erms=230; // in V (per phase voltage supply)
+w=315; // in rad/s
+L=12; // in mH
+alpha1=60, alpha2=120; // in degree
+// calculate
+L=L*1E-3; // changing unit from mH to H
+i_cp=(3*sqrt(2)*Erms/(w*L))*(1-cosd(30)); // calculation of peak value of circulating current
+printf("\nThe peak value of circulating current is \t i_cp=%.2f A",i_cp);
+// Note: The answer varies slightly due to precise calculation \ No newline at end of file