The mean Nusselt number for turbulent flow over a plate of length l is Nu=0.037 Re^0.8 Pr/(1+2.443Re^-0.1(Pr^2/3 -1)) , 5x10^5<Re<10^7,0.6<Pr<2000' where Re is the Reynolds number and Pr is the Prandtl number. Plot log10(Nu) as a surface that is a fu
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Pavenjeet Kaur
el 20 de Jul. de 2018
Comentada: Pavenjeet Kaur
el 21 de Jul. de 2018
I dont really know how to start this question. Any idea .?
0 comentarios
Respuesta aceptada
Udit Dhand
el 20 de Jul. de 2018
[Re,Pr]=meshgrid(5*10^4:100000:10^7,0.6:10:2000);
Z=log((0.037.*Re.^0.8.*Pr)./(1+2.443*Re.^-0.1.*(Pr.^(2/3)-1)));
surf(Pr,Re,Z);
pretty easy right ;)
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!