Skip to content

Commit 60ca735

Browse files
committed
update docs url
1 parent 20acbee commit 60ca735

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# REopt® Julia package
2-
REopt.jl is the core module of the [REopt® techno-economic decision support platform](https://www.nrel.gov/reopt/), developed by the National Renewable Energy Laboratory (NREL). REopt optimizes the sizing and dispatch of energy systems for buildings, campuses, communities, microgrids, and more. REopt identifies the cost-optimal mix of generation, storage, and heating and cooling technologies to meet cost savings, resilience, emissions reductions, and energy performance goals.
2+
REopt.jl is the core module of the [REopt® techno-economic decision support platform](https://www.nlr.gov/reopt/), developed by the National Laboratory of the Rockies (NLR). REopt optimizes the sizing and dispatch of energy systems for buildings, campuses, communities, microgrids, and more. REopt identifies the cost-optimal mix of generation, storage, and heating and cooling technologies to meet cost savings, resilience, emissions reductions, and energy performance goals.
33

4-
REopt.jl (this package) is used within the publicly-accessible and open-source [REopt API](https://github.com/NREL/REopt_API), and the publicly-available [REopt Web Tool](https://reopt.nrel.gov/tool) calls the REopt API.
4+
REopt.jl (this package) is used within the publicly-accessible and open-source [REopt API](https://github.com/NatLabRockies/REopt_API), and the publicly-available [REopt Web Tool](https://reopt.nlr.gov/tool) calls the REopt API.
55

66
For more information about REopt.jl please see the Julia documentation:
7-
<!-- [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://nrel.github.io/REopt.jl/stable) -->
8-
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://nrel.github.io/REopt.jl/dev)
7+
<!-- [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://natlabrockies.github.io/REopt.jl/stable) -->
8+
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://natlabrockies.github.io/REopt.jl/dev)
99

1010

1111
## Quick Start
@@ -20,4 +20,4 @@ results = run_reopt(m, "pv_storage.json")
2020
```
2121
See the `test/scenarios` directory for examples of `scenario.json`.
2222

23-
For more details, including installation instructions, see the [documentation](https://nrel.github.io/REopt.jl/dev).
23+
For more details, including installation instructions, see the [documentation](https://natlabrockies.github.io/REopt.jl/dev).

src/core/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,15 +652,15 @@ function check_api_key()
652652
if isempty(get(ENV, "NREL_DEVELOPER_API_KEY", ""))
653653
throw(@error("No NLR Developer API Key provided when trying to call PVWatts or Wind Toolkit.
654654
Within your Julia environment, specify ENV['NREL_DEVELOPER_API_KEY']='your API key'
655-
See https://nrel.github.io/REopt.jl/dev/ for more information."))
655+
See https://natlabrockies.github.io/REopt.jl/dev/ for more information."))
656656
end
657657
end
658658

659659
function check_api_email()
660660
if isempty(get(ENV, "NREL_DEVELOPER_EMAIL", ""))
661661
throw(@error("No NLR Developer API Email provided when trying to call PVWatts or Wind Toolkit.
662662
Within your Julia environment, specify ENV['NREL_DEVELOPER_EMAIL']='your contact email'
663-
See https://nrel.github.io/REopt.jl/dev/ for more information."))
663+
See https://natlabrockies.github.io/REopt.jl/dev/ for more information."))
664664
end
665665
end
666666

0 commit comments

Comments
 (0)