diff --git a/docs/getting-started/workflow-1-existing-api-files.md b/docs/getting-started/workflow-1-existing-api-files.md index a3286f6..010ced0 100644 --- a/docs/getting-started/workflow-1-existing-api-files.md +++ b/docs/getting-started/workflow-1-existing-api-files.md @@ -25,17 +25,20 @@ This workflow involves three steps: graph TB A["Existing API Files
(JSON, PAN, OND, weather)"] B["run_energy_calculation()"] - C["ModelChainResponse"] - D["CalculationResults
(Time-series, losses, metrics)"] + C["SolarFarmer API"] + D["ModelChainResponse"] + E["CalculationResults
(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 ``` diff --git a/docs/getting-started/workflow-2-pvplant-builder.md b/docs/getting-started/workflow-2-pvplant-builder.md index beca60e..88fb353 100644 --- a/docs/getting-started/workflow-2-pvplant-builder.md +++ b/docs/getting-started/workflow-2-pvplant-builder.md @@ -29,17 +29,20 @@ This workflow involves four steps: graph TB A["Define PVSystem
(location, capacity, equipment)"] B["PVSystem Payload
(automatic payload construction)"] - C["run_energy_calculation()
(submit to API)"] - D["CalculationResults
(analyze performance)"] + C["run_energy_calculation()"] + D["SolarFarmer API"] + E["CalculationResults
(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 ```