Skip to content
Snippets Groups Projects
Commit e2a10761 authored by Kutalmış Berçin's avatar Kutalmış Berçin
Browse files

STYLE: wall functions: use more modern coding practices

The most frequent changes have been as follows.

from:

    tmp<scalarField> tuTau(new scalarField(patch().size(), Zero));
    scalarField& uTau = tuTau.ref();

to:

    auto tuTau = tmp<scalarField>::New(patch().size(), Zero);
    auto& uTau = tuTau.ref();

- Other changes involved the addition of - wherever approapriate -:

    const
    noexcept
    auto
parent dcfbdd2c
No related branches found
No related tags found
1 merge request!486ENH: Improve the handling of wall-function coefficients and blenders
Showing
with 243 additions and 181 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment