You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In OpenFOAM-v8, the turbulence model libraries were consolidated into a more generalised momentumTransport library, and accelerateCFD will not currently build as it still looks for libturbulenceModels.so, libincompressibleTurbulenceModels.so, libcompressibleTurbulenceModels.so and $ENV{FOAM_SRC}/TurbulenceModels/*/lnInclude, instead of momentumTransport
This can be fixed by modifying CMakeLists.txt:
Replace every instance of turbulenceModels with momentumTransportModels, and TurbulenceModels with MomentumTransportModels
The line $ENV{FOAM_LIBBIN}/libcompressibleTransportModels.so must also be removed, and the references to $ENV{FOAM_SRC}/transportModels/* need to be removed/updated
The text was updated successfully, but these errors were encountered:
Thank you so much for pointing out Openfoam 8 compatibility errors. For now, we have updated this code for OpenFOAM 8 compatibility under a new branch. We have some plans to broaden the support for newer OpenFOAM versions. Stay tuned for that!
In OpenFOAM-v8, the turbulence model libraries were consolidated into a more generalised momentumTransport library, and accelerateCFD will not currently build as it still looks for libturbulenceModels.so, libincompressibleTurbulenceModels.so, libcompressibleTurbulenceModels.so and $ENV{FOAM_SRC}/TurbulenceModels/*/lnInclude, instead of momentumTransport
This can be fixed by modifying CMakeLists.txt:
Replace every instance of turbulenceModels with momentumTransportModels, and TurbulenceModels with MomentumTransportModels
The line $ENV{FOAM_LIBBIN}/libcompressibleTransportModels.so must also be removed, and the references to $ENV{FOAM_SRC}/transportModels/* need to be removed/updated
The text was updated successfully, but these errors were encountered: