Temperature dependent thermal diffusivity using PDE Toolbox (2024)

27 Ansichten (letzte 30 Tage)

Ältere Kommentare anzeigen

Tom am 5 Jun. 2024 um 16:16

  • Verknüpfen

    Direkter Link zu dieser Frage

    https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox

  • Verknüpfen

    Direkter Link zu dieser Frage

    https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox

Bearbeitet: Torsten am 5 Jun. 2024 um 20:44

In MATLAB Online öffnen

Hello,

This is my first implementation of a problem using the PDE Toolbox. My 3D time-dependent thermal model is the following : a sphere (radius equals to 1) with radiative flux on the outside surface, with cell at inital temperature Temperature dependent thermal diffusivity using PDE Toolbox (2). I would like to use a temperature dependent thermal diffusivity Temperature dependent thermal diffusivity using PDE Toolbox (3) where . I have then an analytical expression for it given by : Temperature dependent thermal diffusivity using PDE Toolbox (4), which I know from documentation for my material.

The parameters used in my simulations are the following :

lambda = @(location,state) 0.46+0.95*exp(-2.3e-3*state.u); % (W/m/K) Thermal conductivity

rho=1000; % (kg/m**3) Density

cp=1000; % (J/kg/K) Specific heat

T0=2000; % (K) Initial temperature

T_out=300; % (K) outer space temperature

eps=1; % Emissivity

dt=20; % (s) time-step

day=3600*24;

tlist = [0:dt:tmax]; % time list

I then implement my model using Matlab PDE Toolbox :

thermalModel = createpde('thermal','transient');

gm = multisphere(1);

thermalModel.Geometry=gm;

generateMesh(thermalModel,'Hmax',0.2,"GeometricOrder","quadratic");

thermalModel.StefanBoltzmannConstant = 5.670373E-8;

thermalProperties(thermalModel,'ThermalConductivity',lambda,'MassDensity',rho,'SpecificHeat',cp);

% Initial Temperature

thermalIC(thermalModel,T0);

% Radiative Flux :

thermalBC(thermalModel,"Face",1,"Emissivity",@(region,state) eps,"AmbientTemperature",T_out, "Vectorized","on");

% Solver

thermalResults = solve(thermalModel,tlist);

Does anyone know whether the implementation is correct ?

Many thanks for any help you can give me !

Regards,

Tom

4 Kommentare

2 ältere Kommentare anzeigen2 ältere Kommentare ausblenden

Torsten am 5 Jun. 2024 um 17:37

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180056

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180056

Bearbeitet: Torsten am 5 Jun. 2024 um 17:38

Since your problem is 1-dimensional at the moment (solution only depends on r, I guess), I'd compare with the "pdepe" solution.

The unit factor of 1e-6 is no longer necessary in the formula for thermal conductivity ?

Tom am 5 Jun. 2024 um 17:56

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180091

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180091

As I had a 1e-6 factor in the diffusivity expression, I declared Temperature dependent thermal diffusivity using PDE Toolbox (7) and Temperature dependent thermal diffusivity using PDE Toolbox (8), to avoid multiplying by 1e-6, as the expression of diffusivity is Temperature dependent thermal diffusivity using PDE Toolbox (9).

The suggested problem is indeed a 1-dimensional case, however this was to use a sphere with voids afterwards.

Torsten am 5 Jun. 2024 um 19:41

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180171

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180171

Bearbeitet: Torsten am 5 Jun. 2024 um 20:44

What does it mean: sphere with voids ? A sphere with holes in it that make the temperature distribution asymmetric ?

As said: at this stage, I'd use "pdepe" for validation. Since it is a one-dimensional solver, the mesh can be chosen extremely fine such that it will ressemble comparing your PDE toolbox results with an analytical solution.

Umar am 5 Jun. 2024 um 20:38

Direkter Link zu diesem Kommentar

https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180191

  • Verknüpfen

    Direkter Link zu diesem Kommentar

    https://de.mathworks.com/matlabcentral/answers/2125811-temperature-dependent-thermal-diffusivity-using-pde-toolbox#comment_3180191

Based on the information provided, it appears that you have successfully implemented a 3D time-dependent thermal model in Matlab using the PDE Toolbox. Your model consists of a sphere with radiative flux on the outside surface, and you have incorporated a temperature-dependent thermal diffusivity function λ(u) = 0.46 + 0.95 * exp(-2.3e-3 * u) as well as other parameters such as density, specific heat, initial temperature, outer space temperature, emissivity, time step, and simulation duration. Your implementation involves defining the geometry, mesh generation, setting Stefan-Boltzmann constant, specifying thermal properties, initializing initial temperature conditions, defining radiative flux boundary conditions, and solving the model over a specified time interval. To verify if your implementation is correct, you can consider the following aspects: 1. Check if the physical properties and boundary conditions are correctly defined based on your problem statement. 2. Verify that the mesh generation parameters are appropriate for capturing the spatial resolution required for accurate simulations. 3. Ensure that the thermal properties function λ(u) captures the desired temperature dependency accurately. 4. Confirm that the initial and boundary conditions are consistent with your model requirements. 5. Validate the solver settings and time-stepping scheme to ensure numerical stability and accuracy. You can further assess the correctness of your implementation by comparing simulation results with analytical solutions (if available), conducting sensitivity analyses on key parameters, and performing convergence studies to evaluate mesh independence. Overall, your approach seems comprehensive and well-structured. By rigorously validating your model against known benchmarks and conducting thorough testing, you can gain confidence in the accuracy and reliability of your thermal simulation results. If you encounter any discrepancies or unexpected behavior during validation, consider refining your model assumptions or numerical settings to address potential issues. I hope this guidance helps in evaluating the correctness of your implementation. Feel free to reach out for further assistance or clarification on specific aspects of your thermal model. Good luck with your simulations!

Melden Sie sich an, um zu kommentieren.

Melden Sie sich an, um diese Frage zu beantworten.

Antworten (0)

Melden Sie sich an, um diese Frage zu beantworten.

Siehe auch

Kategorien

Mathematics and OptimizationPartial Differential Equation ToolboxDomain-Specific ModelingHeat Transfer

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

Tags

  • pde
  • diffusivity
  • toolbox
  • thermal
  • temperature
  • dependent

Produkte

  • Partial Differential Equation Toolbox

Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Es ist ein Fehler aufgetreten

Da Änderungen an der Seite vorgenommen wurden, kann diese Aktion nicht abgeschlossen werden. Laden Sie die Seite neu, um sie im aktualisierten Zustand anzuzeigen.


Translated by Temperature dependent thermal diffusivity using PDE Toolbox (12)

Temperature dependent thermal diffusivity using PDE Toolbox (13)

Website auswählen

Wählen Sie eine Website aus, um übersetzte Inhalte (sofern verfügbar) sowie lokale Veranstaltungen und Angebote anzuzeigen. Auf der Grundlage Ihres Standorts empfehlen wir Ihnen die folgende Auswahl: .

Sie können auch eine Website aus der folgenden Liste auswählen:

Amerika

  • América Latina (Español)
  • Canada (English)
  • United States (English)

Europa

  • Belgium (English)
  • Denmark (English)
  • Deutschland (Deutsch)
  • España (Español)
  • Finland (English)
  • France (Français)
  • Ireland (English)
  • Italia (Italiano)
  • Luxembourg (English)
  • Netherlands (English)
  • Norway (English)
  • Österreich (Deutsch)
  • Portugal (English)
  • Sweden (English)
  • Switzerland
    • Deutsch
    • English
    • Français
  • United Kingdom(English)

Asien-Pazifik

Kontakt zu Ihrer lokalen Niederlassung

Temperature dependent thermal diffusivity using PDE Toolbox (2024)
Top Articles
Latest Posts
Article information

Author: Jerrold Considine

Last Updated:

Views: 5901

Rating: 4.8 / 5 (58 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Jerrold Considine

Birthday: 1993-11-03

Address: Suite 447 3463 Marybelle Circles, New Marlin, AL 20765

Phone: +5816749283868

Job: Sales Executive

Hobby: Air sports, Sand art, Electronics, LARPing, Baseball, Book restoration, Puzzles

Introduction: My name is Jerrold Considine, I am a combative, cheerful, encouraging, happy, enthusiastic, funny, kind person who loves writing and wants to share my knowledge and understanding with you.