diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1418/CH25/EX25.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.jpg | bin | 0 -> 89929 bytes | |||
-rw-r--r-- | 1418/CH25/EX25.4/EX25_4.sce | 25 |
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 Binary files differnew file mode 100644 index 000000000..bb91a58bf --- /dev/null +++ b/1418/CH25/EX25.4/EX25_4.jpg 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:");
+
|