How to apply external heat flux to a surface with specified "emissivity" boundary conditions in MATLAB R2018 PDE Toolbox?

7 vues (au cours des 30 derniers jours)
I am modelling thermal behaviour of lunar surface, thus it is necessary to specify both heat flux from incident solar radiation and thermal radiation of the lunar surface.
Unfortunately, one of these is ignored, when declared as follows:
thermalBC(thermalmodelT,'Edge',2,'HeatFlux',@SolRad_hf);
thermalmodelT.StefanBoltzmannConstant = 5.670373E-8;
thermalBC(thermalmodelT,'edge',2,'Emissivity',0.98,'AmbientTemperature',3);

Réponse acceptée

Ravi Kumar
Ravi Kumar le 14 Fév 2019
Modifié(e) : Ravi Kumar le 14 Fév 2019
You can specify all heat fluxes on that BC with a single function call, like:
thermalBC(thermalmodelT,'Edge',2,'HeatFlux',@SolRad_hf,'Emissivity',0.98,'AmbientTemperature',3);
Regards,
Ravi

Plus de réponses (1)

Grzegorz
Grzegorz le 18 Fév 2019
Modifié(e) : Grzegorz le 18 Fév 2019
Thank you Ravi, indeed it works!
There is however another problem: my ~4k nodes model with heatflux and emissivity BCs applied separately require computation time 5,2 seconds and 30 seconds respectively. When these BCs are applied together, the simulation takes about 1040 seconds.
Attempts to compute 20k nodes model results in "out of memory" after about 40 minutes of running. Is the situation normal?
I work on Intel Core i7 and 8GB RAM.

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by