A Python library for generating tensor train representations of finite element meshes
Project description
TTFEMesh
TTFEMesh is a Python library for generating tensor train representations of finite element meshes. It provides a comprehensive toolkit for creating domains, generating meshes, and computing tensorized Jacobians, Dirichlet masks, and concatenation maps, all of which are essential for solving partial differential equations using tensor train decompositions.
Features
- Domain creation and manipulation
- Finite element mesh generation
- Tensor train representation of mesh components
- Computation of tensorized Jacobians
- Dirichlet boundary condition handling
- Concatenation map generation
- Integration with the
torchttpackage for TT decompositions - Support for 2D domains and meshes
- Flexible and extensible architecture
Installation
Platform Support
TTFEMesh is currently only supported on Linux systems due to dependencies on the torchtt package. For other platforms (macOS, Windows), we recommend using Docker.
Linux Installation
- Install system dependencies:
sudo apt-get update
sudo apt-get install -y libblas-dev liblapack-dev
- Install the package:
pip install ttfemesh
Quick Start
Here's a simple example to get you started:
from ttfemesh.domain import RectangleFactory, CurveConnection2D, DirichletBoundary2D, Domain2D
from ttfemesh.quadrature import GaussLegendre2D
from ttfemesh.mesh import DomainBilinearMesh2D
# Create a domain with two rectangles
rectangle1 = RectangleFactory.create((0, 0), (2, 1))
rectangle2 = RectangleFactory.create((2, 0), (3, 1))
# Connect the rectangles
edge = CurveConnection2D([0, 1], [1, 3])
# Set boundary conditions
bc = DirichletBoundary2D([(0, 3), (1, 1)])
# Create the domain
domain = Domain2D([rectangle1, rectangle2], [edge], bc)
# Generate a mesh
order = 1
qrule = GaussLegendre2D(order)
mesh_size_exponent = 3
mesh = DomainBilinearMesh2D(domain, qrule, mesh_size_exponent)
# Get tensorized components
subdmesh = mesh.get_subdomain_mesh(0)
jac_tts = subdmesh.get_jacobian_tensor_trains()
jac_dets = subdmesh.get_jacobian_det_tensor_trains()
jac_invdets = subdmesh.get_jacobian_invdet_tensor_trains()
# Get element to global index map
element2global_map = mesh.get_element2global_index_map()
# Get Dirichlet masks and concatenation maps
masks = mesh.get_dirichlet_masks()
concat_maps = mesh.get_concatenation_maps()
Documentation
For detailed documentation, including API reference and examples, visit our documentation.
Requirements
- Python >= 3.10, < 3.13
- Linux operating system (or Docker)
- BLAS and LAPACK libraries (system dependencies)
- torchtt (for tensor train operations)
- Other dependencies listed in
requirements.txt
Contributing
We welcome contributions! Please read our Contributing Guide for details on our code of conduct and the process for submitting pull requests.
License
TTFEMesh is licensed under the MIT License - see the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ttfemesh-0.1.1.tar.gz.
File metadata
- Download URL: ttfemesh-0.1.1.tar.gz
- Upload date:
- Size: 32.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78f71e76e49bad87d0c507d59ec83cf45428bc54a60fc892e9a3c2518883cedb
|
|
| MD5 |
9d567d9249d10445beda8cb6bdfdb232
|
|
| BLAKE2b-256 |
e6d846f4a1099657ba9dd854e3bb492bbf0442430a121e1d34529b02aeab0d4e
|
File details
Details for the file ttfemesh-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ttfemesh-0.1.1-py3-none-any.whl
- Upload date:
- Size: 40.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fa1cd1167d7b9c77f31ce7b54057bfd43fa37b73878a623d1c4df7667f7efbd
|
|
| MD5 |
284700f788ea56ce3c2a67201e205fe0
|
|
| BLAKE2b-256 |
4881d0258acec5812d2dbb6833e32a9cc0e3c22a0d81545193d5762a36330483
|