Why the solution is higher than the initial conditions in a model without heatsource?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I want to simulate heat conduction and convection without internal heat source and look at the temperature distribution.The initial temperature is 50.But the result of the temperature is higher than the initial condition, why is that?
Here is my code.
Any help would be greatly appreciated.
model = createpde('thermal','transient');
gm = importGeometry(model,'1.STL');
figure
pdegplot(model,'FaceLabels','off','CellLabels','off','FaceAlpha',0.5','EdgeLabels','on');
view([0 90])
[gm,ID] = addFace(gm,1);
generateMesh(model);
thermalProperties(model,'ThermalConductivity',368,'MassDensity',8960,'SpecificHeat',386);
internalHeatSource(model,0);
thermalBC(model,'Face',1:5,'ConvectionCoefficient',13.5,'AmbientTemperature',26);
thermalIC(model,50)
tlist = linspace(1,60,60);
R1 = solve(model,tlist);
figure('units','normalized','outerposition',[0 0 1 1])
pdeplot3D(model,"ColorMapData",R1.Temperature(:,end))
Tmax = max(max(R1.Temperature))
Tmin = min(min(R1.Temperature))
0 Commenti
Risposta accettata
Riccardo Scorretti
il 1 Apr 2022
Dear YL,
In my opinion which is observed in the figure is just a uniform temperature T = 50, plus a numerical noise, which may be due to the mesh used to discretize the problem. Basically, the obtained result is that the temperature is constant. By the way, if you look carefully at your picture you can see that "hot spots" are centered in nodes.
I suggest you to check the formulation of your problem. For instance, try with a much higher convection coefficient, or add a source, or simulate over longer time -- just to see what happens. Play with the parameters of your formulation, and I'm sure you will find quickly the source of the problem.
Best regards
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Geometry and Mesh in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!