How to Optimize a 2D Nonlinear Heat Conduction Solver in MATLAB?

range.rover
Messages
15
Reaction score
0
Hi friends,

i have developed an code for a non linear heat conduction in 2 dimensions with dirichlet boundary condition by finite difference method in Matlab. my code is running slow to give output.
If anybody has any idea of solving this equation or have written any Code for this equation, please share it with me.
Any body who has worked on this can share the idea with me.

(d2t/dx2 + d2t/dy2)(K(t)) = Q
K(t)= (a - b*t) ; a>>b.
 
Physics news on Phys.org
If K represents the thermal conductivity, then this formulation is incorrect. It should read:
\frac{\partial}{\partial x}\left(K(T)\frac{\partial T}{\partial x}\right)+\frac{\partial}{\partial y}\left(K(T)\frac{\partial T}{\partial y}\right)=Q
Chet
 
Back
Top