-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 39a7c20
Showing
42 changed files
with
7,017 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
Oops, something went wrong.