summaryrefslogtreecommitdiff
path: root/1418/CH25/EX25.4
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.4
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.4')
-rw-r--r--1418/CH25/EX25.4/EX25_4.jpgbin0 -> 89929 bytes
-rw-r--r--1418/CH25/EX25.4/EX25_4.sce25
2 files changed, 25 insertions, 0 deletions
diff --git a/1418/CH25/EX25.4/EX25_4.jpg b/1418/CH25/EX25.4/EX25_4.jpg
new file mode 100644
index 000000000..bb91a58bf
--- /dev/null
+++ b/1418/CH25/EX25.4/EX25_4.jpg
Binary files differ
diff --git a/1418/CH25/EX25.4/EX25_4.sce b/1418/CH25/EX25.4/EX25_4.sce
new file mode 100644
index 000000000..68c57c1c6
--- /dev/null
+++ b/1418/CH25/EX25.4/EX25_4.sce
@@ -0,0 +1,25 @@
+//EXAMPLE 25.4
+//INDUCTOR WITH VARYING DISPLACEMENT
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+Lo=50;..........//Inductance in Mili Henry
+xo=0.05;........//Displacement in Centi Meter
+Rc=0.5;..........//Coil resistance in 0.5 Ohms
+i1=3;............//Current in Amperes
+//(a)
+x1=0.075;..........//Displacement held constant in Centi Meter
+L1=(2*Lo)/(1+(x1/xo));.......//Inductance at x1 in Mili Henry
+y1=L1*i1;..............//Flux linkage at x1
+Wfd1=(1/2)*L1*(i1^2)*10^-3;.......//Resultant magnetic stored energy in the inductor in Joules
+disp(Wfd1,"(a).Resultant magnetic stored energy in the inductor at x1 in Joules:");
+
+//(b)
+x2=0.15;....................//Displacement held constant in Centi Meter
+L2=(2*Lo)/(1+(x2/xo));.......//Inductance at x2 in Mili Henry
+y2=L2*i1;..............//Flux linkage at x2
+Wfd2=(1/2)*(y1-y2)*(i1)*10^-3;.......//Resultant magnetic stored energy in the inductor in Joules
+disp(Wfd2,"(b).Resultant magnetic stored energy in the inductor at x2 in Joules:");
+