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
11 changes: 7 additions & 4 deletions docs/getting-started/workflow-1-existing-api-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,20 @@ This workflow involves three steps:
graph TB
A["Existing API Files<br/>(JSON, PAN, OND, weather)"]
B["run_energy_calculation()"]
C["ModelChainResponse"]
D["CalculationResults<br/>(Time-series, losses, metrics)"]
C["SolarFarmer API"]
D["ModelChainResponse"]
E["CalculationResults<br/>(Time-series, losses, metrics)"]

A --> B
B --> C
C --> D
D --> E

style A fill:#e1f5ff
style B fill:#fff3e0
style C fill:#f3e5f5
style D fill:#e8f5e9
style C fill:#ffe0b2
style D fill:#f3e5f5
style E fill:#e8f5e9
```

</div>
Expand Down
9 changes: 6 additions & 3 deletions docs/getting-started/workflow-2-pvplant-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,20 @@ This workflow involves four steps:
graph TB
A["Define PVSystem<br/>(location, capacity, equipment)"]
B["PVSystem Payload<br/>(automatic payload construction)"]
C["run_energy_calculation()<br/>(submit to API)"]
D["CalculationResults<br/>(analyze performance)"]
C["run_energy_calculation()"]
D["SolarFarmer API"]
E["CalculationResults<br/>(analyze performance)"]

A --> B
B --> C
C --> D
D --> E

style A fill:#e1f5ff
style B fill:#fff3e0
style C fill:#f3e5f5
style D fill:#e8f5e9
style D fill:#ffe0b2
style E fill:#e8f5e9
```

</div>
Expand Down
Loading