Heat flux equation coding
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi
Can you please help me code a 1-D heat flux equation q =- k(dT/dR).
I have a tabulated data of both T and R values.
Thank you in advance
0 Kommentare
Antworten (1)
Walter Roberson
am 28 Jul. 2023
[sorted_t, idx] = sort(T);
sorted_R = R(idx);
gr = gradient(sorted_t, sorted_R);
q = -mean(gr);
4 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!