Skip to content

Commit

Permalink
deploy: 397553f
Browse files Browse the repository at this point in the history
  • Loading branch information
degleris1 committed Jan 27, 2025
0 parents commit 39a7c20
Show file tree
Hide file tree
Showing 42 changed files with 7,017 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 3af787d1d2c65c3178cea64fdf7ef74e
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added .doctrees/basic.doctree
Binary file not shown.
Binary file added .doctrees/environment.pickle
Binary file not shown.
Binary file added .doctrees/index.doctree
Binary file not shown.
653 changes: 653 additions & 0 deletions .doctrees/nbsphinx/basic.ipynb

Large diffs are not rendered by default.

Binary file added .doctrees/quickstart.doctree
Binary file not shown.
Empty file added .nojekyll
Empty file.
653 changes: 653 additions & 0 deletions _sources/basic.ipynb.txt

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions _sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.. zap documentation master file, created by
sphinx-quickstart on Mon Nov 25 13:42:49 2024.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
.. Add your content using ``reStructuredText`` syntax. See the
`reStructuredText <https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html>`_
documentation for details.
zap documentation
=================

**Zap** is a Python library for for differentiable electricity system modeling.
It provides a modular, component-based approach to building electricity models.
Models can be solved using a GPU-accelerated ADMM solver, integrated into PyTorch-based deep learning models, or iteratively planned using gradient algorithms.

.. note::

This project is under active development.


.. toctree::
:hidden:
:maxdepth: 1

Home<self>
Quick Start<quickstart>
Basic Usage<basic>
15 changes: 15 additions & 0 deletions _sources/quickstart.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Quickstart

## Installation

We recommend using `pip` to install directly from Github.

```zsh
python3 -m pip install "zap @ git+https://github.com/degleris1/zap.git" # No PyPSA
```

Alternatively, if you want to install zap with `pypsa` support, then run the following command (instead of the above).

```zsh
python3 -m pip install "zap[pypsa] @ git+https://github.com/degleris1/zap.git" # With PyPSA
```
Loading

0 comments on commit 39a7c20

Please sign in to comment.