From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 20/CH3/EX3.16.161/example3_16_pg161.sce | 28 ++++++++++++++++++++++++++++ 20/CH3/EX3.16.161/example3_16_pg161.txt | 6 ++++++ 2 files changed, 34 insertions(+) create mode 100755 20/CH3/EX3.16.161/example3_16_pg161.sce create mode 100755 20/CH3/EX3.16.161/example3_16_pg161.txt (limited to '20/CH3/EX3.16.161') 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); -- cgit