diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1055/CH13/EX13.1/ch13_1.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1055/CH13/EX13.1/ch13_1.sce')
-rwxr-xr-x | 1055/CH13/EX13.1/ch13_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1055/CH13/EX13.1/ch13_1.sce b/1055/CH13/EX13.1/ch13_1.sce new file mode 100755 index 000000000..45557e458 --- /dev/null +++ b/1055/CH13/EX13.1/ch13_1.sce @@ -0,0 +1,13 @@ +// Determine the symmetrical components of voltages.
+clear
+clc;
+Va=100*(cosd(0) + %i*sind(0));
+Vb=33*(cosd(-100) + %i*sind(-100));
+Vc=38*(cosd(176.5) + %i*sind(176.5));
+L=1*(cosd(120) + %i*sind(120));
+Va1=((Va + L*Vb + (L^2)*Vc))/3;
+Va2=((Va + L*Vc + (L^2)*Vb))/3;
+Vco=((Va + Vb + Vc))/3;
+disp(Va1,"Va1=");
+disp(Va2,"Va2=");
+disp(Vco,"Vco=");
|