Question about atmospheric module
Posted: Thu Oct 09, 2025 4:22 pm
Hello,
I'm working on a dispersion study in an urban area, and I would like to analyze the impact of the turbulent schmidt number
of the transported scalar over the concentration fields.
During some previous tests on a simplified case, I was able to modify the
thanks to the user function cs_user_parameters.c with :
But I am now working with the Atmospheric module, and it seems that it fixes the
to 0.7 and the user function does'nt work anymore.
Do you have any idea if it is possible to somehow "overpass" the Atmospheric module and modify this value ?
Thank you,
Maxime
I'm working on a dispersion study in an urban area, and I would like to analyze the impact of the turbulent schmidt number
During some previous tests on a simplified case, I was able to modify the
Code: Select all
#pragma weak cs_user_parameters
void
cs_user_parameters(cs_domain_t *domain)
{
cs_field_set_key_double(cs_field_by_name("scalar1"), cs_field_key_id("turbulent_schmidt"), 0.4);
}
Do you have any idea if it is possible to somehow "overpass" the Atmospheric module and modify this value ?
Thank you,
Maxime