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 /3836/CH14 | |
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 '3836/CH14')
-rw-r--r-- | 3836/CH14/EX14.1/Ex14_1.sce | 12 | ||||
-rw-r--r-- | 3836/CH14/EX14.2/Ex14_2.sce | 22 | ||||
-rw-r--r-- | 3836/CH14/EX14.3/Ex14_3.sce | 12 | ||||
-rw-r--r-- | 3836/CH14/EX14.4/Ex14_4.sce | 14 | ||||
-rw-r--r-- | 3836/CH14/EX14.5/Ex14_5.sce | 14 | ||||
-rw-r--r-- | 3836/CH14/EX14.6/Ex14_6.sce | 12 |
6 files changed, 86 insertions, 0 deletions
diff --git a/3836/CH14/EX14.1/Ex14_1.sce b/3836/CH14/EX14.1/Ex14_1.sce new file mode 100644 index 000000000..4a084816e --- /dev/null +++ b/3836/CH14/EX14.1/Ex14_1.sce @@ -0,0 +1,12 @@ +clear +//Initialization +i=5 //current in ampere +l=0.628 //circumference + + +//Calculation +h=i/l //magnetic field strength + +//Results +printf("\n Magnetic Field Strength, H = %.2f A/m",h) + diff --git a/3836/CH14/EX14.2/Ex14_2.sce b/3836/CH14/EX14.2/Ex14_2.sce new file mode 100644 index 000000000..973f2c9e6 --- /dev/null +++ b/3836/CH14/EX14.2/Ex14_2.sce @@ -0,0 +1,22 @@ +clear +// +//Initialization +i=6 //current in ampere +n=500 //turns +l=0.4 //circumference +uo=4*%pi*10**-7 //epsilon zero constant +a=300*10**-6 //area + +//Calculation +f=n*i //Magnetomotive Force +h=f/l //magnetic field strength +b=uo*h //magnetic induction +phi=b*a //flux + +//Results +printf("\n (a) Magnetomotive Force, H = %.2f ampere-turns",f) + +printf("\n (b) Magnetic Field Strength, H = %.2f A/m",h) + +printf("\n (c B = %.2f mT",b*10**3) +printf("\n (d Toal Flux, phi = %.2f uWb",phi*10**6) diff --git a/3836/CH14/EX14.3/Ex14_3.sce b/3836/CH14/EX14.3/Ex14_3.sce new file mode 100644 index 000000000..95219a990 --- /dev/null +++ b/3836/CH14/EX14.3/Ex14_3.sce @@ -0,0 +1,12 @@ +clear +//Initialization +l=10*10**-3 //inductance in henry +di=3 + + +//Calculation +v=l*di //voltage + +//Results +printf("\n Voltage, V = %d mV",v*10**3) + diff --git a/3836/CH14/EX14.4/Ex14_4.sce b/3836/CH14/EX14.4/Ex14_4.sce new file mode 100644 index 000000000..542040a94 --- /dev/null +++ b/3836/CH14/EX14.4/Ex14_4.sce @@ -0,0 +1,14 @@ +clear +// +//Initialization +n=400 //turns +l=200*10**-3 //circumference +uo=4*%pi*10**-7 //epsilon zero constant +a=30*10**-6 //area + +//Calculation +L=(uo*a*n**2)/l //Inductance in henry + +//Results +printf("\n Inductance,L = %d uH",L*10**6) + diff --git a/3836/CH14/EX14.5/Ex14_5.sce b/3836/CH14/EX14.5/Ex14_5.sce new file mode 100644 index 000000000..0bfc9f3d3 --- /dev/null +++ b/3836/CH14/EX14.5/Ex14_5.sce @@ -0,0 +1,14 @@ +clear +// +//Initialization +l1=10 //Inductance in henry +l2=20 //Inductance in henry + +//Calculation +ls1=l1+l2 //Inductance in henry +lp=((l1*l2)*(l1+l2)**-1) //Inductance in henry +//Results +printf("\n (a) Inductance in series,L = %d uH",ls1) + +printf("\n (b) Inductance in parallel,L = %.2f uH",lp) + diff --git a/3836/CH14/EX14.6/Ex14_6.sce b/3836/CH14/EX14.6/Ex14_6.sce new file mode 100644 index 000000000..c6384b66a --- /dev/null +++ b/3836/CH14/EX14.6/Ex14_6.sce @@ -0,0 +1,12 @@ +clear +// +//Initialization +l=10**-2 //Inductance in henry +i=5 //current in ampere + +//Calculation +s=0.5*l*i**2 //stored energy + +//Results +printf("\n Stored Energy = %d mJ",s*10**3) + |