From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3492/CH1/EX1.11/Ex1_11.sce | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 3492/CH1/EX1.11/Ex1_11.sce (limited to '3492/CH1/EX1.11/Ex1_11.sce') diff --git a/3492/CH1/EX1.11/Ex1_11.sce b/3492/CH1/EX1.11/Ex1_11.sce new file mode 100644 index 000000000..78d049453 --- /dev/null +++ b/3492/CH1/EX1.11/Ex1_11.sce @@ -0,0 +1,35 @@ +clc +//Chapter1 +//Ex_1.11 +//Given +//from fig 7.1 +//at 210 degree celcius +disp("At 210 degree celcius") +C_L=50 //CL=50% Sn +C_alpha=18 //C_alpha=18% Sn +Co=40 // solidification of alloy +//lever rule +W_alpha=(C_L-Co)/(C_L-C_alpha) +disp(W_alpha*100,"weight fraction of alpha in the alloy is") +W_L=1-W_alpha +disp(W_L*100,"weight fraction of liquid phase in the alloy is") +//at 183.5 degree celcius +disp("At 183.5 degree celcius") +C_L=61.9 //CL=50% Sn +C_alpha=19.2 //C_alpha=18% Sn +Co=40 // solidification of alloy +//lever rule +W_alpha=(C_L-Co)/(C_L-C_alpha) +disp(W_alpha*100,"weight fraction of alpha in the alloy is") +W_L=1-W_alpha +disp(W_L*100,"weight fraction of liquid phase in the alloy is") +//at 182.5 degree celcius +disp("At 182.5 degree celcius") +C_beta=97.5 //CL=50% Sn +C_alpha=19.2 //C_alpha=18% Sn +Co=40 // solidification of alloy +//lever rule +W_alpha=(C_beta-Co)/(C_beta-C_alpha) +disp(W_alpha*100,"weight fraction of alpha in the alloy is") +W_beta=1-W_alpha +disp(W_beta*100,"weight fraction of beta phase in the alloy is") -- cgit