diff --git a/dumux/discretization/CMakeLists.txt b/dumux/discretization/CMakeLists.txt index bad8325aea8d720d58ec9ae23ac1e9183986eb55..5e45341da0989d89797cad3cf94026c2bc0bfb9e 100644 --- a/dumux/discretization/CMakeLists.txt +++ b/dumux/discretization/CMakeLists.txt @@ -14,6 +14,7 @@ fickslaw.hh fluxstencil.hh fluxvariablesbase.hh fluxvariablescaching.hh +forchheimerslaw.hh fourierslaw.hh fourierslawnonequilibrium.hh fvgridvariables.hh diff --git a/dumux/discretization/cellcentered/tpfa/CMakeLists.txt b/dumux/discretization/cellcentered/tpfa/CMakeLists.txt index 7ac7f783507d514c4c0f4380c64200b38bbb5b6b..1d3ca2c9f643672924a5626da15e2233b9451e52 100644 --- a/dumux/discretization/cellcentered/tpfa/CMakeLists.txt +++ b/dumux/discretization/cellcentered/tpfa/CMakeLists.txt @@ -5,6 +5,7 @@ elementfluxvariablescache.hh elementvolumevariables.hh fickslaw.hh fluxvariablescachefiller.hh +forchheimerslaw.hh fourierslaw.hh fvelementgeometry.hh fvgridgeometry.hh diff --git a/dumux/freeflow/compositional/CMakeLists.txt b/dumux/freeflow/compositional/CMakeLists.txt index cf75ae49ba45dcff458f81d542cc93919f817a56..ea538927369011877418a9a4d4a63b897c959cd2 100644 --- a/dumux/freeflow/compositional/CMakeLists.txt +++ b/dumux/freeflow/compositional/CMakeLists.txt @@ -2,7 +2,7 @@ add_subdirectory(staggered) install(FILES fluxvariables.hh -indices.hh +iofields.hh kepsilonncmodel.hh komegancmodel.hh localresidual.hh @@ -10,6 +10,5 @@ lowrekepsilonncmodel.hh navierstokesncmodel.hh oneeqncmodel.hh volumevariables.hh -iofields.hh zeroeqncmodel.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/compositional) diff --git a/dumux/freeflow/navierstokes/CMakeLists.txt b/dumux/freeflow/navierstokes/CMakeLists.txt index 8d5d0f4cfa1b2b13afa64fee3ca724c49c2f759e..cc9194fafb14e133cd4d8e2a6b1ae4e711925883 100644 --- a/dumux/freeflow/navierstokes/CMakeLists.txt +++ b/dumux/freeflow/navierstokes/CMakeLists.txt @@ -4,9 +4,9 @@ install(FILES fluxvariables.hh fluxvariablescache.hh indices.hh +iofields.hh localresidual.hh model.hh problem.hh volumevariables.hh -iofields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/navierstokes) diff --git a/dumux/freeflow/nonisothermal/CMakeLists.txt b/dumux/freeflow/nonisothermal/CMakeLists.txt index 5383f6d3976a7a6f4fd885993d624930a1d365a3..7c4f3b7577116fae069ad486bf4b4c9accf0aba7 100644 --- a/dumux/freeflow/nonisothermal/CMakeLists.txt +++ b/dumux/freeflow/nonisothermal/CMakeLists.txt @@ -1,6 +1,6 @@ install(FILES indices.hh +iofields.hh localresidual.hh model.hh -iofields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/nonisothermal) diff --git a/dumux/freeflow/rans/CMakeLists.txt b/dumux/freeflow/rans/CMakeLists.txt index 8f2c48e20d9000aa70b29f52875291a5c66f4b9e..903d8aba1666b58fc1f595dd61508e82bf6d1291 100644 --- a/dumux/freeflow/rans/CMakeLists.txt +++ b/dumux/freeflow/rans/CMakeLists.txt @@ -3,8 +3,8 @@ add_subdirectory(twoeq) add_subdirectory(zeroeq) install(FILES +iofields.hh model.hh problem.hh volumevariables.hh -iofields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/rans) diff --git a/dumux/freeflow/rans/oneeq/CMakeLists.txt b/dumux/freeflow/rans/oneeq/CMakeLists.txt index 1be711afb0eed401a148d18f418ad84e1f136bed..185360fc340355796d53ad85f811032e0579cf3e 100644 --- a/dumux/freeflow/rans/oneeq/CMakeLists.txt +++ b/dumux/freeflow/rans/oneeq/CMakeLists.txt @@ -3,9 +3,9 @@ add_subdirectory(staggered) install(FILES fluxvariables.hh indices.hh +iofields.hh localresidual.hh model.hh problem.hh volumevariables.hh -iofields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/rans/oneeq) diff --git a/dumux/freeflow/rans/twoeq/kepsilon/CMakeLists.txt b/dumux/freeflow/rans/twoeq/kepsilon/CMakeLists.txt index 2e0405c5a6824d63a46d9769950e1101428d1d93..94329f1c1199001dd0c4ed71ef0684434ecd61a1 100644 --- a/dumux/freeflow/rans/twoeq/kepsilon/CMakeLists.txt +++ b/dumux/freeflow/rans/twoeq/kepsilon/CMakeLists.txt @@ -3,9 +3,9 @@ add_subdirectory(staggered) install(FILES fluxvariables.hh indices.hh +iofields.hh localresidual.hh model.hh problem.hh volumevariables.hh -iofields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/rans/twoeq/kepsilon) diff --git a/dumux/freeflow/rans/twoeq/komega/CMakeLists.txt b/dumux/freeflow/rans/twoeq/komega/CMakeLists.txt index 4463faa9f1d4fa03d66d123b2fb085abd6a90fe7..c8151c2eb3c99640eeb039d7478b4d5cb1f44aa0 100644 --- a/dumux/freeflow/rans/twoeq/komega/CMakeLists.txt +++ b/dumux/freeflow/rans/twoeq/komega/CMakeLists.txt @@ -3,9 +3,9 @@ add_subdirectory(staggered) install(FILES fluxvariables.hh indices.hh +iofields.hh localresidual.hh model.hh problem.hh volumevariables.hh -iofields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/rans/twoeq/komega) diff --git a/dumux/freeflow/rans/twoeq/lowrekepsilon/CMakeLists.txt b/dumux/freeflow/rans/twoeq/lowrekepsilon/CMakeLists.txt index 4103b27301ff79c6e302a467341ac2d4cade5686..e35f07504c517089f083137f5529ce8af4851f0c 100644 --- a/dumux/freeflow/rans/twoeq/lowrekepsilon/CMakeLists.txt +++ b/dumux/freeflow/rans/twoeq/lowrekepsilon/CMakeLists.txt @@ -3,9 +3,9 @@ add_subdirectory(staggered) install(FILES fluxvariables.hh indices.hh +iofields.hh localresidual.hh model.hh problem.hh volumevariables.hh -iofields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/freeflow/rans/twoeq/lowrekepsilon) diff --git a/dumux/geomechanics/poroelastic/CMakeLists.txt b/dumux/geomechanics/poroelastic/CMakeLists.txt index d1ddba20946793d4096828db105ffd8d7a91c2df..d0fa76d956acd2e7ce1c4c69fe5075f6028b2641 100644 --- a/dumux/geomechanics/poroelastic/CMakeLists.txt +++ b/dumux/geomechanics/poroelastic/CMakeLists.txt @@ -1,7 +1,7 @@ install(FILES couplingmanager.hh +iofields.hh localresidual.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/geomechanics/poroelastic) diff --git a/dumux/io/CMakeLists.txt b/dumux/io/CMakeLists.txt index 334ce60e140c265078f57246ce92bb3e88b62f28..f75a839dbb0867a45da78ea0f1e66985dbffc517 100644 --- a/dumux/io/CMakeLists.txt +++ b/dumux/io/CMakeLists.txt @@ -6,9 +6,9 @@ install(FILES adaptivegridrestart.hh container.hh defaultiofields.hh -fieldnames.hh gnuplotinterface.hh loadsolution.hh +name.hh ploteffectivediffusivitymodel.hh plotmateriallaw.hh plotmateriallaw3p.hh @@ -16,6 +16,7 @@ plotthermalconductivitymodel.hh pointcloudvtkwriter.hh restart.hh staggeredvtkoutputmodule.hh +velocityoutput.hh vtkfunction.hh vtkmultiwriter.hh vtknestedfunction.hh diff --git a/dumux/io/grid/CMakeLists.txt b/dumux/io/grid/CMakeLists.txt index 304ac5b43628f4fa3d4f07965ee915a436f73863..8270db67f2752000daa553c50349080d4351b1fd 100644 --- a/dumux/io/grid/CMakeLists.txt +++ b/dumux/io/grid/CMakeLists.txt @@ -1,8 +1,10 @@ install(FILES cakegridcreator.hh cpgridmanager.hh +dgfgridreader.hh gmshgriddatahandle.hh griddata.hh gridmanager.hh +gridreader.hh subgridgridcreator.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/io/grid) diff --git a/dumux/material/components/CMakeLists.txt b/dumux/material/components/CMakeLists.txt index a7b3d633459bc2ce2f4102dd39c015065f2c72b8..4a9095cfa1a7eee1c0bb0c0698d980405b54b150 100644 --- a/dumux/material/components/CMakeLists.txt +++ b/dumux/material/components/CMakeLists.txt @@ -21,6 +21,7 @@ granite.hh h2.hh h2o.hh heavyoil.hh +ion.hh liquid.hh mesitylene.hh n2.hh diff --git a/dumux/material/fluidstates/CMakeLists.txt b/dumux/material/fluidstates/CMakeLists.txt index 90037d2ba3ba7b879278a29495521ac41f7a05c5..a676bd41187e2df24e95c2b184b24e0cdf74695d 100644 --- a/dumux/material/fluidstates/CMakeLists.txt +++ b/dumux/material/fluidstates/CMakeLists.txt @@ -1,5 +1,6 @@ install(FILES 2p2c.hh +adapter.hh compositional.hh immiscible.hh isothermalimmiscible.hh diff --git a/dumux/material/fluidsystems/CMakeLists.txt b/dumux/material/fluidsystems/CMakeLists.txt index 589e0bb25893a179b58f1458ea75ac5748176731..cbba9c937798fa8d9496ed286200f309e8545d5c 100644 --- a/dumux/material/fluidsystems/CMakeLists.txt +++ b/dumux/material/fluidsystems/CMakeLists.txt @@ -6,6 +6,7 @@ install(FILES 2pimmiscible.hh 3pimmiscible.hh base.hh +brine.hh brineair.hh brineco2.hh h2oair.hh diff --git a/dumux/multidomain/CMakeLists.txt b/dumux/multidomain/CMakeLists.txt index c983c6a65566e81c51d0770d7f099b4a2a4d4845..28588a83ff2513e73cf3869f4abb65ba5e3159d5 100644 --- a/dumux/multidomain/CMakeLists.txt +++ b/dumux/multidomain/CMakeLists.txt @@ -7,6 +7,7 @@ couplingjacobianpattern.hh couplingmanager.hh fvassembler.hh newtonsolver.hh +privarswitchnewtonsolver.hh staggeredcouplingmanager.hh staggeredtraits.hh subdomainboxlocalassembler.hh diff --git a/dumux/multidomain/boundary/stokesdarcy/CMakeLists.txt b/dumux/multidomain/boundary/stokesdarcy/CMakeLists.txt index a894c443aff4421a045f5a093f6404cfe0918941..e394ed1a0d523d88c70a587d05ba8a1ba0a88d27 100644 --- a/dumux/multidomain/boundary/stokesdarcy/CMakeLists.txt +++ b/dumux/multidomain/boundary/stokesdarcy/CMakeLists.txt @@ -1,6 +1,5 @@ -#install headers install(FILES couplingdata.hh -couplingmapper.hh couplingmanager.hh +couplingmapper.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/multidomain/boundary/stokesdarcy) diff --git a/dumux/porousmediumflow/1p/CMakeLists.txt b/dumux/porousmediumflow/1p/CMakeLists.txt index edc499247242ec552b8183a8aedaa8a9262f39e1..9feafc42b617987f700b43fa3084a27c026f2378 100644 --- a/dumux/porousmediumflow/1p/CMakeLists.txt +++ b/dumux/porousmediumflow/1p/CMakeLists.txt @@ -3,7 +3,7 @@ add_subdirectory(sequential) install(FILES incompressiblelocalresidual.hh indices.hh +iofields.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/1p) diff --git a/dumux/porousmediumflow/1pnc/CMakeLists.txt b/dumux/porousmediumflow/1pnc/CMakeLists.txt index f9c3797f29f344be3e0f1f4b145437479276e0b5..eaa21fdcbffe2387f5d4a881a429048bf94a2d2e 100644 --- a/dumux/porousmediumflow/1pnc/CMakeLists.txt +++ b/dumux/porousmediumflow/1pnc/CMakeLists.txt @@ -1,6 +1,6 @@ install(FILES indices.hh +iofields.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/1pnc) diff --git a/dumux/porousmediumflow/2p/CMakeLists.txt b/dumux/porousmediumflow/2p/CMakeLists.txt index 6811a958791d909d06dc6d1b9aab3305f7f213a3..5497ae6e4ce11efe7f922c1305264005299823e9 100644 --- a/dumux/porousmediumflow/2p/CMakeLists.txt +++ b/dumux/porousmediumflow/2p/CMakeLists.txt @@ -7,8 +7,8 @@ gridadaptindicator.hh griddatatransfer.hh incompressiblelocalresidual.hh indices.hh +iofields.hh model.hh saturationreconstruction.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/2p) diff --git a/dumux/porousmediumflow/2p1c/CMakeLists.txt b/dumux/porousmediumflow/2p1c/CMakeLists.txt index baeae729c0c5926792250d20cbba7f157d0f4d6f..ccae7bdedb25ef3437dcff05bebc6534b9efd9e3 100644 --- a/dumux/porousmediumflow/2p1c/CMakeLists.txt +++ b/dumux/porousmediumflow/2p1c/CMakeLists.txt @@ -1,9 +1,9 @@ install(FILES darcyslaw.hh indices.hh +iofields.hh localresidual.hh model.hh primaryvariableswitch.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/2p1c) diff --git a/dumux/porousmediumflow/2pnc/CMakeLists.txt b/dumux/porousmediumflow/2pnc/CMakeLists.txt index d27c8948f5862e245eab23b21b3f4d6820ffcfa2..67e36948103202f5edc4255fee1af122b175764f 100644 --- a/dumux/porousmediumflow/2pnc/CMakeLists.txt +++ b/dumux/porousmediumflow/2pnc/CMakeLists.txt @@ -1,7 +1,7 @@ install(FILES indices.hh +iofields.hh model.hh primaryvariableswitch.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/2pnc) diff --git a/dumux/porousmediumflow/3p/CMakeLists.txt b/dumux/porousmediumflow/3p/CMakeLists.txt index 60147e4f5f17e942d70e870045411fb729db9c46..83105dc55635a8c6b4287e20b867b7b6f79ff296 100644 --- a/dumux/porousmediumflow/3p/CMakeLists.txt +++ b/dumux/porousmediumflow/3p/CMakeLists.txt @@ -1,6 +1,6 @@ install(FILES indices.hh +iofields.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/3p) diff --git a/dumux/porousmediumflow/3p3c/CMakeLists.txt b/dumux/porousmediumflow/3p3c/CMakeLists.txt index 5d933338f5ebae3aa5e71be1b5eefa974460f7e2..619b9b12563f33541d5b3fd0eea0d8249bc2a65f 100644 --- a/dumux/porousmediumflow/3p3c/CMakeLists.txt +++ b/dumux/porousmediumflow/3p3c/CMakeLists.txt @@ -1,8 +1,8 @@ install(FILES indices.hh +iofields.hh localresidual.hh model.hh primaryvariableswitch.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/3p3c) diff --git a/dumux/porousmediumflow/3pwateroil/CMakeLists.txt b/dumux/porousmediumflow/3pwateroil/CMakeLists.txt index 99c502d405d2ca33662541976b0dcdcdc40f2bef..978dcc77935d4bb533229f6a329e85f716edfec7 100644 --- a/dumux/porousmediumflow/3pwateroil/CMakeLists.txt +++ b/dumux/porousmediumflow/3pwateroil/CMakeLists.txt @@ -1,8 +1,8 @@ install(FILES indices.hh +iofields.hh localresidual.hh model.hh primaryvariableswitch.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/3pwateroil) diff --git a/dumux/porousmediumflow/mineralization/CMakeLists.txt b/dumux/porousmediumflow/mineralization/CMakeLists.txt index aa490332328de6c9afeebd821986c46eff7df476..81deb3367656da618d32bc772c8cc410fbc1bb62 100644 --- a/dumux/porousmediumflow/mineralization/CMakeLists.txt +++ b/dumux/porousmediumflow/mineralization/CMakeLists.txt @@ -1,6 +1,6 @@ install(FILES +iofields.hh localresidual.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/mineralization) diff --git a/dumux/porousmediumflow/mpnc/CMakeLists.txt b/dumux/porousmediumflow/mpnc/CMakeLists.txt index 5d5339c2d9a7eceb73dd14f28f263e0cb97eb282..9b1f704935b57978f7cd8c13a4a332fb9d430bdf 100644 --- a/dumux/porousmediumflow/mpnc/CMakeLists.txt +++ b/dumux/porousmediumflow/mpnc/CMakeLists.txt @@ -1,8 +1,8 @@ install(FILES indices.hh +iofields.hh localresidual.hh model.hh pressureformulation.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/mpnc) diff --git a/dumux/porousmediumflow/nonequilibrium/CMakeLists.txt b/dumux/porousmediumflow/nonequilibrium/CMakeLists.txt index 8f7cd1ff2e10bf7aa1a4ccdbb0f0c8646f4c486f..a6d7048296d774b213ca86823f6cc9f39324e52f 100644 --- a/dumux/porousmediumflow/nonequilibrium/CMakeLists.txt +++ b/dumux/porousmediumflow/nonequilibrium/CMakeLists.txt @@ -3,9 +3,9 @@ add_subdirectory(thermal) install(FILES gridvariables.hh indices.hh +iofields.hh localresidual.hh model.hh newtonsolver.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/nonequilibrium) diff --git a/dumux/porousmediumflow/nonisothermal/CMakeLists.txt b/dumux/porousmediumflow/nonisothermal/CMakeLists.txt index 32f9d315750050a91f385e85bf07e0036d837972..24dc71bd458be782c29a4934952dbb8da06dcd4d 100644 --- a/dumux/porousmediumflow/nonisothermal/CMakeLists.txt +++ b/dumux/porousmediumflow/nonisothermal/CMakeLists.txt @@ -1,7 +1,7 @@ install(FILES indices.hh +iofields.hh localresidual.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/nonisothermal) diff --git a/dumux/porousmediumflow/richards/CMakeLists.txt b/dumux/porousmediumflow/richards/CMakeLists.txt index 6d50a09b65cbc1eba4034be5d0cbaaf5816f6b43..1118c303d133c6316332ed8e359b45af1e556183 100644 --- a/dumux/porousmediumflow/richards/CMakeLists.txt +++ b/dumux/porousmediumflow/richards/CMakeLists.txt @@ -1,10 +1,10 @@ install(FILES indices.hh +iofields.hh localresidual.hh model.hh newtonsolver.hh primaryvariableswitch.hh privarswitchnewtonsolver.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/richards) diff --git a/dumux/porousmediumflow/richardsnc/CMakeLists.txt b/dumux/porousmediumflow/richardsnc/CMakeLists.txt index a8445ddb450e0b6338722506bb6da4fd0120abde..5a1f727425907790dd7ec9d7036e05d149eb336c 100644 --- a/dumux/porousmediumflow/richardsnc/CMakeLists.txt +++ b/dumux/porousmediumflow/richardsnc/CMakeLists.txt @@ -1,6 +1,6 @@ install(FILES indices.hh +iofields.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/richardsnc) diff --git a/dumux/porousmediumflow/tracer/CMakeLists.txt b/dumux/porousmediumflow/tracer/CMakeLists.txt index 0f17f09b77bae98d356040a38bbf420d7f373d45..1514ba5e2a170506f4da7902cce9eec2e7f956c7 100644 --- a/dumux/porousmediumflow/tracer/CMakeLists.txt +++ b/dumux/porousmediumflow/tracer/CMakeLists.txt @@ -1,7 +1,7 @@ install(FILES indices.hh +iofields.hh localresidual.hh model.hh volumevariables.hh -vtkoutputfields.hh DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/tracer)