diff options
author | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
---|---|---|
committer | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
commit | 8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch) | |
tree | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/83/CH5/EX5.9 | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-master.tar.gz Xcos_block_examples-master.tar.bz2 Xcos_block_examples-master.zip |
Diffstat (limited to 'Working_Examples/83/CH5/EX5.9')
-rwxr-xr-x | Working_Examples/83/CH5/EX5.9/example_5_9.sce | 33 | ||||
-rwxr-xr-x | Working_Examples/83/CH5/EX5.9/result_example_5_9.txt | 11 |
2 files changed, 44 insertions, 0 deletions
diff --git a/Working_Examples/83/CH5/EX5.9/example_5_9.sce b/Working_Examples/83/CH5/EX5.9/example_5_9.sce new file mode 100755 index 0000000..7ca7bf2 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.9/example_5_9.sce @@ -0,0 +1,33 @@ +//Chapter 5 +//Example 5.9 +//page 165 +//to determine power,voltage,compensating equipment rating +clear;clc; +A=0.85; +B=200; + +//case(a) +Vs=275000; +Vr=275000; +a=5;b=75; //alpha and beta +Qr=0; +//from equation 5.62 +d=b-asind((B/(Vs*Vr))*(Qr+(A*Vr^2*sind(b-a)/B))); //delta +Pr=(Vs*Vr*cosd(b-d)/B)-(A*Vr^2*cosd(b-a)/B); +printf('\n\ncase(a)\nPower at unity powerfactor that can be received =%0.1f MW',Pr/10^6); + +//case(b) +Pr=150*10^6; +d=b-acosd((B/(Vs*Vr))*(Pr+(A*Vr^2*cosd(b-a)/B))); //delta +Qr=(Vs*Vr*sind(b-d)/B)-(A*Vr^2*sind(b-a)/B); +Qc=-Qr; +printf('\n\ncase(b)\nRating of the compensating equipment = %0.2f MVAR',Qc/10^6); +printf('\ni.e the compensating equipment must feed positive VARs into the line'); + + +//case(c) +Pr=150*10^6; +Vs=275000; +//by solving the two conditions given as (i) and (ii), we get +Vr=244.9*10^3; +printf('\n\ncase(c)\nReceiving end voltage = %0.1f kV',Vr/1000); diff --git a/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt b/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt new file mode 100755 index 0000000..18b9c60 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt @@ -0,0 +1,11 @@ + + +case(a) +Power at unity powerfactor that can be received =117.6 MW + +case(b) +Rating of the compensating equipment = 27.40 MVAR +i.e the compensating equipment must feed positive VARs into the line + +case(c) +Receiving end voltage = 244.9 kV |