From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3816/CH3/EX3.1/3_1.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3816/CH3/EX3.1/3_1.sce (limited to '3816/CH3/EX3.1/3_1.sce') diff --git a/3816/CH3/EX3.1/3_1.sce b/3816/CH3/EX3.1/3_1.sce new file mode 100644 index 000000000..beaaba3f5 --- /dev/null +++ b/3816/CH3/EX3.1/3_1.sce @@ -0,0 +1,23 @@ +clc; +clear; +hp=0.15;//from diagram +F=9000; +V=80;//Working voltage +Lmt=1.25;//Mean length of the turn +Vp=4;//voltage per pole +disp('For a copper winding at 75 deg cel:') +a=0.021*(10^(-6))*Lmt*(F/Vp); +disp(a,'The conductor area is:') +Vp=4;//voltage per pole +S=Lmt*hp; +C=0.019;//Assumed value +disp('For a temp rise of 65 deg cel:') +theta_m=65;//temperature rise +p=(theta_m*S)/C; +disp(p,'The power dissipated is:') +I=p/Vp; +disp(I,'The field current is:') +N=F/I; +disp(N,'The number of turns per pole is:') +J=I/N; +disp(J,'The current density is:') -- cgit