Skip to content

Commit 9f92231

Browse files
authored
Merge pull request #143 from NREL/Move-to-hatch
minor edit
2 parents b9ba2ba + f2ec277 commit 9f92231

35 files changed

Lines changed: 118 additions & 182 deletions

.github/workflows/pull_request_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
python -m pip install '.[dev]'
23+
python -m pip install -e '.[dev]'
2424
- name: Run pytests
2525
run: |
2626
python -m pytest -v --disable-warnings

docs/source/Respository documentaion.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Python API interface
66
:toctree: _autosummary
77
:recursive:
88

9-
PyDSS
9+
pydss
1010

docs/source/_autosummary/PyDSS.api.src.app.pydss.rst

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,11 @@ pydss.api.src.app.pydss
33

44
.. automodule:: pydss.api.src.app.pydss
55

6-
7-
8-
9-
10-
11-
12-
13-
14-
15-
166
.. rubric:: Classes
177

188
.. autosummary::
199

20-
PyDSS
10+
pydss
2111

2212

2313

docs/source/_autosummary/PyDSS.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
PyDSS
1+
Pydss
22
=====
33

4-
.. automodule:: PyDSS
4+
.. automodule:: pydss
55

66

77

docs/source/co-simulation_support.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Co-simulation interfaces
22
=========================
33

4-
PyDSS provides two pathways for configuring pydss for a co-simulation with external simulators.
4+
Pydss provides two pathways for configuring pydss for a co-simulation with external simulators.
55
These interface help researchers cut lead time in setting up and configuring co-simulation setups to
66
simulate cyber phsical interactions by coupling multiple domain scepific tools. Each interface has
77
certain pros and cons detailed in the documentation pages.

docs/source/conf.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,8 @@
1616
import re
1717
# import sys
1818

19-
# my_path = os.path.abspath('../PyDSS')
20-
# print(f"{my_path=}")
21-
# sys.path.insert(0, os.path.abspath('../PyDSS'))
2219

2320
import sphinx_rtd_theme
24-
# import pydss
25-
# import pydss
26-
# import pydss.simulation_input_models
27-
#from pydss.simulation_input_models import SimulationSettingsModel, ProjectModel
2821

2922
# -- Project information -----------------------------------------------------
3023

docs/source/hdf-data-format.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
###############
22
HDF Data Format
33
###############
4-
This page describes the format pydss uses to export data in an HDF file. PyDSS
4+
This page describes the format pydss uses to export data in an HDF file. Pydss
55
contains code to convert the raw data to pandas.DataFrame objects or Python
66
dictionaries, so normal users should not need to write their own tools to
77
interpret the data.

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:align: center
88

99
#####
10-
PyDSS
10+
Pydss
1111
#####
1212

1313
***********

docs/source/interfaces.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Interfaces
22
=========================
33

4-
PyDSS provides three easy to configure external interfaces. These interface help researchers cut lead time in setting up and configuring co-simulation setups to simulate cyber phsical interactions by coupling multiple domain scpific tools. The 'External_interfacing_example' project in the examples folder provides examples on how to set up and use each of these interfaces.
4+
Pydss provides three easy to configure external interfaces. These interface help researchers cut lead time in setting up and configuring co-simulation setups to simulate cyber phsical interactions by coupling multiple domain scpific tools. The 'External_interfacing_example' project in the examples folder provides examples on how to set up and use each of these interfaces.
55

66
.. toctree::
77
:maxdepth: 3

docs/source/project_layout.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _pydss_project_layout:
22

33
********************
4-
PyDSS Project Layout
4+
Pydss Project Layout
55
********************
66
A pydss project is made up of one or more scenarios that run simulations on a shared OpenDSS
77
model. The purpose of scenarios is to allow users to customize inputs, outputs, or controls.

0 commit comments

Comments
 (0)