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 /3487/CH4/EX4.1/Ex4_1.sce | |
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 '3487/CH4/EX4.1/Ex4_1.sce')
-rw-r--r-- | 3487/CH4/EX4.1/Ex4_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3487/CH4/EX4.1/Ex4_1.sce b/3487/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..915af16c8 --- /dev/null +++ b/3487/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,17 @@ +//Chapter 4,Example 4.1 Page 144 +clc +clear +//Determine the voltge when S=2 cm +S = 0.2 // cm +Vb = 24.22*S+6.08*sqrt(S) +printf (" Vb when S = 2 cm is %f kV \n ",Vb) +//Determine the voltge when S=1.5 cm +S = 1.5 // cm +Vb = 24.22*S+6.08*sqrt(S) +printf (" Vb when S = 1.5 is %f kV \n ",Vb) +b = 75 +t = 35 +D = (3.92*b)/(273+t) +printf (" Air density correction factor= %f \n ",D) + +//Answer may vary due to round off error |