Skip to main content
drawing

Tatva (तत्त्व) : Lego-like building blocks for differentiable FEM

tatva (is a Sanskrit word which means principle or elements of reality). True to its name, tatva provide fundamental Lego-like building blocks (elements) which can be used to construct complex finite element method (FEM) simulations. tatva is purely written in Python library for FEM simulations and is built on top of JAX ecosystem, making it easy to use FEM in a differentiable way.

Documentation Tests PyPI Ask DeepWiki

License

tatva is distributed under the GNU Lesser General Public License v3.0 or later. See COPYING and COPYING.LESSER for the complete terms. © 2025 ETH Zurich (SMEC).

Features

  • Energy-based formulation of FEM operators with automatic differentiation via JAX.
  • Capability to handle coupled-PDE systems with multi-field variables, KKT conditions, and constraints.
  • Element library covering line, surface, and volume primitives (Line2, Tri3, Quad4, Tet4, Hex8) with consistent JAX-compatible APIs.
  • Mesh and Operator abstractions that map, integrate, differentiate, and interpolate fields on arbitrary meshes.
  • Automatic handling of stacked multi-field variables through the tatva.compound utilities while preserving sparsity patterns.
  • MPI parallelism support.

Installation

Install the current release from PyPI:

pip install tatva

For development work, clone the repository and install it in editable mode (use your preferred virtual environment tool such as uv or venv):

git clone https://github.com/smec-ethz/tatva.git
cd tatva
pip install -e .

Documentation

Available at smec-ethz.github.io/tatva-docs. The documentation includes API references, tutorials, and examples to help you get started with tatva.

Usage

Create a mesh, pick an element type, and let Operator perform the heavy lifting with JAX arrays:

import jax.numpy as jnp
from tatva.element import Tri3
from tatva.mesh import Mesh
from tatva.operator import Operator

coords = jnp.array([[0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]])
elements = jnp.array([[0, 1, 2], [0, 2, 3]])

mesh = Mesh(coords, elements)

op = Operator(mesh, Tri3())
nodal_values = jnp.arange(coords.shape[0], dtype=jnp.float64)

# Integrate a nodal field over the mesh
total = op.integrate(nodal_values)

# Evaluate gradients at all quadrature points
gradients = op.grad(nodal_values)

Examples for various applications will be added very soon. They showcase patterns such as mapping custom kernels, working with compound fields, and sparse assembly helpers.

Dense vs Sparse vs Matrix-free

A unique aspect of tatva is that it can handle construct dense matrices, sparse matrices, and matrix-free operators. tatva uses matrix-coloring algorithm and sparse differentiation to construct a sparse matrix. We use our own coloring library tatva-coloring to color a matrix based on sparsity pattern, one can use other coloring libraries such as pysparsematrixcolorings for more advanced coloring algorithms. This significantly reduces the memory consumption. For large problems, we can also use matrix-free operators which do not require storing the matrix in memory. Since we have a energy functional, we can make use of jax.jvp ti compute the matrix-vector product without explicitly forming the matrix. This is particularly useful for large problems where storing the matrix is not feasible.

Paper

To know more about tatva and how it works please check: (arXiv link)

👉 How to contribute

We welcome your help to improve tatva. To prevent wasted effort, you must discuss your idea with the team before you write any code. Please read our full Contributing Guide for complete details.

Follow this exact workflow to contribute:

  1. Discuss First: Open an Issue to explain the problem and propose your numerical approach.
  2. Wait for Approval: Do not start coding until a maintainer approves your Issue.
  3. Fork the Project: Create a personal copy of the repository to test your ideas.
  4. Create a Branch: (git checkout -b feature/your-feature-name)
  5. Commit your Changes: (git commit -m 'Add your feature')
  6. Push to the Branch: (git push origin feature/your-feature-name)
  7. Open a Pull Request: Submit your PR and link it to the approved Issue.

Don't forget to give the project a star. Thank you!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tatva-0.11.4.tar.gz (449.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tatva-0.11.4-py3-none-any.whl (106.3 kB view details)

Uploaded Python 3

File details

Details for the file tatva-0.11.4.tar.gz.

File metadata

  • Download URL: tatva-0.11.4.tar.gz
  • Upload date:
  • Size: 449.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tatva-0.11.4.tar.gz
Algorithm Hash digest
SHA256 a20269cfc8ec5111a8f9bdd22a68c61f87e9bee6e45176adc8c085eaca549639
MD5 b69693b3314ce6b4e223889fa9868b69
BLAKE2b-256 2a96d0741b0a5cb5de9f15097635b54e2be031454ef6058e5e9c08b593c8aedd

See more details on using hashes here.

File details

Details for the file tatva-0.11.4-py3-none-any.whl.

File metadata

  • Download URL: tatva-0.11.4-py3-none-any.whl
  • Upload date:
  • Size: 106.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tatva-0.11.4-py3-none-any.whl
Algorithm Hash digest
SHA256 81ed2dfe4635bc7099980001405fafdbdb9349281dd4391f2972ed483bd300e0
MD5 449e518736a26ca46058458d9a08d597
BLAKE2b-256 c48696667dfff282fb06030126f5b9b1b0ef7dd2dae4506f6363f4f6235c1b19

See more details on using hashes here.

Release history Release notifications | RSS feed

0.11.5

2 files

This release

0.11.4 This release

2 files

0.11.3

2 files

0.11.2

2 files

0.11.1

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.1

2 files

0.9.0

2 files

0.8.1

2 files

0.8.0

2 files

0.7.1

2 files

0.7.0

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page