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 --- 620/CH11/EX11.1/example11_1.sce | 18 ++++++++++++++++++ 620/CH11/EX11.1/example11_1.txt | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 620/CH11/EX11.1/example11_1.sce create mode 100644 620/CH11/EX11.1/example11_1.txt (limited to '620/CH11/EX11.1') diff --git a/620/CH11/EX11.1/example11_1.sce b/620/CH11/EX11.1/example11_1.sce new file mode 100644 index 000000000..a2102dd04 --- /dev/null +++ b/620/CH11/EX11.1/example11_1.sce @@ -0,0 +1,18 @@ +r1=5*10^(-2); +r2=7*10^(-2); +n=400; +i=2; +f=1.5*10^(-4); +disp("Part a"); +d=r2-r1; +a=%pi*d^2/4; +b=f/a; +disp("the flux density (in T) is"); disp(b); +disp("Part b"); +mmf=n*i; +disp("the magnetomotive force (in At) is"); disp(mmf); +disp("Part c"); +r=(r1+r2)/2; +l=2*%pi*r; +h=mmf/l; +disp("the manetizing intensity (in At/m) is"); disp(h); \ No newline at end of file diff --git a/620/CH11/EX11.1/example11_1.txt b/620/CH11/EX11.1/example11_1.txt new file mode 100644 index 000000000..77220347c --- /dev/null +++ b/620/CH11/EX11.1/example11_1.txt @@ -0,0 +1,18 @@ +Part a + + the flux density (in T) is + + 0.4774648 + + Part b + + the magnetomotive force (in At) is + + 800. + + Part c + + the manetizing intensity (in At/m) is + + 2122.0659 + \ No newline at end of file -- cgit