2013-08-02 07:07:33 -05:00
|
|
|
###########################################################################
|
|
|
|
# #
|
|
|
|
# Note: The bulk of the build system is located in the cmake/ directory. #
|
|
|
|
# This file only contains the specializations for this particular #
|
|
|
|
# project. Most likely you are interested in editing one of these #
|
|
|
|
# files instead: #
|
|
|
|
# #
|
|
|
|
# dune.module Name and version number #
|
|
|
|
# CMakeLists_files.cmake Path of source files #
|
|
|
|
# cmake/Modules/${project}-prereqs.cmake Dependencies #
|
|
|
|
# #
|
|
|
|
###########################################################################
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2017-09-15 04:17:40 -05:00
|
|
|
# Mandatory call to project
|
2017-12-19 05:44:24 -06:00
|
|
|
project(opm-simulators C CXX)
|
2017-09-15 04:17:40 -05:00
|
|
|
|
2013-05-15 03:40:00 -05:00
|
|
|
cmake_minimum_required (VERSION 2.8)
|
|
|
|
|
2015-05-27 04:51:28 -05:00
|
|
|
option(SIBLING_SEARCH "Search for other modules in sibling directories?" ON)
|
2015-10-19 08:21:08 -05:00
|
|
|
set( USE_OPENMP_DEFAULT OFF ) # Use of OpenMP is considered experimental
|
2019-03-06 04:54:21 -06:00
|
|
|
option(BUILD_FLOW "Build the production oriented flow simulator?" ON)
|
2019-10-11 01:46:17 -05:00
|
|
|
option(BUILD_FLOW_VARIANTS "Build the variants for flow by default?" OFF)
|
2019-03-07 05:45:15 -06:00
|
|
|
option(BUILD_EBOS "Build the research oriented ebos simulator?" ON)
|
|
|
|
option(BUILD_EBOS_EXTENSIONS "Build the variants for various extensions of ebos by default?" OFF)
|
2019-03-11 10:50:47 -05:00
|
|
|
option(BUILD_EBOS_DEBUG_EXTENSIONS "Build the ebos variants which are purely for debugging by default?" OFF)
|
2015-03-18 08:26:29 -05:00
|
|
|
|
2017-09-25 05:24:15 -05:00
|
|
|
if(SIBLING_SEARCH AND NOT opm-common_DIR)
|
|
|
|
# guess the sibling dir
|
|
|
|
get_filename_component(_leaf_dir_name ${PROJECT_BINARY_DIR} NAME)
|
|
|
|
get_filename_component(_parent_full_dir ${PROJECT_BINARY_DIR} DIRECTORY)
|
|
|
|
get_filename_component(_parent_dir_name ${_parent_full_dir} NAME)
|
|
|
|
#Try if <module-name>/<build-dir> is used
|
|
|
|
get_filename_component(_modules_dir ${_parent_full_dir} DIRECTORY)
|
|
|
|
if(IS_DIRECTORY ${_modules_dir}/opm-common/${_leaf_dir_name})
|
|
|
|
set(opm-common_DIR ${_modules_dir}/opm-common/${_leaf_dir_name})
|
2017-09-15 04:34:22 -05:00
|
|
|
else()
|
2017-09-25 05:24:15 -05:00
|
|
|
string(REPLACE ${PROJECT_NAME} opm-common _opm_common_leaf ${_leaf_dir_name})
|
|
|
|
if(NOT _leaf_dir_name STREQUAL _opm_common_leaf
|
|
|
|
AND IS_DIRECTORY ${_parent_full_dir}/${_opm_common_leaf})
|
|
|
|
# We are using build directories named <prefix><module-name><postfix>
|
|
|
|
set(opm-common_DIR ${_parent_full_dir}/${_opm_common_leaf})
|
|
|
|
elseif(IS_DIRECTORY ${_parent_full_dir}/opm-common)
|
|
|
|
# All modules are in a common build dir
|
2018-02-05 04:38:07 -06:00
|
|
|
set(opm-common_DIR "${_parent_full_dir}/opm-common")
|
2017-09-15 04:34:22 -05:00
|
|
|
endif()
|
2017-09-25 05:24:15 -05:00
|
|
|
endif()
|
2017-09-26 09:16:41 -05:00
|
|
|
endif()
|
|
|
|
if(opm-common_DIR AND NOT IS_DIRECTORY ${opm-common_DIR})
|
|
|
|
message(WARNING "Value ${opm-common_DIR} passed to variable"
|
|
|
|
" opm-common_DIR is not a directory")
|
2017-09-25 05:24:15 -05:00
|
|
|
endif()
|
2015-03-18 08:26:29 -05:00
|
|
|
|
2017-09-25 05:24:15 -05:00
|
|
|
find_package(opm-common REQUIRED)
|
2015-03-18 08:26:29 -05:00
|
|
|
|
2017-09-25 05:24:15 -05:00
|
|
|
include(OpmInit)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2015-10-21 10:35:44 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
# not the same location as most of the other projects? this hook overrides
|
|
|
|
macro (dir_hook)
|
|
|
|
endmacro (dir_hook)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
# project information is in dune.module. Read this file and set variables.
|
|
|
|
# we cannot generate dune.module since it is read by dunecontrol before
|
|
|
|
# the build starts, so it makes sense to keep the data there then.
|
|
|
|
include (OpmInit)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2018-03-12 09:37:21 -05:00
|
|
|
# Look for the opm-tests repository; if found the variable
|
|
|
|
# HAVE_OPM_TESTS will be set to true.
|
|
|
|
include(Findopm-tests)
|
2015-10-21 10:35:44 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
# list of prerequisites for this particular project; this is in a
|
|
|
|
# separate file (in cmake/Modules sub-directory) because it is shared
|
|
|
|
# with the find module
|
2015-05-15 08:43:03 -05:00
|
|
|
include ("${project}-prereqs")
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
# read the list of components from this file (in the project directory);
|
|
|
|
# it should set various lists with the names of the files to include
|
|
|
|
include (CMakeLists_files.cmake)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
macro (config_hook)
|
2019-06-13 07:59:31 -05:00
|
|
|
opm_need_version_of ("dune-common")
|
|
|
|
opm_need_version_of ("dune-istl")
|
2019-08-23 01:34:32 -05:00
|
|
|
opm_need_version_of ("opm-models")
|
2013-08-02 07:07:33 -05:00
|
|
|
endmacro (config_hook)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
macro (prereqs_hook)
|
|
|
|
endmacro (prereqs_hook)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
macro (sources_hook)
|
|
|
|
endmacro (sources_hook)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
macro (fortran_hook)
|
|
|
|
endmacro (fortran_hook)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2014-06-16 07:40:52 -05:00
|
|
|
macro (files_hook)
|
|
|
|
endmacro (files_hook)
|
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
macro (tests_hook)
|
|
|
|
endmacro (tests_hook)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2013-08-02 07:07:33 -05:00
|
|
|
# all setup common to the OPM library modules is done here
|
|
|
|
include (OpmLibMain)
|
2013-05-15 03:40:00 -05:00
|
|
|
|
2018-03-12 09:37:21 -05:00
|
|
|
if (HAVE_OPM_TESTS)
|
2016-11-21 11:02:21 -06:00
|
|
|
include (${CMAKE_CURRENT_SOURCE_DIR}/compareECLFiles.cmake)
|
2017-03-03 08:08:12 -06:00
|
|
|
endif()
|
2018-09-19 04:45:40 -05:00
|
|
|
|
2018-11-13 03:28:05 -06:00
|
|
|
opm_set_test_driver(${CMAKE_CURRENT_SOURCE_DIR}/tests/run-parallel-unitTest.sh "")
|
|
|
|
|
|
|
|
opm_add_test(test_gatherconvergencereport
|
|
|
|
DEPENDS "opmsimulators"
|
|
|
|
LIBRARIES opmsimulators ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
|
|
|
|
SOURCES
|
|
|
|
tests/test_gatherconvergencereport.cpp
|
|
|
|
CONDITION
|
|
|
|
MPI_FOUND
|
|
|
|
DRIVER_ARGS
|
|
|
|
5 ${CMAKE_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
2019-01-11 06:53:18 -06:00
|
|
|
opm_add_test(test_gatherdeferredlogger
|
|
|
|
DEPENDS "opmsimulators"
|
|
|
|
LIBRARIES opmsimulators ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
|
|
|
|
SOURCES
|
|
|
|
tests/test_gatherdeferredlogger.cpp
|
|
|
|
CONDITION
|
|
|
|
MPI_FOUND
|
|
|
|
DRIVER_ARGS
|
|
|
|
5 ${CMAKE_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
2019-03-06 04:54:21 -06:00
|
|
|
include(OpmBashCompletion)
|
2019-01-11 06:53:18 -06:00
|
|
|
|
2019-03-07 05:45:15 -06:00
|
|
|
if (NOT BUILD_FLOW)
|
|
|
|
set(FLOW_DEFAULT_ENABLE_IF "FALSE")
|
|
|
|
else()
|
|
|
|
set(FLOW_DEFAULT_ENABLE_IF "TRUE")
|
|
|
|
endif()
|
|
|
|
|
2019-02-27 15:34:10 -06:00
|
|
|
# the production oriented general-purpose ECL simulator
|
2018-09-20 03:58:27 -05:00
|
|
|
opm_add_test(flow
|
|
|
|
ONLY_COMPILE
|
|
|
|
ALWAYS_ENABLE
|
2019-03-07 05:45:15 -06:00
|
|
|
DEFAULT_ENABLE_IF ${FLOW_DEFAULT_ENABLE_IF}
|
2018-09-20 03:58:27 -05:00
|
|
|
DEPENDS "opmsimulators"
|
|
|
|
LIBRARIES "opmsimulators"
|
|
|
|
SOURCES
|
2019-03-07 05:45:15 -06:00
|
|
|
flow/flow.cpp
|
|
|
|
flow/flow_ebos_blackoil.cpp
|
|
|
|
flow/flow_ebos_gasoil.cpp
|
|
|
|
flow/flow_ebos_oilwater.cpp
|
|
|
|
flow/flow_ebos_polymer.cpp
|
2019-04-26 03:38:37 -05:00
|
|
|
flow/flow_ebos_foam.cpp
|
2019-03-07 05:45:15 -06:00
|
|
|
flow/flow_ebos_solvent.cpp
|
|
|
|
flow/flow_ebos_energy.cpp
|
|
|
|
flow/flow_ebos_oilwater_polymer.cpp
|
|
|
|
flow/flow_ebos_oilwater_polymer_injectivity.cpp)
|
|
|
|
|
2019-10-11 01:46:17 -05:00
|
|
|
if (NOT BUILD_FLOW_VARIANTS)
|
|
|
|
set(FLOW_VARIANTS_DEFAULT_ENABLE_IF "FALSE")
|
|
|
|
else()
|
|
|
|
set(FLOW_VARIANTS_DEFAULT_ENABLE_IF "TRUE")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Variant versions of Flow.
|
2019-03-21 16:15:22 -05:00
|
|
|
opm_add_test(flow_blackoil_dunecpr
|
|
|
|
ONLY_COMPILE
|
2019-10-11 01:46:17 -05:00
|
|
|
DEFAULT_ENABLE_IF ${FLOW_VARIANTS_DEFAULT_ENABLE_IF}
|
2019-03-21 16:15:22 -05:00
|
|
|
SOURCES flow/flow_blackoil_dunecpr.cpp
|
|
|
|
EXE_NAME flow_blackoil_dunecpr
|
|
|
|
DEPENDS "opmsimulators"
|
|
|
|
LIBRARIES "opmsimulators")
|
|
|
|
|
2019-10-10 09:14:44 -05:00
|
|
|
opm_add_test(flow_onephase
|
|
|
|
ONLY_COMPILE
|
2019-10-11 01:46:17 -05:00
|
|
|
DEFAULT_ENABLE_IF ${FLOW_VARIANTS_DEFAULT_ENABLE_IF}
|
2019-10-10 09:14:44 -05:00
|
|
|
SOURCES flow/flow_onephase.cpp
|
|
|
|
EXE_NAME flow_onephase
|
|
|
|
DEPENDS "opmsimulators"
|
|
|
|
LIBRARIES "opmsimulators")
|
|
|
|
|
|
|
|
opm_add_test(flow_onephase_energy
|
|
|
|
ONLY_COMPILE
|
2019-10-11 01:46:17 -05:00
|
|
|
DEFAULT_ENABLE_IF ${FLOW_VARIANTS_DEFAULT_ENABLE_IF}
|
2019-10-10 09:14:44 -05:00
|
|
|
SOURCES flow/flow_onephase_energy.cpp
|
|
|
|
EXE_NAME flow_onephase_energy
|
|
|
|
DEPENDS "opmsimulators"
|
|
|
|
LIBRARIES "opmsimulators")
|
|
|
|
|
2019-03-07 05:45:15 -06:00
|
|
|
if (BUILD_FLOW)
|
|
|
|
install(TARGETS flow DESTINATION bin)
|
|
|
|
opm_add_bash_completion(flow)
|
|
|
|
|
|
|
|
add_test(NAME flow__version
|
|
|
|
COMMAND flow --version)
|
|
|
|
set_tests_properties(flow__version PROPERTIES
|
|
|
|
PASS_REGULAR_EXPRESSION "${${project}_LABEL}")
|
2019-03-06 04:54:21 -06:00
|
|
|
endif()
|
2018-12-09 14:15:59 -06:00
|
|
|
|
2019-03-07 05:45:15 -06:00
|
|
|
if (NOT BUILD_EBOS)
|
|
|
|
set(EBOS_DEFAULT_ENABLE_IF "FALSE")
|
|
|
|
else()
|
|
|
|
set(EBOS_DEFAULT_ENABLE_IF "TRUE")
|
|
|
|
endif()
|
2019-06-13 07:59:31 -05:00
|
|
|
|
2019-02-27 15:34:10 -06:00
|
|
|
# the research oriented general-purpose ECL simulator ("ebos" == &ecl
|
|
|
|
# &black-&oil &simulator)
|
add `mebos`, a multiplexed ebos variant
`mebos` works similarly as `flow`, but in contrast to `flow`, `mebos`
only creates the deck in the common code path whilst the
'EclipseState' and the other higher-level parser objects are always
created internally by the vanguard. this approach avoids code
duplication and the worst effects of parser API creep.
to avoid having to compile non-trivial compile units multiple times,
the actual code of the variants is moved into `ebos_$VARIANT.{hh,cc}`
files and the respective compile units are each put into a small
static library whilst the main function of said libraries are invoked
by either the multiplexed or the respective specialized simulator's
`main()`. This is also somewhat similar of how `flow` works, with the
difference that `mebos` uses the blackoil variant to determine the
parameters it needs to know for parsing the deck instead of
introducing a "fake" type tag for this. The rationale is to reduce
compile time compared to the "fake type tag" approach and -- to a
lesser extend -- avoid unnecessary copy-and-pasting of code. In
particular, this means that for the vast majority of cases, only one
place needs changed in the code for all `ebos` variants if, for
example, the parser API requires further objects in the future.
2019-06-11 03:22:11 -05:00
|
|
|
get_target_property(ecl_INCLUDE_DIRS ecl INTERFACE_INCLUDE_DIRECTORIES)
|
|
|
|
|
2019-08-09 04:04:45 -05:00
|
|
|
set(MEBOS_TARGETS "")
|
|
|
|
foreach(OBJ blackoil solvent polymer foam gasoil oilwater thermal)
|
2019-06-13 07:59:31 -05:00
|
|
|
add_library(ebos_lib${OBJ} OBJECT EXCLUDE_FROM_ALL ebos/ebos_${OBJ}.cc)
|
|
|
|
target_include_directories(ebos_lib${OBJ} PRIVATE ${ecl_INCLUDE_DIRS})
|
2019-08-09 04:04:45 -05:00
|
|
|
list(APPEND MEBOS_TARGETS $<TARGET_OBJECTS:ebos_lib${OBJ}>)
|
2019-06-13 07:59:31 -05:00
|
|
|
endforeach()
|
|
|
|
|
2019-02-27 15:34:10 -06:00
|
|
|
opm_add_test(ebos
|
2019-03-04 08:38:07 -06:00
|
|
|
ONLY_COMPILE
|
2019-03-07 05:45:15 -06:00
|
|
|
DEFAULT_ENABLE_IF ${EBOS_DEFAULT_ENABLE_IF}
|
2019-03-04 08:38:07 -06:00
|
|
|
ALWAYS_ENABLE
|
2019-06-13 07:59:31 -05:00
|
|
|
EXE_NAME ebos
|
|
|
|
LIBRARIES opmsimulators
|
|
|
|
SOURCES ebos/ebos_main.cc $<TARGET_OBJECTS:ebos_libblackoil>)
|
2018-12-09 14:15:59 -06:00
|
|
|
|
2019-03-07 05:45:15 -06:00
|
|
|
if (BUILD_EBOS)
|
|
|
|
install(TARGETS ebos DESTINATION bin)
|
|
|
|
opm_add_bash_completion(ebos)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT BUILD_EBOS_EXTENSIONS)
|
|
|
|
set(EBOS_EXTENSIONS_DEFAULT_ENABLE_IF "FALSE")
|
|
|
|
else()
|
|
|
|
set(EBOS_EXTENSIONS_DEFAULT_ENABLE_IF "TRUE")
|
|
|
|
endif()
|
|
|
|
|
2019-08-09 04:04:45 -05:00
|
|
|
foreach(OBJ solvent polymer foam gasoil oilwater thermal)
|
2019-06-13 07:59:31 -05:00
|
|
|
opm_add_test(ebos_${OBJ}
|
|
|
|
ONLY_COMPILE
|
|
|
|
DEFAULT_ENABLE_IF ${EBOS_EXTENSIONS_DEFAULT_ENABLE_IF}
|
|
|
|
SOURCES ebos/ebos_${OBJ}_main.cc $<TARGET_OBJECTS:ebos_lib${OBJ}>
|
|
|
|
EXE_NAME ebos_${OBJ}
|
|
|
|
LIBRARIES opmsimulators)
|
|
|
|
endforeach()
|
add `mebos`, a multiplexed ebos variant
`mebos` works similarly as `flow`, but in contrast to `flow`, `mebos`
only creates the deck in the common code path whilst the
'EclipseState' and the other higher-level parser objects are always
created internally by the vanguard. this approach avoids code
duplication and the worst effects of parser API creep.
to avoid having to compile non-trivial compile units multiple times,
the actual code of the variants is moved into `ebos_$VARIANT.{hh,cc}`
files and the respective compile units are each put into a small
static library whilst the main function of said libraries are invoked
by either the multiplexed or the respective specialized simulator's
`main()`. This is also somewhat similar of how `flow` works, with the
difference that `mebos` uses the blackoil variant to determine the
parameters it needs to know for parsing the deck instead of
introducing a "fake" type tag for this. The rationale is to reduce
compile time compared to the "fake type tag" approach and -- to a
lesser extend -- avoid unnecessary copy-and-pasting of code. In
particular, this means that for the vast majority of cases, only one
place needs changed in the code for all `ebos` variants if, for
example, the parser API requires further objects in the future.
2019-06-11 03:22:11 -05:00
|
|
|
|
|
|
|
opm_add_test(mebos
|
|
|
|
ONLY_COMPILE
|
|
|
|
DEFAULT_ENABLE_IF ${EBOS_EXTENSIONS_DEFAULT_ENABLE_IF}
|
2019-06-13 07:59:31 -05:00
|
|
|
SOURCES ebos/mebos_main.cc
|
2019-08-09 04:04:45 -05:00
|
|
|
${MEBOS_TARGETS}
|
2019-06-13 07:59:31 -05:00
|
|
|
EXE_NAME mebos
|
|
|
|
LIBRARIES opmsimulators)
|
2019-03-05 04:41:02 -06:00
|
|
|
|
2019-03-11 10:50:47 -05:00
|
|
|
if (NOT BUILD_EBOS_DEBUG_EXTENSIONS)
|
|
|
|
set(EBOS_DEBUG_EXTENSIONS_DEFAULT_ENABLE_IF "FALSE")
|
|
|
|
else()
|
|
|
|
set(EBOS_DEBUG_EXTENSIONS_DEFAULT_ENABLE_IF "TRUE")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
opm_add_test(ebos_altidx
|
|
|
|
ONLY_COMPILE
|
|
|
|
DEFAULT_ENABLE_IF ${EBOS_DEBUG_EXTENSIONS_DEFAULT_ENABLE_IF}
|
|
|
|
SOURCES ebos/ebos_altidx.cc
|
|
|
|
EXE_NAME ebos_altidx
|
2019-06-13 07:59:31 -05:00
|
|
|
DEPENDS opmsimulators
|
|
|
|
LIBRARIES opmsimulators)
|
2019-03-11 10:50:47 -05:00
|
|
|
|
2019-06-03 04:11:41 -05:00
|
|
|
opm_add_test(ebos_plain
|
|
|
|
ONLY_COMPILE
|
|
|
|
DEFAULT_ENABLE_IF ${EBOS_DEBUG_EXTENSIONS_DEFAULT_ENABLE_IF}
|
|
|
|
SOURCES ebos/ebos_plain.cc
|
|
|
|
EXE_NAME ebos_plain
|
2019-06-13 07:59:31 -05:00
|
|
|
DEPENDS opmsimulators
|
|
|
|
LIBRARIES opmsimulators)
|
2019-03-07 05:45:15 -06:00
|
|
|
|
|
|
|
if (BUILD_EBOS_EXTENSIONS)
|
2019-08-09 04:04:45 -05:00
|
|
|
foreach(TGT ebos_solvent ebos_polymer ebos_foam ebos_gasoil ebos_oilwater ebos_thermal mebos)
|
2019-06-13 07:59:31 -05:00
|
|
|
install(TARGETS ${TGT} DESTINATION bin)
|
|
|
|
opm_add_bash_completion(${TGT})
|
|
|
|
endforeach()
|
2019-03-06 04:54:21 -06:00
|
|
|
endif()
|