summaryrefslogtreecommitdiff
path: root/Working_Examples/83/CH3/EX3.3
diff options
context:
space:
mode:
authorSiddharth Agarwal2019-09-03 18:27:40 +0530
committerSiddharth Agarwal2019-09-03 18:27:40 +0530
commit8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch)
treee1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/83/CH3/EX3.3
parent52a477ec613900885e29c4a0b02806a415b4f83a (diff)
downloadXcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.gz
Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.bz2
Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.zip
Xcos examples from textbooks and for blocksHEADmaster
Diffstat (limited to 'Working_Examples/83/CH3/EX3.3')
-rwxr-xr-xWorking_Examples/83/CH3/EX3.3/example_3_3.sce31
-rwxr-xr-xWorking_Examples/83/CH3/EX3.3/result_example_3_3.txt8
2 files changed, 39 insertions, 0 deletions
diff --git a/Working_Examples/83/CH3/EX3.3/example_3_3.sce b/Working_Examples/83/CH3/EX3.3/example_3_3.sce
new file mode 100755
index 0000000..07e3791
--- /dev/null
+++ b/Working_Examples/83/CH3/EX3.3/example_3_3.sce
@@ -0,0 +1,31 @@
+//Chapter 3
+//Example 3.3
+//page 88
+//To claculate the capacitance to neutral and charging current of a double circuit three phase transmission line
+clear;clc;
+
+//After deriving the equation for Cn from the textbook and starting calculation from Eq 3.36 onwards
+
+r=0.865*10^(-2); frequency=50; v=110e3;
+h=6; d=8; j=8; //Referring to fig given in the textbook
+
+i=((j/2)^2+((d-h)/2)^2)^(1/2);
+f=(j^2+h^2)^(1/2);
+g=(7^2+4^2)^(1/2);
+
+
+Cn=4*%pi*8.85*10^(-12)/(log((((i^2)*(g^2)*j*h)/((r^3)*(f^2*d)))^(1/3)));
+
+Cn=Cn*1000 ; //Cn is in per m.to convert it to per km,we multiply by 1000
+WCn=2*%pi*frequency*Cn;
+
+Icp=(v/sqrt(3))*WCn;
+
+Icc=Icp/2;
+
+printf("\nTotal capacitance to neutral for two conductors in parallel = %0.6f uF/km \n\n",Cn*10^(6));
+printf("Charging current/phase = %0.3f A/km \n\n",Icp);
+printf("Charging current/conductor = %0.4f A/km \n\n",Icc);
+
+
+
diff --git a/Working_Examples/83/CH3/EX3.3/result_example_3_3.txt b/Working_Examples/83/CH3/EX3.3/result_example_3_3.txt
new file mode 100755
index 0000000..6602fe5
--- /dev/null
+++ b/Working_Examples/83/CH3/EX3.3/result_example_3_3.txt
@@ -0,0 +1,8 @@
+
+
+Total capacitance to neutral for two conductors in parallel = 0.018088 uF/km
+
+Charging current/phase = 0.361 A/km
+
+Charging current/conductor = 0.1804 A/km
+