blob: a939d6ed56bcbb1d8e192fef275651d8420bab01 (
plain)
1
2
3
4
5
6
7
|
//Example 9.10//
x=4.5;//wt % //x is overall composition
xk=0;//wt %//composition of two phases
xth=53;//wt % //composition of two phases
wt=(x-xk)/(xth-xk)*100
mprintf("wt = %f percent ",wt)
|