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.5 | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.gz Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.bz2 Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.zip |
Diffstat (limited to 'Working_Examples/83/CH5/EX5.5')
-rwxr-xr-x | Working_Examples/83/CH5/EX5.5/example_5_5.sce | 29 | ||||
-rwxr-xr-x | Working_Examples/83/CH5/EX5.5/result_example_5_5.txt | 11 |
2 files changed, 40 insertions, 0 deletions
diff --git a/Working_Examples/83/CH5/EX5.5/example_5_5.sce b/Working_Examples/83/CH5/EX5.5/example_5_5.sce new file mode 100755 index 0000000..8c62731 --- /dev/null +++ b/Working_Examples/83/CH5/EX5.5/example_5_5.sce @@ -0,0 +1,29 @@ +//Chapter 5 +//Example 5.5 +//page 147 +//to find maximum permissible length and and frequency +clc;clear; +R=0.125*400; +X=0.4*400; +Y=2.8*(10^-6)*400*%i; +Z=R+X*%i; + +//(i) At no-load +A=1+(Y*Z/2); +C=Y*(1+Y*Z/6); +VR_line=220000/abs(A); +Is=abs(C)*VR_line/sqrt(3); +printf('\n\n |VR|line = %d kV',VR_line/1000); +printf('\n |Is| = %d A',Is); + +//(ii) to find maximum permissible length +//By solving the equations shown in the book,we get +l=sqrt((1-0.936)/(0.56*10^(-6))); +printf('\n\n Maximum permissible length of the line = %d km',l); + +//(iii) to find maximum permissible frequency for the case(i) +//By solving the equations shown in the book,we get +f=sqrt(((1-0.88)*50*50)/(0.5*1.12*10^-3*160)); +printf('\n\n Maximum permissible frequency = %0.1f Hz\n\n',f); + + diff --git a/Working_Examples/83/CH5/EX5.5/result_example_5_5.txt b/Working_Examples/83/CH5/EX5.5/result_example_5_5.txt new file mode 100755 index 0000000..d027f9c --- /dev/null +++ b/Working_Examples/83/CH5/EX5.5/result_example_5_5.txt @@ -0,0 +1,11 @@ + + + + |VR|line = 241 kV + |Is| = 151 A + + Maximum permissible length of the line = 338 km + + Maximum permissible frequency = 57.9 Hz + + |