Effacer les filtres
Effacer les filtres

1D Fourier equation with temperature dependent thermal properties

4 vues (au cours des 30 derniers jours)
Maria Lorena Richiusa
Maria Lorena Richiusa le 5 Juin 2020
Hello! I am trying to solve the 1D Fourier's equation with temperature dependent thermal properties but I do not know how to get the temperature results from pdepe at each time step and use them to evaluate the material properties for the next time step. Can you help me sort this out? Find below the example.
In this case, for example, the thermal diffisivity is temperature dependent accordint to the law:
diffr=3.34E-10*T^4 - 9.37E-07*T^3 + 9.38E-04*T^2 - 4.80E-01*T + 2.09E+02
function [c,f,s] = pdex1pde(x,t,u,dudx,diffr,Tfront)
c = 1/diffr;
f = dudx;
s = 0;
end
Many thanks for the help!

Réponses (1)

Bill Greene
Bill Greene le 6 Juin 2020
function [c,f,s] = pdex1pde(x,t,T,dudx,diffr,Tfront)
diffr=3.34E-10*T^4 - 9.37E-07*T^3 + 9.38E-04*T^2 - 4.80E-01*T + 2.09E+02;
c = 1/diffr;
f = dudx;
s = 0;
end
  3 commentaires
Bill Greene
Bill Greene le 7 Juin 2020
Yes, you are free to name that third argument whatever you like-- u, T, or any other legal matlab variable name.
Maria Lorena Richiusa
Maria Lorena Richiusa le 7 Juin 2020
Thanks again for your answer. Could I define the temperature-dependent material property law on an external script that recalls the pdepe function, and passing this function as an argument of the pdepe? I have tried but in a wrong way, as the temperature is a result of the pdepe function.
Thanks a lot for your answer.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Large Files and Big Data dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by