Enabled paraview plugin and out-of-source compilation
This commit is contained in:
parent
48926a792f
commit
3abb7c9f7b
474 changed files with 1451 additions and 2923 deletions
|
@ -1,16 +1,17 @@
|
||||||
# /*-------------------------------------------------------------------------*\# ======== |
|
# --------------------------------------------------------------------------
|
||||||
# \\ / F ield | foam-extend: Open Source CFD
|
# ======== |
|
||||||
# \\ / O peration | Version: 3.2
|
# \ / F ield | foam-extend: Open Source CFD
|
||||||
# \\ / A nd | Web: http://www.foam-extend.org
|
# \ / O peration | Version: 4.1
|
||||||
# \\/ M anipulation | For copyright notice see file Copyright
|
# \ / A nd | Web: http://www.foam-extend.org
|
||||||
# -----------------------------------------------------------------------------
|
# \/ M anipulation | For copyright notice see file Copyright
|
||||||
|
# --------------------------------------------------------------------------
|
||||||
# License
|
# License
|
||||||
# This file is part of foam-extend.
|
# This file is part of foam-extend.
|
||||||
#
|
#
|
||||||
# foam-extend is free software: you can redistribute it and/or modify it
|
# foam-extend is free software: you can redistribute it and/or modify it
|
||||||
# under the terms of the GNU General Public License as published by the
|
# under the terms of the GNU General Public License as published by the
|
||||||
# Free Software Foundation, either version 3 of the License, or (at your
|
# Free Software Foundation, either version 3 of the License, or {at your
|
||||||
# option) any later version.
|
# option} any later version.
|
||||||
#
|
#
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
# foam-extend is distributed in the hope that it will be useful, but
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -21,17 +22,13 @@
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
# Description
|
# Description
|
||||||
# CMakeLists.txt file for implementing a test harness for the compilation
|
# CMakeLists.txt file for libraries and applications
|
||||||
# and test of foam-extend-3.2 using Kitware CTest/CMake/CDash
|
|
||||||
#
|
|
||||||
# The results will be submitted to the CDash server identified by the file
|
|
||||||
# CTestConfig.cmake
|
|
||||||
#
|
#
|
||||||
# Author
|
# Author
|
||||||
# Martin Beaudoin, Hydro-Quebec, 2010. All rights reserved
|
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# \*-------------------------------------------------------------------------*/
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
cmake_minimum_required (VERSION 2.8)
|
cmake_minimum_required (VERSION 2.8)
|
||||||
|
|
||||||
|
@ -47,6 +44,7 @@ include(getGitVersion)
|
||||||
|
|
||||||
add_custom_target(getGitVersion ALL
|
add_custom_target(getGitVersion ALL
|
||||||
COMMAND ${CMAKE_COMMAND} -P cmake/getGitVersion.cmake
|
COMMAND ${CMAKE_COMMAND} -P cmake/getGitVersion.cmake
|
||||||
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||||
COMMENT "Getting GIT version"
|
COMMENT "Getting GIT version"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -79,12 +77,13 @@ find_package(FLEX REQUIRED)
|
||||||
|
|
||||||
find_package(Git REQUIRED)
|
find_package(Git REQUIRED)
|
||||||
|
|
||||||
|
find_package(ParaView REQUIRED)
|
||||||
|
|
||||||
#
|
#
|
||||||
# Recurse into the source
|
# Recurse into the source
|
||||||
#
|
#
|
||||||
|
|
||||||
# Set variabable to indicate that we are compiling internally. Used in applications.
|
# Set variable to indicate that we are compiling internally. Used in applications.
|
||||||
set(FOAM_FOUND 1)
|
set(FOAM_FOUND 1)
|
||||||
|
|
||||||
# Write something into FOAMTargets.cmake so that we can append to the file.
|
# Write something into FOAMTargets.cmake so that we can append to the file.
|
||||||
|
@ -95,19 +94,36 @@ add_subdirectory(applications)
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Flags and definitions
|
# Set default build type
|
||||||
#
|
#
|
||||||
|
|
||||||
# Define and process the definitions
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE Release CACHE STRING
|
||||||
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
||||||
|
FORCE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#
|
||||||
|
# Definitions inherited by all targets
|
||||||
|
#
|
||||||
|
|
||||||
|
# Single/Double precision
|
||||||
set(FOAM_PRECISION "double" CACHE STRING "Numerical precision")
|
set(FOAM_PRECISION "double" CACHE STRING "Numerical precision")
|
||||||
set_property(CACHE FOAM_PRECISION PROPERTY STRINGS single double)
|
set_property(CACHE FOAM_PRECISION PROPERTY STRINGS single double)
|
||||||
if(FOAM_PRECISION EQUAL "single")
|
if(FOAM_PRECISION EQUAL "single")
|
||||||
target_compile_definitions(OSspecific PUBLIC -DWM_SP)
|
target_compile_definitions(OSspecific PUBLIC WM_SP)
|
||||||
else()
|
else()
|
||||||
target_compile_definitions(OSspecific PUBLIC -DWM_SP)
|
target_compile_definitions(OSspecific PUBLIC WM_DP)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
target_compile_definitions(OSspecific PUBLIC -DNoRepository)
|
# No Repository
|
||||||
|
target_compile_definitions(OSspecific PUBLIC NoRepository)
|
||||||
|
|
||||||
|
# FOAM's full debug mode
|
||||||
|
if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
|
||||||
|
target_compile_definitions(OSspecific PUBLIC FULLDEBUG)
|
||||||
|
target_compile_options(OSspecific PUBLIC -fdefault-inline -ggdb3)
|
||||||
|
endif()
|
||||||
|
|
||||||
#option(FOAM_PRECISION "help string describing option" -WM_DP)
|
#option(FOAM_PRECISION "help string describing option" -WM_DP)
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
dnsFoam.C
|
dnsFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(dnsFoam
|
add_foam_executable(dnsFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
PODSolver.C
|
PODSolver.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(PODSolver
|
add_foam_executable(PODSolver
|
||||||
DEPENDS POD
|
DEPENDS POD
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
laplacianFoam.C
|
laplacianFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(laplacianFoam
|
add_foam_executable(laplacianFoam
|
||||||
DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
potentialDyMFoam.C
|
potentialDyMFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(potentialDyMFoam
|
add_foam_executable(potentialDyMFoam
|
||||||
DEPENDS dynamicFvMesh
|
DEPENDS dynamicFvMesh
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
potentialFoam.C
|
potentialFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(potentialFoam
|
add_foam_executable(potentialFoam
|
||||||
DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
scalarTransportFoam.C
|
scalarTransportFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(scalarTransportFoam
|
add_foam_executable(scalarTransportFoam
|
||||||
DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
sixDOFSolver.C
|
sixDOFSolver.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(sixDOFSolver
|
add_foam_executable(sixDOFSolver
|
||||||
DEPENDS meshTools ODE
|
DEPENDS meshTools ODE
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
XiModels/XiModel/XiModel.C
|
XiModels/XiModel/XiModel.C
|
||||||
XiModels/XiModel/newXiModel.C
|
XiModels/XiModel/newXiModel.C
|
||||||
XiModels/fixed/fixed.C
|
XiModels/fixed/fixed.C
|
||||||
|
@ -64,5 +64,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(PDRFoam
|
add_foam_executable(PDRFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
XiFoam.C
|
XiFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(XiFoam
|
add_foam_executable(XiFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
coldEngineFoam.C
|
coldEngineFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(coldEngineFoam
|
add_foam_executable(coldEngineFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
dieselEngineFoam.C
|
dieselEngineFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(dieselEngineFoam
|
add_foam_executable(dieselEngineFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
dieselFoam.C
|
dieselFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(dieselFoam
|
add_foam_executable(dieselFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
engineFoam.C
|
engineFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(engineFoam
|
add_foam_executable(engineFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,15 +30,13 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
combustionModel/combustionModel.C
|
combustionModel/combustionModel.C
|
||||||
combustionModel/newCombustionModel.C
|
combustionModel/newCombustionModel.C
|
||||||
infinitelyFastChemistry/infinitelyFastChemistry.C
|
infinitelyFastChemistry/infinitelyFastChemistry.C
|
||||||
noCombustion/noCombustion.C
|
noCombustion/noCombustion.C
|
||||||
)
|
)
|
||||||
|
|
||||||
add_foam_library(combustionModels SHARED ${sources})
|
add_foam_library(combustionModels SHARED ${SOURCES})
|
||||||
|
|
||||||
# This is a prototype! Replace second argument with a list of the highest
|
|
||||||
# dependencies only. Inherited dependencies will be treated automatically.
|
|
||||||
#target_link_libraries(combustionModels finiteVolume)
|
#target_link_libraries(combustionModels finiteVolume)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
reactingFoam.C
|
reactingFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(reactingFoam
|
add_foam_executable(reactingFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rhoReactingFoam.C
|
rhoReactingFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(rhoReactingFoam
|
add_foam_executable(rhoReactingFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
dbnsFoam.C
|
dbnsFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(dbnsFoam
|
add_foam_executable(dbnsFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
dbnsTurbFoam.C
|
dbnsTurbFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(dbnsTurbFoam
|
add_foam_executable(dbnsTurbFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
realFluidPisoFoam.C
|
realFluidPisoFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(realFluidPisoFoam
|
add_foam_executable(realFluidPisoFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,15 +30,13 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
mixedFixedValueSlip/mixedFixedValueSlipFvPatchFields.C
|
mixedFixedValueSlip/mixedFixedValueSlipFvPatchFields.C
|
||||||
U/maxwellSlipUFvPatchVectorField.C
|
U/maxwellSlipUFvPatchVectorField.C
|
||||||
T/smoluchowskiJumpTFvPatchScalarField.C
|
T/smoluchowskiJumpTFvPatchScalarField.C
|
||||||
rho/fixedRhoFvPatchScalarField.C
|
rho/fixedRhoFvPatchScalarField.C
|
||||||
)
|
)
|
||||||
|
|
||||||
add_foam_library(rhoCentralFoam SHARED ${sources})
|
add_foam_library(rhoCentralFoam SHARED ${SOURCES})
|
||||||
|
|
||||||
# This is a prototype! Replace second argument with a list of the highest
|
|
||||||
# dependencies only. Inherited dependencies will be treated automatically.
|
|
||||||
#target_link_libraries(rhoCentralFoam finiteVolume)
|
#target_link_libraries(rhoCentralFoam finiteVolume)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rhoPimpleFoam.C
|
rhoPimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(rhoPimpleFoam
|
add_foam_executable(rhoPimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rhoPisoFoam.C
|
rhoPisoFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(rhoPisoFoam
|
add_foam_executable(rhoPisoFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rhoPorousMRFPimpleFoam.C
|
rhoPorousMRFPimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(rhoPorousMRFPimpleFoam
|
add_foam_executable(rhoPorousMRFPimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rhoPorousSimpleFoam.C
|
rhoPorousSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(rhoPorousSimpleFoam
|
add_foam_executable(rhoPorousSimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rhoSimpleFoam.C
|
rhoSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(rhoSimpleFoam
|
add_foam_executable(rhoSimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rhoSonicFoam.C
|
rhoSonicFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(rhoSonicFoam
|
add_foam_executable(rhoSonicFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
rho/fixedRhoFvPatchScalarField.C
|
rho/fixedRhoFvPatchScalarField.C
|
||||||
rho/gradientRhoFvPatchScalarField.C
|
rho/gradientRhoFvPatchScalarField.C
|
||||||
rhoE/fixedRhoEFvPatchScalarField.C
|
rhoE/fixedRhoEFvPatchScalarField.C
|
||||||
|
@ -39,8 +39,6 @@ list(APPEND sources
|
||||||
p/inviscidWallPFvPatchScalarField.C
|
p/inviscidWallPFvPatchScalarField.C
|
||||||
)
|
)
|
||||||
|
|
||||||
add_foam_library(rhopSonicFoam SHARED ${sources})
|
add_foam_library(rhopSonicFoam SHARED ${SOURCES})
|
||||||
|
|
||||||
# This is a prototype! Replace second argument with a list of the highest
|
|
||||||
# dependencies only. Inherited dependencies will be treated automatically.
|
|
||||||
#target_link_libraries(rhopSonicFoam finiteVolume)
|
#target_link_libraries(rhopSonicFoam finiteVolume)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
sonicDyMFoam.C
|
sonicDyMFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(sonicDyMFoam
|
add_foam_executable(sonicDyMFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
sonicFoam.C
|
sonicFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(sonicFoam
|
add_foam_executable(sonicFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
sonicLiquidFoam.C
|
sonicLiquidFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(sonicLiquidFoam
|
add_foam_executable(sonicLiquidFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
steadyCompressibleFoam.C
|
steadyCompressibleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(steadyCompressibleFoam
|
add_foam_executable(steadyCompressibleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
steadyCompressibleMRFFoam.C
|
steadyCompressibleMRFFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(steadyCompressibleMRFFoam
|
add_foam_executable(steadyCompressibleMRFFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
steadyCompressibleSRFFoam.C
|
steadyCompressibleSRFFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(steadyCompressibleSRFFoam
|
add_foam_executable(steadyCompressibleSRFFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
steadyUniversalFoam.C
|
steadyUniversalFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(steadyUniversalFoam
|
add_foam_executable(steadyUniversalFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
steadyUniversalMRFFoam.C
|
steadyUniversalMRFFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(steadyUniversalMRFFoam
|
add_foam_executable(steadyUniversalMRFFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
MRFPorousFoam.C
|
MRFPorousFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(MRFPorousFoam
|
add_foam_executable(MRFPorousFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
blockCoupledScalarTransportFoam.C
|
blockCoupledScalarTransportFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(blockCoupledScalarTransportFoam
|
add_foam_executable(blockCoupledScalarTransportFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
conjugateHeatFoam.C
|
conjugateHeatFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(conjugateHeatFoam
|
add_foam_executable(conjugateHeatFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
conjugateHeatSimpleFoam.C
|
conjugateHeatSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(conjugateHeatSimpleFoam
|
add_foam_executable(conjugateHeatSimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,12 +30,12 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
thermalModel/thermalModel.C
|
thermalModel/thermalModel.C
|
||||||
)
|
)
|
||||||
set(thermalLaws thermalModel/thermalLaws)
|
set(thermalLaws thermalModel/thermalLaws)
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
${thermalLaws}/thermalLaw/thermalLaw.C
|
${thermalLaws}/thermalLaw/thermalLaw.C
|
||||||
${thermalLaws}/thermalLaw/newThermalLaw.C
|
${thermalLaws}/thermalLaw/newThermalLaw.C
|
||||||
${thermalLaws}/constantThermal/constantThermal.C
|
${thermalLaws}/constantThermal/constantThermal.C
|
||||||
|
@ -45,7 +45,7 @@ list(APPEND sources
|
||||||
|
|
||||||
set(thermalGaps thermalModel/thermalGaps)
|
set(thermalGaps thermalModel/thermalGaps)
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
${thermalGaps}/thermalGap/thermalGap.C
|
${thermalGaps}/thermalGap/thermalGap.C
|
||||||
${thermalGaps}/thermalGap/newThermalGap.C
|
${thermalGaps}/thermalGap/newThermalGap.C
|
||||||
${thermalGaps}/constantThermalGap/constantThermalGap.C
|
${thermalGaps}/constantThermalGap/constantThermalGap.C
|
||||||
|
@ -54,7 +54,7 @@ list(APPEND sources
|
||||||
|
|
||||||
set(thermalSource thermalModel/thermalSource)
|
set(thermalSource thermalModel/thermalSource)
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
${thermalSource}/thermalSource/thermalSource.C
|
${thermalSource}/thermalSource/thermalSource.C
|
||||||
${thermalSource}/thermalSource/newThermalSource.C
|
${thermalSource}/thermalSource/newThermalSource.C
|
||||||
${thermalSource}/constantThermalSource/constantThermalSource.C
|
${thermalSource}/constantThermalSource/constantThermalSource.C
|
||||||
|
@ -62,7 +62,7 @@ list(APPEND sources
|
||||||
|
|
||||||
set(BCs fvPatchFields)
|
set(BCs fvPatchFields)
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
${BCs}/controlledParabolicVelocity/controlledParabolicVelocityFvPatchVectorField.C
|
${BCs}/controlledParabolicVelocity/controlledParabolicVelocityFvPatchVectorField.C
|
||||||
${BCs}/chtRegionCoupleBase/chtRegionCoupleBase.C
|
${BCs}/chtRegionCoupleBase/chtRegionCoupleBase.C
|
||||||
${BCs}/chtRcThermalDiffusivity/chtRcThermalDiffusivityFvPatchScalarField.C
|
${BCs}/chtRcThermalDiffusivity/chtRcThermalDiffusivityFvPatchScalarField.C
|
||||||
|
@ -82,13 +82,11 @@ list(APPEND sources
|
||||||
|
|
||||||
set(FOs functionObjects)
|
set(FOs functionObjects)
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
${FOs}/heatFlux/heatFlux/heatFlux.C
|
${FOs}/heatFlux/heatFlux/heatFlux.C
|
||||||
${FOs}/heatFlux/heatFluxFunctionObject/heatFluxFunctionObject.C
|
${FOs}/heatFlux/heatFluxFunctionObject/heatFluxFunctionObject.C
|
||||||
)
|
)
|
||||||
|
|
||||||
add_foam_library(conjugateHeatTransfer SHARED ${sources})
|
add_foam_library(conjugateHeatTransfer SHARED ${SOURCES})
|
||||||
|
|
||||||
# This is a prototype! Replace second argument with a list of the highest
|
|
||||||
# dependencies only. Inherited dependencies will be treated automatically.
|
|
||||||
#target_link_libraries(conjugateHeatTransfer finiteVolume)
|
#target_link_libraries(conjugateHeatTransfer finiteVolume)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
pUCoupledFoam.C
|
pUCoupledFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(pUCoupledFoam
|
add_foam_executable(pUCoupledFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
dsmcFoam.C
|
dsmcFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(dsmcFoam
|
add_foam_executable(dsmcFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
mdEquilibrationFoam.C
|
mdEquilibrationFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(mdEquirationFoam
|
add_foam_executable(mdEquirationFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
mdFoam.C
|
mdFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(mdFoam
|
add_foam_executable(mdFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
electrostaticFoam.C
|
electrostaticFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(electrostaticFoam
|
add_foam_executable(electrostaticFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
mhdFoam.C
|
mhdFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(mhdFoam
|
add_foam_executable(mhdFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
icoDyMEngineFoam.C
|
icoDyMEngineFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(icoDyMEngineFoam
|
add_foam_executable(icoDyMEngineFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
sonicTurbDyMEngineFoam.C
|
sonicTurbDyMEngineFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(sonicTurbDyMEngineFoam
|
add_foam_executable(sonicTurbDyMEngineFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
turbDyMEngineFoam.C
|
turbDyMEngineFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(turbDyMEngineFoam
|
add_foam_executable(turbDyMEngineFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
equationReaderDemo.C
|
equationReaderDemo.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(equationReaderDemo
|
add_foam_executable(equationReaderDemo
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
financialFoam.C
|
financialFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(financialFoam
|
add_foam_executable(financialFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
liquidFilmFoam.C
|
liquidFilmFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(liquidFilmFoam
|
add_foam_executable(liquidFilmFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
surfactantFoam.C
|
surfactantFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(surfactantFoam
|
add_foam_executable(surfactantFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
boussinesqBuoyantFoam.C
|
boussinesqBuoyantFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(boussinesqBuoyantFoam
|
add_foam_executable(boussinesqBuoyantFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
buoyantBoussinesqPisoFoam.C
|
buoyantBoussinesqPisoFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(buoyantBoussinesqPisoFoam
|
add_foam_executable(buoyantBoussinesqPisoFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
buoyantBoussinesqSimpleFoam.C
|
buoyantBoussinesqSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(buoyantBoussinesqSimpleFoam
|
add_foam_executable(buoyantBoussinesqSimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
buoyantPisoFoam.C
|
buoyantPisoFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(buoyantPisoFoam
|
add_foam_executable(buoyantPisoFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
buoyantSimpleFoam.C
|
buoyantSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(buoyantSimpleFoam
|
add_foam_executable(buoyantSimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
buoyantSimpleRadiationFoam.C
|
buoyantSimpleRadiationFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(buoyantSimpleRadiationFoam
|
add_foam_executable(buoyantSimpleRadiationFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
regionProperties/regionProperties.C
|
regionProperties/regionProperties.C
|
||||||
derivedFvPatchFields/solidWallHeatFluxTemperature/solidWallHeatFluxTemperatureFvPatchScalarField.C
|
derivedFvPatchFields/solidWallHeatFluxTemperature/solidWallHeatFluxTemperatureFvPatchScalarField.C
|
||||||
derivedFvPatchFields/solidWallMixedTemperatureCoupled/solidWallMixedTemperatureCoupledFvPatchScalarField.C
|
derivedFvPatchFields/solidWallMixedTemperatureCoupled/solidWallMixedTemperatureCoupledFvPatchScalarField.C
|
||||||
|
@ -47,5 +47,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(chtMultiRegionFoam
|
add_foam_executable(chtMultiRegionFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
derivedFvPatchFields/solidWallHeatFluxTemperature/solidWallHeatFluxTemperatureFvPatchScalarField.C
|
derivedFvPatchFields/solidWallHeatFluxTemperature/solidWallHeatFluxTemperatureFvPatchScalarField.C
|
||||||
chtMultiRegionSimpleFoam.C
|
chtMultiRegionSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
@ -43,5 +43,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(chtMultiRegionSimpleFoam
|
add_foam_executable(chtMultiRegionSimpleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
icoDyMIbFoam.C
|
icoDyMIbFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(icoDyMIbFoam
|
add_foam_executable(icoDyMIbFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
icoIbFoam.C
|
icoIbFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(icoIbFoam
|
add_foam_executable(icoIbFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
interIbFoam.C
|
interIbFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(interIbFoam
|
add_foam_executable(interIbFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
porousSimpleIbFoam.C
|
porousSimpleIbFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(porousSimpleIbFoam
|
add_foam_executable(porousSimpleIbFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
potentialIbFoam.C
|
potentialIbFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(potentialIbFoam
|
add_foam_executable(potentialIbFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
simpleIbFoam.C
|
simpleIbFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(simpleIbFoam
|
add_foam_executable(simpleIbFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
MRFSimpleFoam.C
|
MRFSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(MRFSimpleFoam
|
add_foam_executable(MRFSimpleFoam
|
||||||
DEPENDS incompressibleRASModels
|
DEPENDS incompressibleRASModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
boundaryFoam.C
|
boundaryFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(boundaryFoam
|
add_foam_executable(boundaryFoam
|
||||||
DEPENDS incompressibleRASModels sampling
|
DEPENDS incompressibleRASModels sampling
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
channelFoam.C
|
channelFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(channelFoam
|
add_foam_executable(channelFoam
|
||||||
DEPENDS incompressibleLESModels
|
DEPENDS incompressibleLESModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
icoDyMFoam.C
|
icoDyMFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(icoDyMFoam
|
add_foam_executable(icoDyMFoam
|
||||||
DEPENDS dynamicFvMesh
|
DEPENDS dynamicFvMesh
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
icoDyMSimpleFoam.C
|
icoDyMSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(icoDyMSimpleFoam
|
add_foam_executable(icoDyMSimpleFoam
|
||||||
DEPENDS dynamicFvMesh
|
DEPENDS dynamicFvMesh
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
icoFoam.C
|
icoFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(icoFoam
|
add_foam_executable(icoFoam
|
||||||
DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
nonNewtonianIcoFoam.C
|
nonNewtonianIcoFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(nonNewtonianIcoFoam
|
add_foam_executable(nonNewtonianIcoFoam
|
||||||
DEPENDS incompressibleTransportModels
|
DEPENDS incompressibleTransportModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
pimpleDyMFoam.C
|
pimpleDyMFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(pimpleDyMFoam
|
add_foam_executable(pimpleDyMFoam
|
||||||
DEPENDS dynamicFvMesh incompressibleRASModels incompressibleLESModels
|
DEPENDS dynamicFvMesh incompressibleRASModels incompressibleLESModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
pimpleFoam.C
|
pimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(pimpleFoam
|
add_foam_executable(pimpleFoam
|
||||||
DEPENDS incompressibleRASModels incompressibleLESModels
|
DEPENDS incompressibleRASModels incompressibleLESModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
pisoFoam.C
|
pisoFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(pisoFoam
|
add_foam_executable(pisoFoam
|
||||||
DEPENDS incompressibleRASModels incompressibleLESModels
|
DEPENDS incompressibleRASModels incompressibleLESModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
porousSimpleFoam.C
|
porousSimpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(porousSimpleFoam
|
add_foam_executable(porousSimpleFoam
|
||||||
DEPENDS incompressibleRASModels
|
DEPENDS incompressibleRASModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
shallowWaterFoam.C
|
shallowWaterFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(shallowWaterFoam
|
add_foam_executable(shallowWaterFoam
|
||||||
DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
simpleFoam.C
|
simpleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(simpleFoam
|
add_foam_executable(simpleFoam
|
||||||
DEPENDS incompressibleRASModels
|
DEPENDS incompressibleRASModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
simpleSRFFoam.C
|
simpleSRFFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(simpleSRFFoam
|
add_foam_executable(simpleSRFFoam
|
||||||
DEPENDS incompressibleRASModels
|
DEPENDS incompressibleRASModels
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
coalChemistryFoam.C
|
coalChemistryFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(coalChemistryFoam
|
add_foam_executable(coalChemistryFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
porousExplicitSourceReactingParcelFoam.C
|
porousExplicitSourceReactingParcelFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(porousExplicitSourceReactingParcelFoam
|
add_foam_executable(porousExplicitSourceReactingParcelFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
reactingParcelFoam.C
|
reactingParcelFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(reactingParcelFoam
|
add_foam_executable(reactingParcelFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
uncoupledKinematicParcelFoam.C
|
uncoupledKinematicParcelFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(uncoupledKinematicParcelFoam
|
add_foam_executable(uncoupledKinematicParcelFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
multiSolverDemo.C
|
multiSolverDemo.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(multiSolverDemo
|
add_foam_executable(multiSolverDemo
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
MRFInterFoam.C
|
MRFInterFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(MRFInterFoam
|
add_foam_executable(MRFInterFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
barotropicCavitatingFoam.C
|
barotropicCavitatingFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(barotropicCavitatingFoam
|
add_foam_executable(barotropicCavitatingFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
bubbleFoam.C
|
bubbleFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(bubbleFoam
|
add_foam_executable(bubbleFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
cavitatingFoam.C
|
cavitatingFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(cavitatingFoam
|
add_foam_executable(cavitatingFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
compressibleInterDyMFoam.C
|
compressibleInterDyMFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(compressibleInterDyMFoam
|
add_foam_executable(compressibleInterDyMFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
compressibleInterFoam.C
|
compressibleInterFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(compressibleInterFoam
|
add_foam_executable(compressibleInterFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
interDyMFoam.C
|
interDyMFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(interDyMFoam
|
add_foam_executable(interDyMFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
interFoam.C
|
interFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(interFoam
|
add_foam_executable(interFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
incompressibleThreePhaseMixture/threePhaseMixture.C
|
incompressibleThreePhaseMixture/threePhaseMixture.C
|
||||||
threePhaseInterfaceProperties/threePhaseInterfaceProperties.C
|
threePhaseInterfaceProperties/threePhaseInterfaceProperties.C
|
||||||
interMixingFoam.C
|
interMixingFoam.C
|
||||||
|
@ -44,5 +44,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(interMixingFoam
|
add_foam_executable(interMixingFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
interPhaseChangeFoam.C
|
interPhaseChangeFoam.C
|
||||||
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C
|
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C
|
||||||
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/newPhaseChangeTwoPhaseMixture.C
|
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/newPhaseChangeTwoPhaseMixture.C
|
||||||
|
@ -47,5 +47,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(interPhaseChangeFoam
|
add_foam_executable(interPhaseChangeFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
multiphaseMixture/phase/phase.C
|
multiphaseMixture/phase/phase.C
|
||||||
multiphaseMixture/multiphaseAlphaContactAngle/multiphaseAlphaContactAngleFvPatchScalarField.C
|
multiphaseMixture/multiphaseAlphaContactAngle/multiphaseAlphaContactAngleFvPatchScalarField.C
|
||||||
multiphaseMixture/multiphaseMixture.C
|
multiphaseMixture/multiphaseMixture.C
|
||||||
|
@ -45,5 +45,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(multiphaseInterFoam
|
add_foam_executable(multiphaseInterFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
porousInterFoam.C
|
porousInterFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(porousInterFoam
|
add_foam_executable(porousInterFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
list(APPEND sources
|
list(APPEND SOURCES
|
||||||
settlingFoam.C
|
settlingFoam.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,5 +42,5 @@ endif()
|
||||||
|
|
||||||
add_foam_executable(settlingFoam
|
add_foam_executable(settlingFoam
|
||||||
# DEPENDS finiteVolume
|
# DEPENDS finiteVolume
|
||||||
SOURCES ${sources}
|
SOURCES ${SOURCES}
|
||||||
)
|
)
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue