Skip to content

Commit 323e741

Browse files
authored
Branding: Update NLR branding (MHKiT-Software#431)
Update documentation to use National Laboratory of the Rockies per: https://www.energy.gov/eere/articles/energy-department-renames-nrel-national-lab-rockies At this point in time <https://nrel.gov> is still active and <https://nlr.gov> does not work, so we are keeping the nrel.gov links the same. Also the HSDS api endpoints: `/nrel/US_wave/virtual_buoy/{region}/{region}_virtual_buoy_{year}.h5` `/nrel/wtk/{region.lower()}/{region}_*.h5` `/nlr/wtk/{region.lower()}-5min/{region}_*.h5` In ``` mhkit/wave/io/hindcast/hindcast.py mhkit/wave/io/hindcast/wind_toolkit.py ``` Are not updated yet, but may change in the future.
1 parent fadc989 commit 323e741

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2019, Alliance for Sustainable Energy, LLC under the terms of Contract DE-AC36-08GO28308, Battelle Memorial Institute under the terms of Contract DE-AC05-76RL01830, and National Technology & Engineering Solutions of Sandia, LLC under the terms of Contract DE-NA0003525. The U.S. Government retains certain rights in this software.
3+
Copyright (c) 2019, Alliance for Energy Innovation, LLC under the terms of Contract DE-AC36-08GO28308, Battelle Memorial Institute under the terms of Contract DE-AC05-76RL01830, and National Technology & Engineering Solutions of Sandia, LLC under the terms of Contract DE-NA0003525. The U.S. Government retains certain rights in this software.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ See [installation instructions](https://mhkit-software.github.io/MHKiT/installat
8484

8585
## Copyright and license
8686

87-
MHKiT-Python is copyright through the National Renewable Energy Laboratory,
87+
MHKiT-Python is copyright through the National Laboratory of the Rockies,
8888
Pacific Northwest National Laboratory, and Sandia National Laboratories.
8989
The software is distributed under the Revised BSD License.
9090
See [copyright and license](LICENSE.md) for more information.

mhkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__version__ = "v1.0.1"
1515

1616
__copyright__ = """
17-
Copyright 2019, Alliance for Sustainable Energy, LLC under the terms of
17+
Copyright 2019, Alliance for Energy Innovation, LLC under the terms of
1818
Contract DE-AC36-08GO28308, Battelle Memorial Institute under the terms of
1919
Contract DE-AC05-76RL01830, and National Technology & Engineering Solutions of
2020
Sandia, LLC under the terms of Contract DE-NA0003525. The U.S. Government

mhkit/dolfyn/velocity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,10 +412,10 @@ def E_coh(
412412
"""
413413
Coherent turbulent energy
414414
415-
Niel Kelley's 'coherent turbulence energy', which is the
415+
Neil Kelley's 'coherent turbulence energy', which is the
416416
root-mean-square of the Reynold's stresses.
417417
418-
See: NREL Technical Report TP-500-52353
418+
See: NLR Technical Report TP-500-52353
419419
"""
420420
E_coh = (self.upwp_**2 + self.upvp_**2 + self.vpwp_**2) ** (0.5)
421421

0 commit comments

Comments
 (0)