diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3035/CH6/EX6.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3035/CH6/EX6.4')
-rwxr-xr-x | 3035/CH6/EX6.4/Ex6_4.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3035/CH6/EX6.4/Ex6_4.sce b/3035/CH6/EX6.4/Ex6_4.sce new file mode 100755 index 000000000..58290a367 --- /dev/null +++ b/3035/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,20 @@ +// Variable Declaration +E = 40.0 //Safe working stress(kV/cm) rms +d = 1.5 //Conductor diameter(cm) +D = 6.7 //Sheath diameter(cm) +t = 0.1 //Thickness of lead tube(cm) + + +// Calculation Section +r = d/2 //Conductor radius(cm) +R = D/2 //Sheath radius(cm) +r_i = r+((R-r)/2)-t/2 //Internal radius of intersheath(cm) +r_e = r_i + t //External radius of intersheath(cm) +V_1 = E*r*log(r_i/r) //Voltage across conductor & intersheath(kV) +V_2 = E*r_e*log(R/r_e) //Voltage across intersheath & earthed sheath(kV) +V = V_1 + V_2 //Safe working voltage with intersheath(kV) +V_no = E*r*log(R/r) //Safe working voltage without intersheath(kV) + +// Result Section +printf('Safe working voltage with intersheath , V = %.2f kV' ,V) +printf('Safe working voltage without intersheath , V = %.2f kV' ,V_no) |