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/CH17/EX17.9/ch17_9.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/CH17/EX17.9/ch17_9.sce')
-rwxr-xr-x | 1055/CH17/EX17.9/ch17_9.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1055/CH17/EX17.9/ch17_9.sce b/1055/CH17/EX17.9/ch17_9.sce new file mode 100755 index 000000000..65d8efa01 --- /dev/null +++ b/1055/CH17/EX17.9/ch17_9.sce @@ -0,0 +1,19 @@ +//Determine the reduced admittance matrices for prefault, fault and post fault conditions and determine the power angle characterstics for three conditions.
+clear
+clc;
+Y=[-%i*8.33 0 %i*8.33 0;0 -%i*28.57 0 %i*28.75;%i*8.33 0 -%i*15.67 %i*7.33;0 %i*28.57 %i*7.33 -%i*35.9];
+YBB=[-%i*15.67 %i*7.33;%i*7.33 -%i*35.9];
+YAA=[-%i*8.33 0;0 -%i*28.57];
+YAB=[%i*8.33 0;0 %i*28.57];
+YBA=YAB;
+Y=YAA-(YAB*(inv(YBB))*YBA);
+Y1=([-%i*8.33 0;0 -%i*28.57])-(([0;(%i*28.57/-%i*35.9)]*[0 %i*28.57]));
+disp(Y1,"Reduced admittance matrix during fault=");
+Yfull=[-%i*8.33 0 %i*8.33 0;0 -%i*28.57 0 %i*28.75;%i*8.33 0 -%i*12.33 %i*4;0 %i*28.57 %i*4 -%i*32.57];
+YBB=[-%i*12.33 %i*4;%i*4 -%i*32.57];
+Y=YAA-(YAB*(inv(YBB))*YBA);
+disp(Y,"(i) Post fault condition ,reduced matrix=");
+Y12=Y(1,2);
+E1=1.1;
+E2=1;
+printf("\n Power angle characterstics , Pe= %fsind",abs(Y12)*E1*E2);
|