Enabled paraview plugin and out-of-source compilation

This commit is contained in:
Henrik Rusche 2017-02-24 11:15:43 +01:00
parent 48926a792f
commit 3abb7c9f7b
474 changed files with 1451 additions and 2923 deletions

View file

@ -1,16 +1,17 @@
# /*-------------------------------------------------------------------------*\# ======== |
# \\ / F ield | foam-extend: Open Source CFD
# \\ / O peration | Version: 3.2
# \\ / A nd | Web: http://www.foam-extend.org
# \\/ M anipulation | For copyright notice see file Copyright
# -----------------------------------------------------------------------------
# --------------------------------------------------------------------------
# ======== |
# \ / F ield | foam-extend: Open Source CFD
# \ / O peration | Version: 4.1
# \ / A nd | Web: http://www.foam-extend.org
# \/ M anipulation | For copyright notice see file Copyright
# --------------------------------------------------------------------------
# License
# This file is part of foam-extend.
#
# 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
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
# Free Software Foundation, either version 3 of the License, or {at your
# option} any later version.
#
# foam-extend is distributed in the hope that it will be useful, but
# 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/>.
#
# Description
# CMakeLists.txt file for implementing a test harness for the compilation
# 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
# CMakeLists.txt file for libraries and applications
#
# Author
# Martin Beaudoin, Hydro-Quebec, 2010. All rights reserved
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
#
#
# \*-------------------------------------------------------------------------*/
# --------------------------------------------------------------------------
cmake_minimum_required (VERSION 2.8)
@ -47,6 +44,7 @@ include(getGitVersion)
add_custom_target(getGitVersion ALL
COMMAND ${CMAKE_COMMAND} -P cmake/getGitVersion.cmake
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
COMMENT "Getting GIT version"
)
@ -79,12 +77,13 @@ find_package(FLEX REQUIRED)
find_package(Git REQUIRED)
find_package(ParaView REQUIRED)
#
# 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)
# 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_property(CACHE FOAM_PRECISION PROPERTY STRINGS single double)
if(FOAM_PRECISION EQUAL "single")
target_compile_definitions(OSspecific PUBLIC -DWM_SP)
target_compile_definitions(OSspecific PUBLIC WM_SP)
else()
target_compile_definitions(OSspecific PUBLIC -DWM_SP)
target_compile_definitions(OSspecific PUBLIC WM_DP)
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)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
dnsFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(dnsFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
PODSolver.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(PODSolver
DEPENDS POD
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
laplacianFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(laplacianFoam
DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
potentialDyMFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(potentialDyMFoam
DEPENDS dynamicFvMesh
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
potentialFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(potentialFoam
DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
scalarTransportFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(scalarTransportFoam
DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
sixDOFSolver.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(sixDOFSolver
DEPENDS meshTools ODE
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
XiModels/XiModel/XiModel.C
XiModels/XiModel/newXiModel.C
XiModels/fixed/fixed.C
@ -64,5 +64,5 @@ endif()
add_foam_executable(PDRFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
XiFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(XiFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
coldEngineFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(coldEngineFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
dieselEngineFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(dieselEngineFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
dieselFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(dieselFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
engineFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(engineFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,15 +30,13 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
combustionModel/combustionModel.C
combustionModel/newCombustionModel.C
infinitelyFastChemistry/infinitelyFastChemistry.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)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
reactingFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(reactingFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rhoReactingFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(rhoReactingFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
dbnsFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(dbnsFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
dbnsTurbFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(dbnsTurbFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
realFluidPisoFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(realFluidPisoFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,15 +30,13 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
mixedFixedValueSlip/mixedFixedValueSlipFvPatchFields.C
U/maxwellSlipUFvPatchVectorField.C
T/smoluchowskiJumpTFvPatchScalarField.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)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rhoPimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(rhoPimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rhoPisoFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(rhoPisoFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rhoPorousMRFPimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(rhoPorousMRFPimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rhoPorousSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(rhoPorousSimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rhoSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(rhoSimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rhoSonicFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(rhoSonicFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
rho/fixedRhoFvPatchScalarField.C
rho/gradientRhoFvPatchScalarField.C
rhoE/fixedRhoEFvPatchScalarField.C
@ -39,8 +39,6 @@ list(APPEND sources
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)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
sonicDyMFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(sonicDyMFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
sonicFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(sonicFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
sonicLiquidFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(sonicLiquidFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
steadyCompressibleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(steadyCompressibleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
steadyCompressibleMRFFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(steadyCompressibleMRFFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
steadyCompressibleSRFFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(steadyCompressibleSRFFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
steadyUniversalFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(steadyUniversalFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
steadyUniversalMRFFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(steadyUniversalMRFFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
MRFPorousFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(MRFPorousFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
blockCoupledScalarTransportFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(blockCoupledScalarTransportFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
conjugateHeatFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(conjugateHeatFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
conjugateHeatSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(conjugateHeatSimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,12 +30,12 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
thermalModel/thermalModel.C
)
set(thermalLaws thermalModel/thermalLaws)
list(APPEND sources
list(APPEND SOURCES
${thermalLaws}/thermalLaw/thermalLaw.C
${thermalLaws}/thermalLaw/newThermalLaw.C
${thermalLaws}/constantThermal/constantThermal.C
@ -45,7 +45,7 @@ list(APPEND sources
set(thermalGaps thermalModel/thermalGaps)
list(APPEND sources
list(APPEND SOURCES
${thermalGaps}/thermalGap/thermalGap.C
${thermalGaps}/thermalGap/newThermalGap.C
${thermalGaps}/constantThermalGap/constantThermalGap.C
@ -54,7 +54,7 @@ list(APPEND sources
set(thermalSource thermalModel/thermalSource)
list(APPEND sources
list(APPEND SOURCES
${thermalSource}/thermalSource/thermalSource.C
${thermalSource}/thermalSource/newThermalSource.C
${thermalSource}/constantThermalSource/constantThermalSource.C
@ -62,7 +62,7 @@ list(APPEND sources
set(BCs fvPatchFields)
list(APPEND sources
list(APPEND SOURCES
${BCs}/controlledParabolicVelocity/controlledParabolicVelocityFvPatchVectorField.C
${BCs}/chtRegionCoupleBase/chtRegionCoupleBase.C
${BCs}/chtRcThermalDiffusivity/chtRcThermalDiffusivityFvPatchScalarField.C
@ -82,13 +82,11 @@ list(APPEND sources
set(FOs functionObjects)
list(APPEND sources
list(APPEND SOURCES
${FOs}/heatFlux/heatFlux/heatFlux.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)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
pUCoupledFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(pUCoupledFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
dsmcFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(dsmcFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
mdEquilibrationFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(mdEquirationFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
mdFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(mdFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
electrostaticFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(electrostaticFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
mhdFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(mhdFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
icoDyMEngineFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(icoDyMEngineFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
sonicTurbDyMEngineFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(sonicTurbDyMEngineFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
turbDyMEngineFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(turbDyMEngineFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
equationReaderDemo.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(equationReaderDemo
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
financialFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(financialFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
liquidFilmFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(liquidFilmFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
surfactantFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(surfactantFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
boussinesqBuoyantFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(boussinesqBuoyantFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
buoyantBoussinesqPisoFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(buoyantBoussinesqPisoFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
buoyantBoussinesqSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(buoyantBoussinesqSimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
buoyantPisoFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(buoyantPisoFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
buoyantSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(buoyantSimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
buoyantSimpleRadiationFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(buoyantSimpleRadiationFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
regionProperties/regionProperties.C
derivedFvPatchFields/solidWallHeatFluxTemperature/solidWallHeatFluxTemperatureFvPatchScalarField.C
derivedFvPatchFields/solidWallMixedTemperatureCoupled/solidWallMixedTemperatureCoupledFvPatchScalarField.C
@ -47,5 +47,5 @@ endif()
add_foam_executable(chtMultiRegionFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
derivedFvPatchFields/solidWallHeatFluxTemperature/solidWallHeatFluxTemperatureFvPatchScalarField.C
chtMultiRegionSimpleFoam.C
)
@ -43,5 +43,5 @@ endif()
add_foam_executable(chtMultiRegionSimpleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
icoDyMIbFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(icoDyMIbFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
icoIbFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(icoIbFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
interIbFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(interIbFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
porousSimpleIbFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(porousSimpleIbFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
potentialIbFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(potentialIbFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
simpleIbFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(simpleIbFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
MRFSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(MRFSimpleFoam
DEPENDS incompressibleRASModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
boundaryFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(boundaryFoam
DEPENDS incompressibleRASModels sampling
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
channelFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(channelFoam
DEPENDS incompressibleLESModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
icoDyMFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(icoDyMFoam
DEPENDS dynamicFvMesh
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
icoDyMSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(icoDyMSimpleFoam
DEPENDS dynamicFvMesh
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
icoFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(icoFoam
DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
nonNewtonianIcoFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(nonNewtonianIcoFoam
DEPENDS incompressibleTransportModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
pimpleDyMFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(pimpleDyMFoam
DEPENDS dynamicFvMesh incompressibleRASModels incompressibleLESModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
pimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(pimpleFoam
DEPENDS incompressibleRASModels incompressibleLESModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
pisoFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(pisoFoam
DEPENDS incompressibleRASModels incompressibleLESModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
porousSimpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(porousSimpleFoam
DEPENDS incompressibleRASModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
shallowWaterFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(shallowWaterFoam
DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
simpleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(simpleFoam
DEPENDS incompressibleRASModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
simpleSRFFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(simpleSRFFoam
DEPENDS incompressibleRASModels
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
coalChemistryFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(coalChemistryFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
porousExplicitSourceReactingParcelFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(porousExplicitSourceReactingParcelFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
reactingParcelFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(reactingParcelFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
uncoupledKinematicParcelFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(uncoupledKinematicParcelFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
multiSolverDemo.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(multiSolverDemo
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
MRFInterFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(MRFInterFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
barotropicCavitatingFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(barotropicCavitatingFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
bubbleFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(bubbleFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
cavitatingFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(cavitatingFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
compressibleInterDyMFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(compressibleInterDyMFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
compressibleInterFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(compressibleInterFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
interDyMFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(interDyMFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
interFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(interFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
incompressibleThreePhaseMixture/threePhaseMixture.C
threePhaseInterfaceProperties/threePhaseInterfaceProperties.C
interMixingFoam.C
@ -44,5 +44,5 @@ endif()
add_foam_executable(interMixingFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
interPhaseChangeFoam.C
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C
phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/newPhaseChangeTwoPhaseMixture.C
@ -47,5 +47,5 @@ endif()
add_foam_executable(interPhaseChangeFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
multiphaseMixture/phase/phase.C
multiphaseMixture/multiphaseAlphaContactAngle/multiphaseAlphaContactAngleFvPatchScalarField.C
multiphaseMixture/multiphaseMixture.C
@ -45,5 +45,5 @@ endif()
add_foam_executable(multiphaseInterFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
porousInterFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(porousInterFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

View file

@ -30,7 +30,7 @@
#
# --------------------------------------------------------------------------
list(APPEND sources
list(APPEND SOURCES
settlingFoam.C
)
@ -42,5 +42,5 @@ endif()
add_foam_executable(settlingFoam
# DEPENDS finiteVolume
SOURCES ${sources}
SOURCES ${SOURCES}
)

Some files were not shown because too many files have changed in this diff Show more