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

8 visualizaciones (últimos 30 días)
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);

Respuesta aceptada

Ravi Kumar
Ravi Kumar el 14 de Feb. de 2019
Editada: Ravi Kumar el 14 de Feb. de 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

Más respuestas (1)

Grzegorz
Grzegorz el 18 de Feb. de 2019
Editada: Grzegorz el 18 de Feb. de 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.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by