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 /20/CH3 | |
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 '20/CH3')
-rwxr-xr-x | 20/CH3/EX3.16.161/example3_16_pg161.sce | 28 | ||||
-rwxr-xr-x | 20/CH3/EX3.16.161/example3_16_pg161.txt | 6 |
2 files changed, 34 insertions, 0 deletions
diff --git a/20/CH3/EX3.16.161/example3_16_pg161.sce b/20/CH3/EX3.16.161/example3_16_pg161.sce new file mode 100755 index 000000000..6b086191a --- /dev/null +++ b/20/CH3/EX3.16.161/example3_16_pg161.sce @@ -0,0 +1,28 @@ +// Example3_16_pg161.sce +// To find radial force due to current +// Theory of Alternating Current Machinery by Alexander Langsdorf +// First Edition 1999, Thirty Second reprint +// Tata McGraw Hill Publishing Company +// Example in Page 161 + + +clear; clc; close; + +// Given data +va = 200e+3; // Volt Amperes of transformer, VA +v1 = 11000; // Voltage in volts +v2 = 2300; // Voltage in volts +T = 46.3; // Mean length of the turn, inches +n = 455; // Number of turns +I = 1320; // Current in Amperes +l = 35; // length in inches +k = 1.8; +zeq_ht = 8.33; + +// Calculations + +F_av = (0.45/1e+7)*((T*n^2*I^2)/(k*l)); +printf("\n The radial force due to the current of %d Amps for given data is %d lb\n", I, round(F_av)); + +// Result +// The radial force due to the current of 1320 Amps for given data is 11930 lb diff --git a/20/CH3/EX3.16.161/example3_16_pg161.txt b/20/CH3/EX3.16.161/example3_16_pg161.txt new file mode 100755 index 000000000..4eb3e149e --- /dev/null +++ b/20/CH3/EX3.16.161/example3_16_pg161.txt @@ -0,0 +1,6 @@ + +-->exec('/home/octav/Techpassion_project_updated_19_June/Codes/Chapter_3/code/example3_16_pg161.sce', -1) + + The radial force due to the current of 1320 Amps for given data is 11930 lb + +-->diary(0); |