blob: 82e1ddb1e72be7d70fb0497536525f8547c8d7e0 (
plain)
1
2
3
4
5
6
7
8
|
//Example 10.8//
x=4.5;//wt % // x is the overall composition
xk=0;//wt % // composition for two phases
xth=53;//wt % //coposition for two phases
//(a)
wt=(x-xk)/(xth-xk)*100
mprintf("wt = %f percent",wt)
mprintf("\n As the G.P zones are precursors to the equlibrium precipitation the maximum amount would be 8.49 percent")
|