diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3472/CH11/EX11.5/Example11_5.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3472/CH11/EX11.5/Example11_5.sce')
-rw-r--r-- | 3472/CH11/EX11.5/Example11_5.sce | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/3472/CH11/EX11.5/Example11_5.sce b/3472/CH11/EX11.5/Example11_5.sce new file mode 100644 index 000000000..8580249b6 --- /dev/null +++ b/3472/CH11/EX11.5/Example11_5.sce @@ -0,0 +1,34 @@ +// 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 4: OVERHEAD LINE INSULATORS
+
+// EXAMPLE : 4.5 :
+// Page number 185
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+n = 8.0 // Number of insulators
+
+// Calculations
+A = 1.0/(n-1) // Line to pin capacitance
+B = 2.0/(n-2) // Line to pin capacitance
+C = 3.0/(n-3) // Line to pin capacitance
+D = 4.0/(n-4) // Line to pin capacitance
+E = 5.0/(n-5) // Line to pin capacitance
+F = 6.0/(n-6) // Line to pin capacitance
+G = 7.0/(n-7) // Line to pin capacitance
+
+// Results
+disp("PART II - EXAMPLE : 4.5 : SOLUTION :-")
+printf("\nLine-to-pin capacitance are:")
+printf("\n A = %.3f*C", A)
+printf("\n B = %.3f*C", B)
+printf("\n C = %.3f*C", C)
+printf("\n D = %.3f*C", D)
+printf("\n E = %.3f*C", E)
+printf("\n F = %.3f*C", F)
+printf("\n G = %.3f*C", G)
|