PINNICLE (Physics-Informed Neural Networks for Ice and CLimatE) is an open-source Python library for modeling ice sheets using physics-informed neural networks. It is designed to integrate physical laws with observational data to solve both forward and inverse problems in glaciology. The library currently supports stress balance approximations, mass conservation, and time-dependent simulations, etc. Built on top of DeepXDE, it supports TensorFlow, PyTorch, and JAX backends.
Developed at the Department of Earth Sciences, Dartmouth College, USA.
- Solve forward and inverse glaciological problems
- Built-in support for:
- Shelfy-Stream Approximation (SSA)
- Mono-Layer Higher-Order (MOLHO) stress balance
- Mass conservation
- Support for multiple backends: TensorFlow, PyTorch, JAX
- Integration with observational data: ISSM data format, MATLAB general
.mat, HDF5, NetCDF. - Fourier Feature Transform for input and output
- Fully modular and customizable architecture
pip install pinniclegit clone https://github.com/ISSMteam/PINNICLE.git
cd PINNICLE
pip install -e .PINNICLE requires:
- Python ≥ 3.9
- DeepXDE
- NumPy, SciPy, pandas, matplotlib, scikit-learn
- mat73 (for MATLAB v7.3 files)
PINNICLE supports TensorFlow, PyTorch, and JAX backends via DeepXDE.
Choose your backend:
DDE_BACKEND=tensorflow python your_script.pyYou can also export the backend globally (Linux/macOS):
export DDE_BACKEND=pytorchAlternatively, edit ~/.deepxde/config.json:
{
"backend": "tensorflow"
}Example scripts and input files are located in the examples/ directory.
-
Example 1: Inverse problem on Helheim Glacier using SSA to infer basal friction
-
Example 2: Simultaneous Inference of Basal Friction and Ice Rheology for Pine Island Glacier, Antarctica
-
Example 3: Time-dependent forward modeling of Helheim Glacier (2008–2009)
Each example includes a complete Python script and configuration dictionary.
Full documentation is available in the docs/ folder or at:
If you use PINNICLE in your research, please cite:
BibTeX:
@Article{gmd-18-5311-2025,
AUTHOR = {Cheng, G. and Krishna, M. and Morlighem, M.},
TITLE = {A Python library for solving ice sheet modeling problems using physics-informed neural networks, PINNICLE v1.0},
JOURNAL = {Geoscientific Model Development},
VOLUME = {18},
YEAR = {2025},
NUMBER = {16},
PAGES = {5311--5327},
URL = {https://gmd.copernicus.org/articles/18/5311/2025/},
DOI = {10.5194/gmd-18-5311-2025}
}This project is licensed under the GNU Lesser General Public License v2.1.
Supported by:
- National Science Foundation [#2118285, #2147601]
- Novo Nordisk Foundation [NNF23OC00807040]
- Heising-Simons Foundation [2019-1161, 2021-3059]
- 📦 PyPI: pinnicle
- 📖 Documentation: pinnicle.readthedocs.io
- 📄 Zenodo Archive: doi.org/10.5281/zenodo.15643042
