Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
/zero_engine
opencode.Containerfile
compose.yaml

.venv
1 change: 1 addition & 0 deletions docs/assumptions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Model Assumptions
1 change: 1 addition & 0 deletions docs/dev/architecture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Architecture Overview
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ The duration of the simulation can be changed, but simulations longer than one y

Every LUX model consists of 4 packages.

* Engine: [Docs](engine/overview.md), [Github](https://github.com/Zenmo/zero_engine)
* Loader/Interface: [Docs](loader/overview.md), [Github](https://github.com/Zenmo/zero_Interface-Loader)
* ResultsUI: [Docs](resultsUI/overview.md), [Github](https://github.com/Zenmo/zero_results_UI)
* Engine: [Docs](dev/engine/overview.md), [Github](https://github.com/Zenmo/zero_engine)
* Loader/Interface: [Docs](dev/loader/overview.md), [Github](https://github.com/Zenmo/zero_Interface-Loader)
* ResultsUI: [Docs](dev/resultsUI/overview.md), [Github](https://github.com/Zenmo/zero_results_UI)
* Project: [Docs](?), [Github](https://github.com/Zenmo/LUX_ProjectTemplate)

The first three are public repositories that need not be altered for standard models. The fourth is a project specific package. These are not made public because of the sensitive data they contain. A template is made available that can be cloned and set up for your own projects.
1 change: 1 addition & 0 deletions docs/user/data/businesspark.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Businesspark Input Data Requirements
1 change: 1 addition & 0 deletions docs/user/data/neighborhood.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Neighborhood Input Data Requirements
1 change: 1 addition & 0 deletions docs/user/data/region.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Region Input Data Requirements
1 change: 1 addition & 0 deletions docs/user/limitations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Limitations & Known Issues
1 change: 1 addition & 0 deletions docs/user/project-types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Project Types
1 change: 1 addition & 0 deletions docs/user/results.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Interpreting Results
1 change: 1 addition & 0 deletions docs/user/tutorial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# UI Tutorial
73 changes: 43 additions & 30 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,48 @@
site_name: LUX Model Documentation
nav:
- Home: index.md
- Engine:
- Overview: engine/overview.md
- Grid Nodes: engine/grid_nodes.md
- Grid Connections: engine/grid_connections.md
- Energy Cooperatives: engine/energy_coops.md
- Energy Assets: engine/energy_assets.md
- Consistency Checks: engine/consistency_checks.md
- Energy Management Systems: engine/energy_management_systems.md
- Option Lists: engine/option_lists.md
- Energy Carriers: engine/energy_carriers.md
- Energy Model: engine/energy_model.md
- Energy Data: engine/energy_data.md
- Data Structures:
- Overview: engine/data_structures/data_structures.md
- Time Series: engine/data_structures/time_series.md
- Accumulators: engine/data_structures/accumulators.md
- Accumulator Maps: engine/data_structures/accumulator_maps.md
- Value Maps: engine/data_structures/value_maps.md
- Flows Maps: engine/data_structures/flows_maps.md
- DataSet Maps: engine/data_structures/dataset_maps.md
- Profile Pointers: engine/data_structures/profile_pointers.md
- Profile Forecasters: engine/data_structures/profile_forecasters.md
- Loader:
- Overview: loader/overview.md
- Lombok: loader/lombok/lombok.md
- Interface:
- Overview: interface/overview.md
- ResultsUI:
- Overview: resultsUI/overview.md
- Getting started: index.md
- Model assumptions: assumptions.md
- User guide:
- Project types: user/project-types.md
- UI tutorial: user/tutorial.md
- Input data requirements:
- Neighborhood: user/data/neighborhood.md
- Businesspark: user/data/businesspark.md
- Region: user/data/region.md
- Interpreting results: user/results.md
- Limitations & known issues: user/limitations.md

- Developer guide:
- Architecture overview: dev/architecture.md
- Engine:
- Overview: dev/engine/overview.md
- Grid Nodes: dev/engine/grid_nodes.md
- Grid Connections: dev/engine/grid_connections.md
- Energy Cooperatives: dev/engine/energy_coops.md
- Energy Assets: dev/engine/energy_assets.md
- Consistency Checks: dev/engine/consistency_checks.md
- Energy Management Systems: dev/engine/energy_management_systems.md
- Option Lists: dev/engine/option_lists.md
- Energy Carriers: dev/engine/energy_carriers.md
- Energy Model: dev/engine/energy_model.md
- Energy Data: dev/engine/energy_data.md
- Data Structures:
- Overview: dev/engine/data_structures/data_structures.md
- Time Series: dev/engine/data_structures/time_series.md
- Accumulators: dev/engine/data_structures/accumulators.md
- Accumulator Maps: dev/engine/data_structures/accumulator_maps.md
- Value Maps: dev/engine/data_structures/value_maps.md
- Flows Maps: dev/engine/data_structures/flows_maps.md
- DataSet Maps: dev/engine/data_structures/dataset_maps.md
- Profile Pointers: dev/engine/data_structures/profile_pointers.md
- Profile Forecasters: dev/engine/data_structures/profile_forecasters.md
- Loader:
- Overview: dev/loader/overview.md
- Lombok: dev/loader/lombok/lombok.md
- Interface:
- Overview: dev/interface/overview.md
- ResultsUI:
- Overview: dev/resultsUI/overview.md

theme: readthedocs
markdown_extensions:
Expand Down
Loading