From 6256b792e0cae78163c0f402cfb8cf532de76a21 Mon Sep 17 00:00:00 2001 From: Malik Date: Mon, 8 Dec 2025 12:02:01 -0700 Subject: [PATCH] switch all the names to NLR --- .github/workflows/ci.yml | 2 +- .../interfacialModels/dragModels/Grace/Grace.H | 2 +- .../dragModels/Grace_limited/Grace_limited.H | 2 +- README.md | 6 +++--- bird/version.py | 2 +- docs/source/acknowledgments.rst | 3 +-- docs/source/conf.py | 2 +- docs/source/quickstart.rst | 2 +- setup.py | 2 +- 9 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14f066c1..1e1b331c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,7 +120,7 @@ jobs: run: | micromamba install --yes -n test-env -c conda-forge paraview pip install --upgrade pip - pip install nrel-bird + pip install nlr-bird pip install pytest - name: Test diff --git a/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace/Grace.H b/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace/Grace.H index 9cfd61cc..cb3ad5c5 100644 --- a/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace/Grace.H +++ b/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace/Grace.H @@ -38,7 +38,7 @@ Description SourceFiles Grace.C - Added by M Rahimi and H Sitaraman, NREL + Added by M Rahimi and H Sitaraman, NLR \*---------------------------------------------------------------------------*/ diff --git a/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace_limited/Grace_limited.H b/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace_limited/Grace_limited.H index 9a8231f8..3f0c0cc5 100644 --- a/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace_limited/Grace_limited.H +++ b/OFsolvers/birdmultiphaseEulerFoam/interfacialModels/dragModels/Grace_limited/Grace_limited.H @@ -38,7 +38,7 @@ Description SourceFiles Grace_limited.C - Added by M Rahimi and H Sitaraman, NREL + Added by M Rahimi and H Sitaraman, NLR \*---------------------------------------------------------------------------*/ diff --git a/README.md b/README.md index 16603a5a..8c1a933e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Bio Reactor Design (BiRD) [![bird-CI](https://github.com/NREL/BioReactorDesign/actions/workflows/ci.yml/badge.svg)](https://github.com/NREL/BioReactorDesign/actions/workflows/ci.yml) [![bird-pyversion](https://img.shields.io/pypi/pyversions/NREL-bird.svg)](https://pypi.org/project/NREL-bird/) [![coverage](https://codecov.io/gh/NREL/BioReactorDesign/graph/badge.svg)](https://app.codecov.io/gh/nrel/bioreactordesign) [![bird-pypi](https://badge.fury.io/py/nrel-bird.svg)](https://badge.fury.io/py/nrel-bird) +# Bio Reactor Design (BiRD) [![bird-CI](https://github.com/NREL/BioReactorDesign/actions/workflows/ci.yml/badge.svg)](https://github.com/NREL/BioReactorDesign/actions/workflows/ci.yml) [![bird-pyversion](https://img.shields.io/pypi/pyversions/NLR-bird.svg)](https://pypi.org/project/NLR-bird/) [![coverage](https://codecov.io/gh/NREL/BioReactorDesign/graph/badge.svg)](https://app.codecov.io/gh/nrel/bioreactordesign) [![bird-pypi](https://badge.fury.io/py/nlr-bird.svg)](https://badge.fury.io/py/nlr-bird) ## Quick start 1. Follow the steps to install the python package (see `Installation of python package for developers` or `Installation of python package for users` below) @@ -25,7 +25,7 @@ pip install -e . ```bash conda create -c conda-forge --name bird python=3.10 paraview conda activate bird -pip install nrel-bird=={version} +pip install nlr-bird=={version} ``` We highly recommend that you specify the version explicitly as the library is still rapidly changing. @@ -82,7 +82,7 @@ To cite BiRD, please use these articles on [CO2 interphase mass transfer](https: ## Acknowledgments -This work was authored by the National Renewable Energy Laboratory (NREL), operated by Alliance for Sustainable Energy, LLC, for the U.S. Department of Energy (DOE) under Contract No. DE-AC36-08GO28308. This work was supported by funding from DOE Bioenergy Technologies Office (BETO) [CO2RUe consortium](https://www.energy.gov/eere/co2rue). The research was performed using computational resources sponsored by the Department of Energy's Office of Energy Efficiency and Renewable Energy and located at the National Renewable Energy Laboratory. The views expressed in the article do not necessarily represent the views of the DOE or the U.S. Government. The U.S. Government retains and the publisher, by accepting the article for publication, acknowledges that the U.S. Government retains a nonexclusive, paid-up, irrevocable, worldwide license to publish or reproduce the published form of this work, or allow others to do so, for U.S. Government purposes. +This work was authored in part by the National Laboratory of the Rockies (NLR) for the U.S. Department of Energy (DOE) under Contract No. DE-AC36-08GO28308. This work was supported by funding from DOE Bioenergy Technologies Office (BETO) [CO2RUe consortium](https://www.energy.gov/eere/co2rue). The research was performed using computational resources sponsored by the Department of Energy's Office of Critical Minerals and Energy Innovation (CMEI) and located at the National Laboratory of the Rockies. The views expressed in the article do not necessarily represent the views of the DOE or the U.S. Government. The U.S. Government retains and the publisher, by accepting the article for publication, acknowledges that the U.S. Government retains a nonexclusive, paid-up, irrevocable, worldwide license to publish or reproduce the published form of this work, or allow others to do so, for U.S. Government purposes. diff --git a/bird/version.py b/bird/version.py index 47726bba..9b518182 100644 --- a/bird/version.py +++ b/bird/version.py @@ -1,3 +1,3 @@ """Bio reactor design version""" -__version__ = "0.0.51" +__version__ = "0.0.52" diff --git a/docs/source/acknowledgments.rst b/docs/source/acknowledgments.rst index 3471709a..873cd336 100644 --- a/docs/source/acknowledgments.rst +++ b/docs/source/acknowledgments.rst @@ -1,6 +1,5 @@ Acknowledgments ===== -This work was authored by the National Renewable Energy Laboratory (NREL), operated by Alliance for Sustainable Energy, LLC, for the U.S. Department of Energy (DOE) under Contract No. DE-AC36-08GO28308. This work was supported by funding from DOE Bioenergy Technologies Office (BETO) `CO2RUe consortium `_. The research was performed using computational resources sponsored by the Department of Energy's Office of Energy Efficiency and Renewable Energy and located at the National Renewable Energy Laboratory. The views expressed in the article do not necessarily represent the views of the DOE or the U.S. Government. The U.S. Government retains and the publisher, by accepting the article for publication, acknowledges that the U.S. Government retains a nonexclusive, paid-up, irrevocable, worldwide license to publish or reproduce the published form of this work, or allow others to do so, for U.S. Government purposes. - +This work was authored in part by the National Laboratory of the Rockies (NLR) for the U.S. Department of Energy (DOE) under Contract No. DE-AC36-08GO28308. This work was supported by funding from DOE Bioenergy Technologies Office (BETO) `CO2RUe consortium `_. The research was performed using computational resources sponsored by the Department of Energy's Office of Critical Minerals and Energy Innovation (CMEI) and located at the National Laboratory of the Rockies. The views expressed in the article do not necessarily represent the views of the DOE or the U.S. Government. The U.S. Government retains and the publisher, by accepting the article for publication, acknowledges that the U.S. Government retains a nonexclusive, paid-up, irrevocable, worldwide license to publish or reproduce the published form of this work, or allow others to do so, for U.S. Government purposes. diff --git a/docs/source/conf.py b/docs/source/conf.py index 5e573503..c385b052 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ project = "Bio Reactor Design (BiRD)" copyright = "2024" -author = "NREL" +author = "NLR" release = version version = version diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst index bfddaecd..eb318ec8 100644 --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -26,7 +26,7 @@ Installation of python package for users conda create -c conda-forge --name bird python=3.10 paraview conda activate bird - pip install nrel-bird + pip install nlr-bird .. _installation_of: diff --git a/setup.py b/setup.py index 61812387..279ca034 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ version = version.split("=")[-1].strip().strip('"').strip("'") setup( - name="nrel-bird", + name="nlr-bird", version=version, description="Bio Reactor Design (BiRD): a toolbox to simulate and analyze different designs of bioreactors in OpenFOAM", long_description=readme,