Time dependent wall boundary condition #398
-
How difficult would it be to implement a time dependent temperature or heat flux for the wall model? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Currently you can specify a surface temperature that varies linearly with time: and is updated here: we don't currently have a way to change the flux over time but by changing mo.surf_temp_flux somewhere you have access to time it should be straightforward. check out this chunk of code too: https://github.com/Exawind/amr-wind/blob/main/amr-wind/wind_energy/MOData.cpp#L53-L63 How do you plan to use this? Change temperature/flux linearly or something non-standard? We have been thinking about adding a table input that would give more control like this, maybe @mchurchf already has something in the works? |
Beta Was this translation helpful? Give feedback.
Currently you can specify a surface temperature that varies linearly with time:
https://github.com/Exawind/amr-wind/main/amr-wind/wind_energy/ABLWallFunction.cpp#L43-L65
and is updated here:
https://github.com/Exawind/amr-wind/blob/main/amr-wind/wind_energy/ABLWallFunction.cpp#L93-L99
we don't currently have a way to change the flux over time but by changing mo.surf_temp_flux somewhere you have access to time it should be straightforward. check out this chunk of code too:
https://github.com/Exawind/amr-wind/blob/main/amr-wind/wind_energy/MOData.cpp#L53-L63
How do you plan to use this? Change temperature/flux linearly or something non-standard? We have been thinking about adding a table in…