T=800:1:1086;
Cl=-7.31*10^-5*T.^2+0.04648*T+35.92;
Cs=1.68*10^-4*T.^2-0.3649*T+198.2;
figure(1)
plot(T,Cl,T,Cs);
title('Grafico liquidus e solidus con temperatura in ascissa');
xlabel('T');
ylabel('Cl,Cs');
figure(2)
plot(Cs,T,Cl,T);
title('Grafico liquidus e solidus con temperatura in ordinata');
xlabel('Cl,Cs');
ylabel('T');
C0=12;
Ti = -0.09491*C0^2- 8.314*C0 + 1086;
Tf = 1.24*C0^2 -34.29*C0 + 1055;
Tif= Tf:1:Ti;
Cl=-7.31*10^-5*Tif.^2+0.04648*Tif+35.92;
Cs=1.68*10^-4*Tif.^2-0.3649*Tif+198.2;
Fl=(C0-Cs)./(Cl-Cs);
Fs=(Cl-C0)./(Cl-Cs);
figure(3)
plot(Tif,Fl);
title('Andamento frazione liquida in funzione della temperatura');
xlabel('Tl');
ylabel('Fl');
figure (4)
plot(Tif,Fs);
title('Andamento frazione solida in funzione della temperatura');
xlabel('Ts');
ylabel('Fs');
aCu=7552.21;
bCu=1.061386;
cCu=-0.000668;
a=2.73;
b=0.006429;
c=0;
d=-1.307482;
e=0.023920;
Cl=12;
Tl=[Tf:1:1086];
RHOl= aCu + bCu*Tl + cCu*Tl.^2 +(a + b*Tl + c*Tl.^2 + d*Cl + e*Cl^2)*Cl;
figure(5)
plot(Tl,RHOl);
title('Andamento densità del liquido in funzione della temperatura');
xlabel('Tl');
ylabel('RHOl');
RHOl= aCu + bCu*Tif + cCu*Tif.^2 +(a + b*Tif + c*Tif.^2 + d*Cl + e*Cl^2)*Cl;
aCu= 8945.62;
bCu= -0.460976;
cCu= -0.0000614;
a= -1.46;
b= -0.005569;
c= 0.000010;
d= 0.121010;
e=0;
Cs=12;
Ta=20;
Ts=[600:1:Ti];
RHOs= aCu + bCu*Ts + cCu*Ts.^2 +(a + b*Ts + c*Ts.^2 +d*Cs + e*Cs^2)*Cs;
figure(6)
plot(Ts,RHOs);
title('Andamento densità del solido in funzione della temperatura');
xlabel('Ts');
ylabel('RHOs');
RHOs= aCu + bCu*Tif + cCu*Tif.^2 +(a + b*Tif + c*Tif.^2 +d*Cs + e*Cs^2)*Cs;
Ts1=[Ta:1:Tf];
RHOs1= aCu + bCu*Ts1 + cCu*Ts1.^2 +(a + b*Ts1 + c*Ts1.^2 +d*Cs)*Cs;
RHO= ( (Fl./RHOl) + (1-Fl)./RHOs ).^-1;
figure(7)
plot(Tif, RHO);
title('Andamento densità totale solido in funzione della temperatura');
xlabel('Tif');
ylabel('RHO');
lun=length(RHO);
RHO0=RHO(lun);
rit= ( -1 +(RHO/RHO0).^(1/3) )*100;
ritS= ( -1 +(RHOs1/RHO0).^(1/3) )*100;
figure(8)
plot(Tif,rit,Ts1,ritS);
title('Andamento del ritiro in solidificazione e raffreddamento');
xlabel('Tif,Ts1');
ylabel('rit,ritS');
aCuL= 134.407;
bCuL= 0.026743;
cCuL= 0;
aL=-2.474;
bL=0;
cL=0;
dL=-14.779;
nL=0.04;
Kl = aCuL + bCuL*Tif + cCuL*Tif.^2 + (aL+bL*Tif+cL*Tif.^2)*Cl + dL*Cl*10^-(nL*Cl);
figure(9)
plot(Tif, Kl);
title('Andamento conducibilità termica in funzione della temperatura');
xlabel('Tif');
ylabel('Kl');
aCuF= 398.61;
bCuF= -0.042062;
cCuF= -0.0000205;
aF= -15.61;
bF= 0;
cF= 0;
dF= -126.177;
eF= 0.125745;
nF= 0.08;
Kfcc = aCuF + bCuF*Tif+cCuF*Tif.^2+(aF+bF*Tif+cF*Tif.^2)*Cs+(dF+eF*Tif)*Cs*10^-(nF*Cs);
figure(10)
plot(Tif, Kfcc);
title('Andamento conducibilità termica fcc in funzione della temperatura');
xlabel('Tif');
ylabel('Kfcc');
K = (1-Fl).*Kfcc + Fl.*Kl;
figure(11)
plot(Tif, K);
title('Andamento conducibilità termica totale in funzione della temperatura');
xlabel('Tif');
ylabel('K');