Quench Simulation with finite difference. Assistance with implementing variying thermal conductivity (k) for changes in temperature (T))
18 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jack
am 2 Nov. 2024 um 16:24
Beantwortet: goc3
am 2 Nov. 2024 um 16:34
Hi there,
i need help trying to implement the kth_polyvec below for the range of temperature values illustrated below. Thank you in advance. kth_polyVec = [ ? ];
%% pre-processing
% thermophysical properties
rho_polyVec = [7939.8, 0.32912];
kth_polyVec = [ ];
Cp_polyVec = [472.2, 0.25];
0 Kommentare
Akzeptierte Antwort
goc3
am 2 Nov. 2024 um 16:34
Does this work?:
if T >= 1066
kth_polyVec = [14.6, 0.01];
else
kth_polyVec = [50.3, -0.02];
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Heat and Mass Transfer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!