Filter löschen
Filter löschen

Heat flux equation coding

6 Ansichten (letzte 30 Tage)
Nour
Nour am 28 Jul. 2023
Kommentiert: Torsten am 29 Jul. 2023
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

Antworten (1)

Walter Roberson
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
Nour
Nour am 29 Jul. 2023
I do have the value of K (thermal conductivity). You're right, T is temperature not time and it's function of R (radius).
Thank you. I appreciate it
Torsten
Torsten am 29 Jul. 2023
So problem solved ?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Heat and Mass Transfer finden Sie in Help Center und File Exchange

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by