Skip to content

Commit 648de5b

Browse files
committedNov 27, 2023
More renaming updates
1 parent eceb7f2 commit 648de5b

File tree

6 files changed

+7
-18
lines changed

6 files changed

+7
-18
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# openfast_toolbox
22

3-
[![Build status](https://github.com/openfast/python-toolbox/workflows/Development%20Pipeline/badge.svg)](https://github.com/OpenFAST/python-toolbox/actions?query=workflow%3A%22Development+Pipeline%22)
3+
[![Build status](https://github.com/openfast/openfast_toolbox/workflows/Development%20Pipeline/badge.svg)](https://github.com/OpenFAST/openfast_toolbox/actions?query=workflow%3A%22Development+Pipeline%22)
44
[![Python: 3.6+](https://img.shields.io/badge/python-3.6%2B-informational)](https://www.python.org/)
55

66
Python package to work with NREL-supported [OpenFAST](https://github.com/OpenFAST/openfast) tool.
@@ -10,8 +10,8 @@ This repository intends to provide simple scripts to help OpenFAST users setup m
1010
## Installation and testing
1111

1212
```bash
13-
git clone http://github.com/OpenFAST/python-toolbox
14-
cd python-toolbox
13+
git clone http://github.com/OpenFAST/openfast_toolbox
14+
cd openfast_toolbox
1515
python -m pip install -e .
1616
pytest
1717
```

‎data/NREL5MW/5MW_Land_Lin_Rotating/postpro_MultiLinFiles_OneOP.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Script to postprocess linearization files from OpenFAST for one operating point.
33
44
Adapted from:
5-
https://github.com/OpenFAST/python-toolbox/blob/dev/openfast_toolbox/linearization/examples/ex2a_MultiLinFiles_OneOP.py
5+
https://github.com/OpenFAST/openfast_toolbox/blob/dev/openfast_toolbox/linearization/examples/ex2a_MultiLinFiles_OneOP.py
66
77
"""
88
import os

‎developper_notes.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ twine upload dist/* # upload to pypi
3131
### Step 1: go to your repo
3232
Go to folder
3333
```bash
34-
cd path/to/python-toolbox
34+
cd path/to/openfast_toolbox
3535
```
3636

3737
### Step 2: change version in setup.py and tag it
@@ -58,13 +58,6 @@ Run twine to upload to Pypi (will ask for username and password)
5858
twine upload dist/*
5959
```
6060

61-
### After clone / first time
62-
Add `.gitconfig` to your path, to apply filters on jupyter notebooks
63-
```bash
64-
git config --local include.path ../.gitconfig
65-
```
66-
67-
6861

6962
## Upload a new version to Conda
7063
TODO TODO TODO

‎openfast_toolbox/fastfarm/FASTFarmCaseCreation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ def _setRotorParameters(self):
11901190

11911191

11921192
def TS_low_setup(self, writeFiles=True, runOnce=False):
1193-
# Loops on all conditions/seeds creating Low-res TurbSim box (following python-toolbox/openfast_toolbox/fastfarm/examples/Ex1_TurbSimInputSetup.py)
1193+
# Loops on all conditions/seeds creating Low-res TurbSim box (following openfast_toolbox/openfast_toolbox/fastfarm/examples/Ex1_TurbSimInputSetup.py)
11941194

11951195
boxType='lowres'
11961196
for cond in range(self.nConditions):

‎openfast_toolbox/linearization/campbell_data.py

-4
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,6 @@ def IdentifyModes(CampbellData):
328328
329329
Original contribution by: Srinivasa B. Ramisett, ramisettisrinivas@yahoo.com, http://ramisetti.github.io
330330
"""
331-
#import pickle
332-
#pickle.dump(CampbellData, open('C:/Work/_libs/python-toolbox/data/_CampbellData_UA4_DB2.pkl','wb'))
333-
334-
335331
# --- Looking at states descriptions (of first run, first mode), to see if we are offshore.
336332
# NOTE: DescStates is likely the same for all modes
337333
DescStates = CampbellData[0]['Modes'][0]['DescStates']

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
description="openfast_toolbox",
2020
long_description=LONG_DESCRIPTION,
2121
version=VERSION,
22-
url="https://github.com/openfast/python-toolbox/",
22+
url="https://github.com/openfast/openfast_toolbox/",
2323
classifiers=[
2424
"Topic :: Utilities",
2525
"Topic :: Software Development :: Testing",

0 commit comments

Comments
 (0)
Please sign in to comment.