mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
similar to cfdemSolverMultiphase, cfdemSolverMultiphaseScalar malfunctions in combination with OpenFOAM 6. The root of this erroneous behaviour remains unclear at this point.
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
FOAM_VERSION_MAJOR := $(word 1,$(subst ., ,$(WM_PROJECT_VERSION)))
|
|
PFLAGS+= -DOPENFOAM_VERSION_MAJOR=$(FOAM_VERSION_MAJOR)
|
|
|
|
include $(CFDEM_ADD_LIBS_DIR)/additionalLibs
|
|
|
|
EXE_INC = \
|
|
$(PFLAGS) \
|
|
-I$(CFDEM_OFVERSION_DIR) \
|
|
-ImultiphaseMixture/lnInclude \
|
|
-I$(LIB_SRC)/transportModels \
|
|
-I$(LIB_SRC)/transportModels/incompressible/lnInclude \
|
|
-I$(LIB_SRC)/transportModels/interfaceProperties/lnInclude \
|
|
-I$(LIB_SRC)/TurbulenceModels/turbulenceModels/lnInclude \
|
|
-I$(LIB_SRC)/TurbulenceModels/incompressible/lnInclude \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/sampling/lnInclude \
|
|
-I$(CFDEM_SRC_DIR)/lagrangian/cfdemParticle/lnInclude \
|
|
-I$(CFDEM_SRC_DIR)/lagrangian/cfdemParticle/cfdTools \
|
|
-Wno-deprecated-copy
|
|
|
|
EXE_LIBS = \
|
|
-L$(CFDEM_LIB_DIR)\
|
|
-lcfdemMultiphaseInterFoamScalar \
|
|
-linterfaceProperties \
|
|
-lincompressibleTransportModels \
|
|
-lturbulenceModels \
|
|
-lincompressibleTurbulenceModels \
|
|
-lfiniteVolume \
|
|
-lfvOptions \
|
|
-lmeshTools \
|
|
-lsampling \
|
|
-l$(CFDEM_LIB_NAME) \
|
|
$(CFDEM_ADD_LIB_PATHS) \
|
|
$(CFDEM_ADD_LIBS)
|