Clear Filters
Clear Filters

2D heat diffusion with convection boundary conditions

1 view (last 30 days)
The is a follow up to my earlier question on heat transfer in a box of grain.
I observed that the plot from [C,h]= contourf(xx(:,:,g),yy(:,:,g),Tt(:,:,g)); interchanged the bottom side with the left side and the topside with the right. It seems that is the default setting for this command.
However, when I used contourf(x,y,T(:,:,g)) instead, the plot come out right but without contour labels.
I want a contour plot with lables.
What can I do to resolve this problem. I have spent weeks on the issue without success.
  2 Comments
Roya Rajabi
Roya Rajabi on 16 Dec 2020
Use Transpose int he contour if you do not use meshgrid for gridding the domain.
and for label and having numbers on the lines use below:
contourf(x,y,(u)','ShowText','on')
ylabel('Y')
xlabel('X')

Sign in to comment.

Answers (0)

Categories

Find more on Thermal Analysis in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!