Patched up some tutorials for CMake build
This commit is contained in:
parent
12b238368c
commit
21873a1cb7
72 changed files with 76 additions and 1552 deletions
|
@ -106,7 +106,12 @@ compileApplication ()
|
||||||
# simultaneously, and some of them depend on the compilation of a
|
# simultaneously, and some of them depend on the compilation of a
|
||||||
# common application.
|
# common application.
|
||||||
echo "Warning: Missing lockfile command. Your compilation may fail."
|
echo "Warning: Missing lockfile command. Your compilation may fail."
|
||||||
wmake $1
|
if [ "$WM_USE_CMAKE" = "1" ];
|
||||||
|
then
|
||||||
|
(cd $1; cmake .; make)
|
||||||
|
else
|
||||||
|
wmake $1
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
# We make sure to serialize the compilation in case we are called simultaneously
|
# We make sure to serialize the compilation in case we are called simultaneously
|
||||||
lockFilename="./compileApplication.lock"
|
lockFilename="./compileApplication.lock"
|
||||||
|
@ -116,15 +121,24 @@ compileApplication ()
|
||||||
|
|
||||||
# We wait for the lock release at most 10 x 10 seconds = 100 seconds
|
# We wait for the lock release at most 10 x 10 seconds = 100 seconds
|
||||||
lockfile -10 -r 10 $lockFilename
|
lockfile -10 -r 10 $lockFilename
|
||||||
wmake $1
|
if [ "$WM_USE_CMAKE" = "1" ];
|
||||||
|
then
|
||||||
|
(cd $1; cmake .; make)
|
||||||
|
else
|
||||||
|
wmake $1
|
||||||
|
fi
|
||||||
rm -rf $lockFilename
|
rm -rf $lockFilename
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
compileLibrary ()
|
compileLibrary ()
|
||||||
{
|
{
|
||||||
echo "Compiling $1 application"
|
echo "Compiling $1 library"
|
||||||
wmake libso $1
|
if [ "$WM_USE_CMAKE" = "1" ];
|
||||||
|
(cd $1; cmake .; make)
|
||||||
|
then
|
||||||
|
wmake libso $1
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
cloneCase ()
|
cloneCase ()
|
||||||
|
|
|
@ -82,11 +82,17 @@ function(add_foam_library lib)
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
function(add_foam_executable exe)
|
function(add_foam_executable exe)
|
||||||
set(options "")
|
set(options USERSPACE)
|
||||||
set(oneValueArgs "")
|
set(oneValueArgs "")
|
||||||
set(multiValueArgs DEPENDS SOURCES)
|
set(multiValueArgs DEPENDS SOURCES)
|
||||||
cmake_parse_arguments(AFE "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )
|
cmake_parse_arguments(AFE "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )
|
||||||
|
|
||||||
|
if(${AFE_USERSPACE})
|
||||||
|
message(STATUS Got here)
|
||||||
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY $ENV{FOAM_USER_LIBBIN})
|
||||||
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY $ENV{FOAM_USER_APPBIN})
|
||||||
|
endif()
|
||||||
|
|
||||||
add_executable(${exe} ${AFE_SOURCES})
|
add_executable(${exe} ${AFE_SOURCES})
|
||||||
target_link_libraries(${exe} ${AFE_DEPENDS})
|
target_link_libraries(${exe} ${AFE_DEPENDS})
|
||||||
install (TARGETS ${exe} DESTINATION bin)
|
install (TARGETS ${exe} DESTINATION bin)
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(solidMechanics)
|
|
||||||
add_subdirectory(multiphase)
|
|
||||||
add_subdirectory(immersedBoundary)
|
|
||||||
add_subdirectory(compressible)
|
|
||||||
add_subdirectory(incompressible)
|
|
||||||
add_subdirectory(lagrangian)
|
|
||||||
add_subdirectory(heatTransfer)
|
|
||||||
add_subdirectory(finiteArea)
|
|
||||||
add_subdirectory(basic)
|
|
|
@ -1,35 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(scalarTransportFoam)
|
|
||||||
add_subdirectory(potentialFoam)
|
|
||||||
add_subdirectory(PODSolver)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(setTcos)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(setTcos
|
add_foam_executable(setTcos
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(1DPODsin)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(cylinder)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(analyticalCylinder)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(analyticalCylinder
|
add_foam_executable(analyticalCylinder
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(swirlTest)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(setSwirl)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(setSwirl
|
add_foam_executable(setSwirl
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(rhoCentralFoam)
|
|
|
@ -34,7 +34,7 @@ do
|
||||||
if [ "$case" = "biconic25-55Run35" ] ; then
|
if [ "$case" = "biconic25-55Run35" ] ; then
|
||||||
cd $case
|
cd $case
|
||||||
|
|
||||||
wmake datToFoam
|
compileApplication datToFoam
|
||||||
runApplication datToFoam grid256.dat
|
runApplication datToFoam grid256.dat
|
||||||
|
|
||||||
CONST="constant"
|
CONST="constant"
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(biconic25-55Run35)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(datToFoam)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(datToFoam
|
add_foam_executable(datToFoam
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(surfactantFoam)
|
|
||||||
add_subdirectory(liquidFilmFoam)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(dropsSpreading)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(setInitialDroplet)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(setInitialDroplet
|
add_foam_executable(setInitialDroplet
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume finiteArea
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(sphereTransport)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(sphereSurfactantFoam)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(sphereSurfactantFoam
|
add_foam_executable(sphereSurfactantFoam
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume finiteArea
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
application="sphereSurfactantFoam"
|
application="sphereSurfactantFoam"
|
||||||
|
|
||||||
wmake ../$application
|
compileApplication ../$application
|
||||||
|
|
||||||
runApplication makeFaMesh
|
runApplication makeFaMesh
|
||||||
runApplication $application
|
runApplication $application
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(buoyantPisoFoam)
|
|
||||||
add_subdirectory(setHotRoom)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(hotRoom)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(setHotRoom)
|
|
|
@ -1,46 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
list(APPEND SOURCES
|
|
||||||
setHotRoom.C
|
|
||||||
)
|
|
||||||
|
|
||||||
# Set minimal environment for external compilation
|
|
||||||
if(NOT FOAM_FOUND)
|
|
||||||
cmake_minimum_required(VERSION 2.8)
|
|
||||||
find_package(FOAM REQUIRED)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_foam_executable(setHotRoom
|
|
||||||
# DEPENDS finiteVolume
|
|
||||||
SOURCES ${SOURCES}
|
|
||||||
)
|
|
|
@ -1,3 +0,0 @@
|
||||||
setHotRoom.C
|
|
||||||
|
|
||||||
EXE = $(FOAM_USER_APPBIN)/setHotRoom
|
|
|
@ -1,5 +0,0 @@
|
||||||
EXE_INC = \
|
|
||||||
-I$(LIB_SRC)/finiteVolume/lnInclude
|
|
||||||
|
|
||||||
EXE_LIBS = \
|
|
||||||
-lfiniteVolume
|
|
|
@ -1,13 +0,0 @@
|
||||||
Info<< "Reading field T\n" << endl;
|
|
||||||
volScalarField T
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"T",
|
|
||||||
runTime.timeName(),
|
|
||||||
mesh,
|
|
||||||
IOobject::MUST_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
mesh
|
|
||||||
);
|
|
|
@ -1,94 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration | Version: 4.0
|
|
||||||
\\ / 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.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Application
|
|
||||||
setHotRoom
|
|
||||||
|
|
||||||
Description
|
|
||||||
Set the initial field of T for the hot room problem.
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
#include "fvCFD.H"
|
|
||||||
#include "OSspecific.H"
|
|
||||||
#include "fixedValueFvPatchFields.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
|
||||||
{
|
|
||||||
|
|
||||||
# include "setRootCase.H"
|
|
||||||
|
|
||||||
# include "createTime.H"
|
|
||||||
# include "createMesh.H"
|
|
||||||
# include "createFields.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
volScalarField::GeometricBoundaryField& Tpatches = T.boundaryField();
|
|
||||||
|
|
||||||
forAll(Tpatches, patchI)
|
|
||||||
{
|
|
||||||
if
|
|
||||||
(
|
|
||||||
(typeid(Tpatches[patchI]) == typeid(fixedValueFvPatchScalarField))
|
|
||||||
&&
|
|
||||||
(mesh.boundaryMesh()[patchI].name() == "floor")
|
|
||||||
)
|
|
||||||
{
|
|
||||||
fixedValueFvPatchScalarField& Tpatch =
|
|
||||||
refCast<fixedValueFvPatchScalarField>(Tpatches[patchI]);
|
|
||||||
|
|
||||||
const vectorField& faceCentres =
|
|
||||||
mesh.Cf().boundaryField()[patchI];
|
|
||||||
|
|
||||||
forAll(faceCentres, facei)
|
|
||||||
{
|
|
||||||
if
|
|
||||||
(
|
|
||||||
(faceCentres[facei].x() > 4.5) &&
|
|
||||||
(faceCentres[facei].x() < 5.5) &&
|
|
||||||
(faceCentres[facei].z() > 4.5) &&
|
|
||||||
(faceCentres[facei].z() < 5.5)
|
|
||||||
)
|
|
||||||
{
|
|
||||||
Tpatch[facei] = 600;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Tpatch[facei] = 300;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Info<< "Writing modified field T\n" << endl;
|
|
||||||
T.write();
|
|
||||||
|
|
||||||
Info<< "End\n" << endl;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
// ************************************************************************* //
|
|
|
@ -51,7 +51,7 @@ solvers
|
||||||
tolerance 1e-05;
|
tolerance 1e-05;
|
||||||
relTol 0.1;
|
relTol 0.1;
|
||||||
}
|
}
|
||||||
G PCG
|
G
|
||||||
{
|
{
|
||||||
solver CG;
|
solver CG;
|
||||||
preconditioner Cholesky;
|
preconditioner Cholesky;
|
||||||
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(setHotRoom
|
add_foam_executable(setHotRoom
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(sphereInChannel)
|
|
||||||
add_subdirectory(thickPlateRefinedMesh)
|
|
|
@ -46,6 +46,7 @@ runTimeModifiable yes;
|
||||||
|
|
||||||
libs
|
libs
|
||||||
(
|
(
|
||||||
|
"liblduSolvers.so"
|
||||||
"libimmersedBoundary.so"
|
"libimmersedBoundary.so"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -59,6 +59,7 @@ maxCo 0.2;
|
||||||
|
|
||||||
libs
|
libs
|
||||||
(
|
(
|
||||||
|
"liblduSolvers.so"
|
||||||
"libimmersedBoundary.so"
|
"libimmersedBoundary.so"
|
||||||
"libimmersedBoundaryDynamicMesh.so"
|
"libimmersedBoundaryDynamicMesh.so"
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(refineSphereMesh)
|
|
|
@ -1,46 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
list(APPEND SOURCES
|
|
||||||
refineSphereMesh.C
|
|
||||||
)
|
|
||||||
|
|
||||||
# Set minimal environment for external compilation
|
|
||||||
if(NOT FOAM_FOUND)
|
|
||||||
cmake_minimum_required(VERSION 2.8)
|
|
||||||
find_package(FOAM REQUIRED)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_foam_executable(refineSphereMesh
|
|
||||||
# DEPENDS finiteVolume
|
|
||||||
SOURCES ${SOURCES}
|
|
||||||
)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(refineThickPlateMesh)
|
|
|
@ -1,46 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
list(APPEND SOURCES
|
|
||||||
refineThickPlateMesh.C
|
|
||||||
)
|
|
||||||
|
|
||||||
# Set minimal environment for external compilation
|
|
||||||
if(NOT FOAM_FOUND)
|
|
||||||
cmake_minimum_required(VERSION 2.8)
|
|
||||||
find_package(FOAM REQUIRED)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_foam_executable(refineThickPlateMesh
|
|
||||||
# DEPENDS finiteVolume
|
|
||||||
SOURCES ${SOURCES}
|
|
||||||
)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(icoDyMFoam)
|
|
|
@ -62,5 +62,10 @@ runTimeModifiable yes;
|
||||||
// Output format for graphs
|
// Output format for graphs
|
||||||
graphFormat raw;
|
graphFormat raw;
|
||||||
|
|
||||||
|
libs
|
||||||
|
(
|
||||||
|
"liblduSolvers.so"
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(movingBlockRBF)
|
|
||||||
add_subdirectory(movingConeMotion)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(RBFMotionFunction)
|
|
|
@ -34,6 +34,12 @@ list(APPEND SOURCES
|
||||||
RBFMotionFunctionObject.C
|
RBFMotionFunctionObject.C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Set minimal environment for external compilation
|
||||||
|
if(NOT FOAM_FOUND)
|
||||||
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
find_package(FOAM REQUIRED)
|
||||||
|
endif()
|
||||||
|
|
||||||
add_foam_library(RBFMotionFunction SHARED ${SOURCES})
|
add_foam_library(RBFMotionFunction SHARED ${SOURCES})
|
||||||
|
|
||||||
#target_link_libraries(RBFMotionFunction finiteVolume)
|
target_link_libraries(RBFMotionFunction PUBLIC RBFMotionSolver)
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(setMotionMovingCone)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(setMotionMovingCone
|
add_foam_executable(setMotionMovingCone
|
||||||
# DEPENDS finiteVolume
|
DEPENDS tetFiniteElement
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(rhoPisoTwinParcelFoam)
|
|
||||||
add_subdirectory(icoLagrangianFoam)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(icoLagrangianFoam)
|
|
|
@ -6,7 +6,7 @@
|
||||||
application=`getApplication`
|
application=`getApplication`
|
||||||
|
|
||||||
# make sure the application is compiled
|
# make sure the application is compiled
|
||||||
wmake ../$application
|
compileApplication ../$application
|
||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
runApplication $application
|
runApplication $application
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*--------------------------------*- C++ -*----------------------------------*\
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
| ========= | |
|
| ========= | |
|
||||||
| \\ / F ield | foam-extend: Open Source CFD |
|
| \\ / F ield | foam-extend: Open Source CFD |
|
||||||
| \\ / O peration | Version: 4.0 |
|
| \\ / O peration | Version: v4.0-931-730452a-dirty |
|
||||||
| \\ / A nd | Web: http://www.foam-extend.org |
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
||||||
| \\/ M anipulation | |
|
| \\/ M anipulation | |
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
|
@ -41,6 +41,8 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(icoLagrangianFoam
|
add_foam_executable(icoLagrangianFoam
|
||||||
# DEPENDS finiteVolume
|
DEPENDS lagrangianIntermediate
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(rhoPisoTwinParcelFoam)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(rhoPisoTwinParcelFoam
|
add_foam_executable(rhoPisoTwinParcelFoam
|
||||||
# DEPENDS finiteVolume
|
DEPENDS lagrangianIntermediate
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
application=`getApplication`
|
application=`getApplication`
|
||||||
|
|
||||||
# make sure the application is compiled
|
# make sure the application is compiled
|
||||||
wmake ../$application
|
compileApplication ../$application
|
||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
runApplication $application
|
runApplication $application
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(interDyMFoam)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(ras)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(sloshingTank3D6DoF)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(gen6DoF)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(gen6DoF
|
add_foam_executable(gen6DoF
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(elasticSolidFoam)
|
|
||||||
add_subdirectory(elasticThermalSolidFoam)
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(plateHole)
|
|
|
@ -8,5 +8,5 @@ application="elasticSolidFoam"
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
runApplication $application
|
runApplication $application
|
||||||
|
|
||||||
(cd analyticalPlateHole && runApplication wmake)
|
compileApplication analyticalPlateHole
|
||||||
runApplication analyticalPlateHole
|
runApplication analyticalPlateHole
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(analyticalPlateHole)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(analyticalPlateHole
|
add_foam_executable(analyticalPlateHole
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(hotCylinder)
|
|
|
@ -8,5 +8,5 @@ application="elasticThermalSolidFoam"
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
runApplication $application
|
runApplication $application
|
||||||
|
|
||||||
(cd analyticalHotCylinder && runApplication wmake)
|
compileApplication analyticalHotCylinder
|
||||||
runApplication analyticalHotCylinder
|
runApplication analyticalHotCylinder
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
# ======== |
|
|
||||||
# \ / 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.
|
|
||||||
#
|
|
||||||
# foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
# Description
|
|
||||||
# CMakeLists.txt file for libraries and applications
|
|
||||||
#
|
|
||||||
# Author
|
|
||||||
# Henrik Rusche, Wikki GmbH, 2017. All rights reserved
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
add_subdirectory(analyticalHotCylinder)
|
|
|
@ -41,6 +41,7 @@ if(NOT FOAM_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_foam_executable(analyticalHotCylinder
|
add_foam_executable(analyticalHotCylinder
|
||||||
# DEPENDS finiteVolume
|
DEPENDS finiteVolume
|
||||||
SOURCES ${SOURCES}
|
SOURCES ${SOURCES}
|
||||||
|
USERSPACE # Hack: User, Site support not implemented
|
||||||
)
|
)
|
||||||
|
|
Reference in a new issue