Skip to content
Snippets Groups Projects
Commit debb2bfa authored by Martin Bauer's avatar Martin Bauer
Browse files

Started Python export of mesh module

parent f46102c6
No related merge requests found
Pipeline #5168 failed with stage
in 1 hour, 6 minutes, and 1 second
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include "blockforest/python/Exports.h" #include "blockforest/python/Exports.h"
#include "field/GhostLayerField.h" #include "field/GhostLayerField.h"
#include "field/python/Exports.h" #include "field/python/Exports.h"
#include "mesh/python/Exports.h"
#include "geometry/python/Exports.h" #include "geometry/python/Exports.h"
#include "postprocessing/python/Exports.h" #include "postprocessing/python/Exports.h"
#include "python_coupling/Manager.h" #include "python_coupling/Manager.h"
...@@ -116,6 +117,12 @@ struct InitObject ...@@ -116,6 +117,12 @@ struct InitObject
// Timeloop // Timeloop
pythonManager->addExporterFunction( timeloop::exportModuleToPython ); pythonManager->addExporterFunction( timeloop::exportModuleToPython );
#ifdef WALBERLA_BUILD_WITH_OPENMESH
pythonManager->addExporterFunction( mesh::exportModuleToPython<FlagFieldTypes> );
#endif
#ifdef WALBERLA_BUILD_WITH_CUDA #ifdef WALBERLA_BUILD_WITH_CUDA
using walberla::cuda::GPUField; using walberla::cuda::GPUField;
typedef bmpl::vector<GPUField<double>, GPUField<float>, GPUField<int>, GPUField<uint8_t>, GPUField<uint16_t> > GPUFields; typedef bmpl::vector<GPUField<double>, GPUField<float>, GPUField<int>, GPUField<uint8_t>, GPUField<uint16_t> > GPUFields;
......
...@@ -62,4 +62,4 @@ if sys.argv[1] == 'build': ...@@ -62,4 +62,4 @@ if sys.argv[1] == 'build':
" - to install run 'make pythonModuleInstall'\n" " - to install run 'make pythonModuleInstall'\n"
" - for development usage: \n" " - for development usage: \n"
" bash: export PYTHONPATH=%s:$PYTHONPATH \n" " bash: export PYTHONPATH=%s:$PYTHONPATH \n"
" fish: set -x PYTHONPATH %s $PYTHONPATH \n" % ( walberla_binary_dir,walberla_binary_dir ) ) ' fish: set -x "PYTHONPATH %s:$PYTHONPATH \n"' % ( walberla_binary_dir,walberla_binary_dir ) )
\ No newline at end of file \ No newline at end of file
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
# #
################################################################################################### ###################################################################################################
waLBerla_add_module( DEPENDS blockforest boundary core domain_decomposition field geometry stencil vtk BUILD_ONLY_IF_FOUND OpenMesh ) waLBerla_add_module( DEPENDS blockforest boundary core domain_decomposition
python_coupling field geometry stencil vtk BUILD_ONLY_IF_FOUND OpenMesh )
################################################################################################### ###################################################################################################
...@@ -57,15 +57,6 @@ struct FloatTraits : public OpenMesh::DefaultTraits ...@@ -57,15 +57,6 @@ struct FloatTraits : public OpenMesh::DefaultTraits
typedef OpenMesh::TriMesh_ArrayKernelT<FloatTraits> FloatTriangleMesh; typedef OpenMesh::TriMesh_ArrayKernelT<FloatTraits> FloatTriangleMesh;
struct PythonTraits : public OpenMesh::DefaultTraits
{
typedef OpenMesh::Vec3d Point;
typedef OpenMesh::Vec3d Normal;
typedef OpenMesh::Vec4f Color;
};
typedef OpenMesh::TriMesh_ArrayKernelT<PythonTraits> PythonTriangleMesh;
template< typename MeshType > template< typename MeshType >
inline void getVertexHandles( const MeshType & mesh, const typename MeshType::FaceHandle fh, inline void getVertexHandles( const MeshType & mesh, const typename MeshType::FaceHandle fh,
typename MeshType::VertexHandle & vh0, typename MeshType::VertexHandle & vh1, typename MeshType::VertexHandle & vh2 ) typename MeshType::VertexHandle & vh0, typename MeshType::VertexHandle & vh1, typename MeshType::VertexHandle & vh2 )
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include "domain_decomposition/BlockDataID.h" #include "domain_decomposition/BlockDataID.h"
#include "field/GhostLayerField.h" #include "field/GhostLayerField.h"
#include "field/FlagField.h"
#include "stencil/D3Q27.h" #include "stencil/D3Q27.h"
...@@ -63,6 +64,10 @@ public: ...@@ -63,6 +64,10 @@ public:
template< typename BoundaryHandlingType, typename BoundaryFunction, typename Stencil = stencil::D3Q27 > template< typename BoundaryHandlingType, typename BoundaryFunction, typename Stencil = stencil::D3Q27 >
void setBoundaries( const BlockDataID boundaryHandlingID, const BoundaryFunction & boundaryFunction, Location boundaryLocation ); void setBoundaries( const BlockDataID boundaryHandlingID, const BoundaryFunction & boundaryFunction, Location boundaryLocation );
template<typename FlagField_T>
void setFlag( const ConstBlockDataID flagFieldID, field::FlagUID flagUID, Location boundaryLocation );
void writeVTKVoxelfile( const std::string & identifier = "voxelzation", bool writeGhostLayers = false, const std::string & baseFolder = std::string("vtk_out"), void writeVTKVoxelfile( const std::string & identifier = "voxelzation", bool writeGhostLayers = false, const std::string & baseFolder = std::string("vtk_out"),
const std::string & executionFolder = std::string("voxelization") ); const std::string & executionFolder = std::string("voxelization") );
...@@ -120,6 +125,33 @@ void BoundarySetup::setDomainCells( const BlockDataID boundaryHandlingId, const ...@@ -120,6 +125,33 @@ void BoundarySetup::setDomainCells( const BlockDataID boundaryHandlingId, const
} }
template<typename FlagField_T>
void BoundarySetup::setFlag( const ConstBlockDataID flagFieldID, field::FlagUID flagUID, Location boundaryLocation )
{
for( auto blockIt = structuredBlockStorage_->begin(); blockIt != structuredBlockStorage_->end(); ++blockIt )
{
FlagField_T * flagField = blockIt->getData< FlagField_T >( flagFieldID );
WALBERLA_CHECK_NOT_NULLPTR( flagField, "flagFieldID invalid!" );
auto flag = flagField->getFlag(flagUID);
const VoxelizationField * voxelizationField = blockIt->getData< VoxelizationField >( *voxelizationFieldId_ );
WALBERLA_ASSERT_NOT_NULLPTR( voxelizationField );
WALBERLA_CHECK_LESS_EQUAL( numGhostLayers_, flagField->nrOfGhostLayers(), "You want to use mesh boundary setup with " \
<< numGhostLayers_ << " but your flag field has only " << flagField->nrOfGhostLayers() << " ghost layers!" );
const uint8_t domainValue = boundaryLocation == INSIDE ? uint8_t(0) : uint8_t(1);
for( cell_idx_t z = -cell_idx_c( numGhostLayers_ ); z < cell_idx_c( voxelizationField->zSize() + numGhostLayers_ ); ++z )
for( cell_idx_t y = -cell_idx_c( numGhostLayers_ ); y < cell_idx_c( voxelizationField->ySize() + numGhostLayers_ ); ++y )
for( cell_idx_t x = -cell_idx_c( numGhostLayers_ ); x < cell_idx_c( voxelizationField->xSize() + numGhostLayers_ ); ++x )
{
if( voxelizationField->get( x, y, z ) != domainValue )
flagField->addFlag(x, y, z, flag);
}
}
}
template< typename BoundaryHandlingType, typename BoundaryFunction, typename Stencil > template< typename BoundaryHandlingType, typename BoundaryFunction, typename Stencil >
void BoundarySetup::setBoundaries( const BlockDataID boundaryHandlingID, const BoundaryFunction & boundaryFunction, Location boundaryLocation ) void BoundarySetup::setBoundaries( const BlockDataID boundaryHandlingID, const BoundaryFunction & boundaryFunction, Location boundaryLocation )
{ {
......
//======================================================================================================================
//
// This file is part of waLBerla. waLBerla 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.
//
// waLBerla 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 waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
//
//! \file Exports.h
//! \ingroup mesh
//! \author Martin Bauer <martin.bauer@fau.de>
//
//======================================================================================================================
#pragma once
#include "waLBerlaDefinitions.h"
#ifdef WALBERLA_BUILD_WITH_PYTHON
namespace walberla {
namespace mesh {
template<typename FlagFields>
void exportModuleToPython();
} // namespace mesh
} // namespace walberla
#include "Exports.impl.h"
#endif // WALBERLA_BUILD_WITH_PYTHON
//======================================================================================================================
//
// This file is part of waLBerla. waLBerla 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.
//
// waLBerla 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 waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
//
//! \file Exports.impl.h
//! \ingroup mesh
//! \author Martin Bauer <martin.bauer@fau.de>
//
//======================================================================================================================
// Do not reorder includes - the include order is important
#include "python_coupling/PythonWrapper.h"
#include "python_coupling/helper/ModuleScope.h"
#ifdef WALBERLA_BUILD_WITH_PYTHON
#ifdef WALBERLA_BUILD_WITH_OPENMESH
#include "python_coupling/Manager.h"
#include "python_coupling/helper/MplHelpers.h"
#include "python_coupling/helper/BlockStorageExportHelpers.h"
#include "python_coupling/helper/PythonIterableToStdVector.h"
#include "OpenMesh/Core/IO/MeshIO.hh"
#include "OpenMesh/Core/Mesh/TriMesh_ArrayKernelT.hh"
#include "mesh/MeshIO.h"
#include <boost/mpl/vector.hpp>
#include <boost/mpl/vector_c.hpp>
#include <boost/mpl/for_each.hpp>
namespace OpenMesh {
namespace Python {
struct MeshTraits : public OpenMesh::DefaultTraits {
/** Use double precision points */
typedef OpenMesh::Vec3d Point;
/** Use double precision normals */
typedef OpenMesh::Vec3d Normal;
/** Use RGBA colors */
typedef OpenMesh::Vec4f Color;
};
}
}
using namespace boost::python;
namespace walberla {
namespace mesh {
typedef OpenMesh::TriMesh_ArrayKernelT<OpenMesh::Python::MeshTraits> PythonMesh;
namespace internal
{
PythonMesh * exp_readAndBroadcast(const std::string & fileName)
{
auto mesh = make_shared< PythonMesh >();
mesh->request_vertex_colors();
mesh::readAndBroadcast( fileName, *mesh);
auto meshCopy = new PythonMesh(*mesh);
return meshCopy;
}
}
template<typename FlagFields>
void exportModuleToPython()
{
python_coupling::ModuleScope fieldModule( "mesh" );
def( "readAndBroadcast", &internal::exp_readAndBroadcast, (arg("fileName")),
return_value_policy<manage_new_object>());
}
} // namespace mesh
} // namespace walberla
#endif //WALBERLA_BUILD_WITH_PYTHON
#endif //WALBERLA_BUILD_WITH_OPENMESH
\ No newline at end of file
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License along // You should have received a copy of the GNU General Public License along
// with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>. // with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
// //
//! \file PythonExports.h //! \file Exports.h
//! \ingroup postprocessing //! \ingroup postprocessing
//! \author Martin Bauer <martin.bauer@fau.de> //! \author Martin Bauer <martin.bauer@fau.de>
// //
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License along // You should have received a copy of the GNU General Public License along
// with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>. // with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
// //
//! \file PythonExports.impl.h //! \file Exports.impl.h
//! \ingroup geometry //! \ingroup geometry
//! \author Martin Bauer <martin.bauer@fau.de> //! \author Martin Bauer <martin.bauer@fau.de>
// //
......
//======================================================================================================================
//
// This file is part of waLBerla. waLBerla 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.
//
// waLBerla 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 waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
//
//! \file SharedPtrDeleter.h
//! \ingroup python_export
//! \author Martin Bauer <martin.bauer@fau.de>
//
//======================================================================================================================
#pragma once
#include "python_coupling/PythonWrapper.h"
namespace walberla {
namespace python_coupling {
template<typename T>
class SharedPtrDeleterTiedToPythonObject
{
public:
SharedPtrDeleterTiedToPythonObject(PyObject * object) : object_(object) {}
void operator() (T * )
{
Py_DECREF(object_);
}
private:
PyObject * object_;
};
} // namespace python_coupling
} // namespace walberla
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment