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 /3816/CH8/EX8.9 | |
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 '3816/CH8/EX8.9')
-rw-r--r-- | 3816/CH8/EX8.9/8_9.png | bin | 0 -> 30271 bytes | |||
-rw-r--r-- | 3816/CH8/EX8.9/8_9.sce | 23 |
2 files changed, 23 insertions, 0 deletions
diff --git a/3816/CH8/EX8.9/8_9.png b/3816/CH8/EX8.9/8_9.png Binary files differnew file mode 100644 index 000000000..5314bc4a2 --- /dev/null +++ b/3816/CH8/EX8.9/8_9.png diff --git a/3816/CH8/EX8.9/8_9.sce b/3816/CH8/EX8.9/8_9.sce new file mode 100644 index 000000000..7c9391379 --- /dev/null +++ b/3816/CH8/EX8.9/8_9.sce @@ -0,0 +1,23 @@ +clc;
+clear;
+disp('Self Excitation')
+Sm=24*10^(-3);//minimum capacitive susceptance
+C=Sm/314;
+disp(C,'The capacitance at self excitation is:')
+disp('For generating 3KV:')
+Sm1=43*10^(-3);//Using method of interpolation we get 43ms for 1.73KV/Ph(3KV line)
+C1=Sm1/314;
+disp(C1,'The capacitance for generating 3KV is:')
+disp('To determine the operating conditions for a load(125-20i)A at 3KV 50Hz')
+Im=60;
+It=10;
+Ir=125;
+Ix=20;
+Ia=Ir+It;
+Ia1=Ix+Im;
+Ic=104;
+Sm2=59.6*10^(-3);
+C2=Sm2/314;
+disp(Ia1,Ia,'The active currents are:')
+disp(Ic,'The capacitive current is:')
+disp(C2,'The capacitance in micro farad is:')
|