summaryrefslogtreecommitdiff
path: root/3472/CH14/EX14.4/Example14_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3472/CH14/EX14.4/Example14_4.sce')
-rw-r--r--3472/CH14/EX14.4/Example14_4.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3472/CH14/EX14.4/Example14_4.sce b/3472/CH14/EX14.4/Example14_4.sce
new file mode 100644
index 000000000..60b14d907
--- /dev/null
+++ b/3472/CH14/EX14.4/Example14_4.sce
@@ -0,0 +1,26 @@
+// A Texbook on POWER SYSTEM ENGINEERING
+// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
+// DHANPAT RAI & Co.
+// SECOND EDITION
+
+// PART II : TRANSMISSION AND DISTRIBUTION
+// CHAPTER 7: UNDERGROUND CABLES
+
+// EXAMPLE : 7.4 :
+// Page number 212
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+V_l = 132.0 // Line Voltage(kV)
+g_max = 60.0 // Maximum Line Voltage(kV)
+
+// Calculations
+V = V_l/3**0.5*2**0.5 // Phase Voltage(kV)
+d = 2*V/g_max // Core diameter(cm)
+D = 2.718*d // Overall diameter(cm)
+
+// Results
+disp("PART II - EXAMPLE : 7.4 : SOLUTION :-")
+printf("\nMost economical diameter of a single-core cable, d = %.1f cm", d)
+printf("\nOverall diameter of the insulation, D = %.3f cm\n", D)
+printf("\nNOTE: Slight change in obtained answer due to precision")