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/CH11/EX11.2/example_11_2.sce | |
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/CH11/EX11.2/example_11_2.sce')
-rwxr-xr-x | Working_Examples/83/CH11/EX11.2/example_11_2.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Working_Examples/83/CH11/EX11.2/example_11_2.sce b/Working_Examples/83/CH11/EX11.2/example_11_2.sce new file mode 100755 index 0000000..e45c76c --- /dev/null +++ b/Working_Examples/83/CH11/EX11.2/example_11_2.sce @@ -0,0 +1,23 @@ +//Chapter 11 +//Example 11.2 +//page 408 +//To find fault current and voltage across the grounding resistor +clear;clc; + +X1eq=(%i*0.18)/2; +X2eq=(%i*0.15)/2; +Z0eq=(%i*0.10)+3*(2*20/(11^2)); + +Ea=1; + +//calculation of fault current +printf('\nFault current is given by '); +If=(3*Ea)/(X1eq+X2eq+Z0eq) + +//current in grounding resistor +Ifg=abs(If)*(20/(11*sqrt(3))); +printf('\n\nCurrent through grounding resistor Ifg=%0.2fkA',Ifg); + +//voltage across grounding resistor +Vgr=abs(If*(2*20/(11^2))*(11/sqrt(3))); +printf('\n\nVoltage across grounding resistor Vgr=%0.2fkV\n\n',Vgr);
\ No newline at end of file |