changed headers in the incompressible transportModels
The headers of the transportModel.H are included inconsistently compared to the rest of the library:
#include "incompressible/transportModel/transportModel.H"
#include "IOdictionary.H"
#include "incompressible/viscosityModels/viscosityModel/viscosityModel.H"
#include "dimensionedScalar.H"
#include "volFields.H"
With the patch below, the format is changed to:
#include "transportModel.H"
#include "IOdictionary.H"
#include "viscosityModel.H"
#include "dimensionedScalar.H"
#include "volFields.H"
PS This simplifies the package of Openfoam for conda