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 --- 1586/CH11/EX11.3/EXP11_3.jpg | Bin 0 -> 205232 bytes 1586/CH11/EX11.3/EXP11_3.sce | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 1586/CH11/EX11.3/EXP11_3.jpg create mode 100644 1586/CH11/EX11.3/EXP11_3.sce (limited to '1586/CH11/EX11.3') diff --git a/1586/CH11/EX11.3/EXP11_3.jpg b/1586/CH11/EX11.3/EXP11_3.jpg new file mode 100644 index 000000000..4806b988d Binary files /dev/null and b/1586/CH11/EX11.3/EXP11_3.jpg differ diff --git a/1586/CH11/EX11.3/EXP11_3.sce b/1586/CH11/EX11.3/EXP11_3.sce new file mode 100644 index 000000000..112f11e7f --- /dev/null +++ b/1586/CH11/EX11.3/EXP11_3.sce @@ -0,0 +1,23 @@ +clc;funcprot(0);//EXAMPLE 11.3 +// Initialisation of Variables +M=200;........//Mass of alpha phase of alloy in gm +%Sn=61.9;......//Percentage of the Sn in the eutectic alloy in percent +%Pb=19;.......//Percentage of the Pb in the alpha phase in percent +%Pb2=97.5;.....//Percentage of the Sn in the beeta phase in percent +//CALCULLATIONS +W1=(%Pb2-%Sn)/(%Pb2-%Pb);.....//Weight fraction of alpha phase +W2=(%Sn-%Pb)/(%Pb2-%Pb);.......//Weight fraction of beeta phase +Ma=M*W1;......//The mass of the alpha phase in 200g in g +Mb=M-Ma;......//The amount of the beeta phase in g at 182 degree celsius +MPb1=Ma*(1-(%Pb/100));.......//Mass of Pb in the alpha phase in g +MSn1=Ma-MPb1;......//Mass of Sn in alpha phase +MPb2=Mb*(1-(%Pb2/100));.....//Mass of Pb in beeta phase +MSn2=123.8-MSn1;.....//mass of Sn in beeta Phase +disp(W1,"Weight fraction of alpha phase") +disp(W2,"Weight fraction of beeta phase") +disp(Ma,"The mass of the alpha phase in 200g in g:") +disp(Mb,"The amount of the beeta phase in g at 182 degree celsius:") +disp(MPb1,"Mass of Pb in the alpha phase in g:") +disp(MSn1,"Mass of Sn in alpha phase") +disp(MPb2,"Mass of Pb in beeta phase:") +disp(MSn2,"mass of Sn in beeta Phase:") -- cgit