diff options
Diffstat (limited to '3035/CH4/EX4.9/Ex4_9.sce')
-rwxr-xr-x | 3035/CH4/EX4.9/Ex4_9.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3035/CH4/EX4.9/Ex4_9.sce b/3035/CH4/EX4.9/Ex4_9.sce new file mode 100755 index 000000000..368774e84 --- /dev/null +++ b/3035/CH4/EX4.9/Ex4_9.sce @@ -0,0 +1,14 @@ + +// Variable Declaration +r = 0.015 //Radius of each conductor(m) +D_ab = 15 //Horizontal distance b/w conductor a & b(m) +D_bc = 15 //Horizontal distance b/w conductor b & c(m) +D_ac = 30 //Horizontal distance b/w conductor a & c(m) + +// Calculation Section +D_m = (D_ab * D_bc * D_ac)**(1.0/3) //Geometric mean separation(m) +D_s = 2**(1.0/2) * r //Geometric mean radius(m) +C_n = 2 * %pi * 8.854 * 10**(-9) /(log(D_m/D_s)) //Capacitance/phase/km(F/km) + +// Result Section +printf('Capacitance per phase , C_n = %.3e F/km' ,C_n) |