summaryrefslogtreecommitdiff
path: root/1418/CH25/EX25.2/EX25_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1418/CH25/EX25.2/EX25_2.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1418/CH25/EX25.2/EX25_2.sce')
-rw-r--r--1418/CH25/EX25.2/EX25_2.sce58
1 files changed, 58 insertions, 0 deletions
diff --git a/1418/CH25/EX25.2/EX25_2.sce b/1418/CH25/EX25.2/EX25_2.sce
new file mode 100644
index 000000000..b110bb6dd
--- /dev/null
+++ b/1418/CH25/EX25.2/EX25_2.sce
@@ -0,0 +1,58 @@
+//EXAMPLE 25.2
+//ELECTROMAGNETIC RELAY
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+T=800;..........//Total number of turns
+CA=5*5;..........//Cross sectional area in Centi Meter^2
+x1=0.5;..........//Air gap length in Centi Meter
+Li=1.25;.............//Coil current in Amperes
+
+Pag=(4*3.14*10^-7*CA*10^-4)/(agl*10^-2);........//Permeance at airgap
+Lx1=T^2*Pag;.....................................//Coil Inductance at x1 in Henry
+y=round(Lx1*1000)/1000;...........................//Rounding of decimal places
+disp(y,"(a).(i).Coil Inductance in Henry:");
+E=(0.5*y*Li^2);.....................//Energy stored in magnetic field in Joules
+y1=round(E*1000)/1000;...........//Rounding of decimal places
+disp(y1,"(ii).Energy stored in magnetic field in Joules:");
+
+x=poly(0,"x");
+Wfd=(1/2)*T^2*4*3.14*10^-7*CA*10^-4*Li^2/(x);............//Function for mechanical energy in terms of air gap
+y=derivat(Wfd);
+disp(y,"(b).Mechanical Energy :");
+Wfd1=-(1/2)*T^2*4*3.14*10^-7*CA*10^-4*Li^2/(x1^2*10^-4);..............//Mechanical energy at x1=0.5 in Joules
+disp(Wfd1,"Mechanical Energy when evaluated at x=0.5*10^-2 in NW:");
+
+x2=0.25;....................//Air gap in Centi Meter
+Lx2=2*Pag*T^2;................//Coil inductance at x2 in Henry
+r=round(Lx2*1000)/1000;.......//Rounding of decimal places
+Eei=(Li^2)*(Lx2-Lx1);.........//Electrical input during change over of the operating point in Joules
+dWfd=1/2*Eei;..............//Additional stored energy in field in Joules
+Me=Eei-dWfd;................//Mechanical energy based on forced calculation and mechaical displacement in Joules
+disp(Me,"(c).Mechanical energy based on forced calculation and mechaical displacement in Joules:");
+
+Pm2=2*Pag;.........//Slope of OC
+Pm1=Pag;...........//Slope of OH
+BK=1/2*(T*Li);.....//mmf required for establishing a flux with an air-gap of 0.25 in Ampere Turns
+KHC=1/4*Eei;........//Eei=Area of rectangle BDCH in Joules
+Eef=Eei-KHC;........//Electrical energy being fed during the process in Joules
+Ife=Me-KHC;...........//Me=Area of triangle OHC in Joules, Increase in field energy stored
+meo=Eef-KHC;.........//Mechanical energy output in Joules
+disp(BK,"mmf required for establishing a flux with an air-gap of 0.25 in Ampere Turns:");
+disp(KHC,"Area of triangle KHC");
+disp(Eef,"Electrical energy being fed during the process in Joules:");
+disp(Ife,"Increase in field energy stored in Joules:");
+disp(meo,"Mechanical energy output in Joules:");
+
+if Me==meo then
+end
+printf(" Mechanical energy remains unaffected by fast or slow movements of armature");
+
+
+
+
+
+
+