-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from CURENT/develop
Prep for v0.9.11
- Loading branch information
Showing
77 changed files
with
2,823 additions
and
935 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[flake8] | ||
exclude = .git,__pycache__,build,dist,demos,cases,dev,ams/solver/pypower/,cards,versioneer.py,ams/_version.py,docs/source/conf.py,docs/source/_build,benchmarks,andes/pycode,scripts,.history,ams/pypower, | ||
exclude = .git,__pycache__,build,dist,demos,cases,dev,ams/solver/pypower/,cards,versioneer.py,ams/_version.py,docs/source/conf.py,docs/source/_build,benchmarks,andes/pycode,scripts,.history,ams/pypower,icebar/* | ||
max-line-length=115 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,4 @@ python: | |
- method: pip | ||
path: . | ||
extra_requirements: | ||
- doc | ||
- method: setuptools | ||
path: . | ||
- doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@article{andes_2021, | ||
author = {Cui, Hantao and Li, Fangxing and Tomsovic, Kevin}, | ||
journal = {IEEE Transactions on Power Systems}, | ||
title = {Hybrid Symbolic-Numeric Framework for Power System Modeling and Analysis}, | ||
year = {2021}, | ||
volume = {36}, | ||
number = {2}, | ||
pages = {1373-1384}, | ||
doi = {10.1109/TPWRS.2020.3017019} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,13 @@ | ||
from . import _version | ||
__version__ = _version.get_versions()['version'] | ||
|
||
from ams import io # NOQA | ||
from ams import utils # NOQA | ||
from ams import models # NOQA | ||
from ams import system # NOQA | ||
from ams import routines # NOQA | ||
from ams import opt # NOQA | ||
from ams import pypower # NOQA | ||
from ams import report # NOQA | ||
from ams import extension # NOQA | ||
from ams import benchmarks # NOQA | ||
|
||
from ams.main import config_logger, load, run # NOQA | ||
from ams.utils.paths import get_case # NOQA | ||
from ams.system import System # NOQA | ||
from ams.utils.paths import get_case, list_cases # NOQA | ||
from ams.shared import ppc2df # NOQA | ||
|
||
__author__ = 'Jining Wang' | ||
|
||
__all__ = ['io', 'utils', 'models', 'system', 'extension'] | ||
__all__ = ['System', 'get_case', 'System'] |
Oops, something went wrong.