Skip to content

Commit 1757ce1

Browse files
committed
preparing 1.3.0 release
1 parent eb88f2a commit 1757ce1

8 files changed

Lines changed: 32 additions & 28 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,31 @@ Targets
1010

1111
Unreleased
1212
----------
13-
* Load Q variables (done).
14-
* Support for variable generator curtailments (done).
15-
* User-friendly way to add batteries and variable generators (done).
16-
* Improved naming consistency in Python network class (done).
17-
* Support for all battery and load variables in ACPF and network properties (done).
18-
* Battery dynamics and boundary conditions (done).
19-
* Updated documentation and examples (done).
20-
* Full support for constraint auxiliary variables (lin eq, nonlin eq, line ineq) (done).
21-
* Elimination of obscure variables "voltage magnitude deviation" (done).
22-
* Elimination of obscure variabes "voltage magnitude violation", "tap ratio deviation", "susceptance deviation" (done).
23-
* Improved setup.py without argparse that relies on existing build_ext commands for custom builds (done).
24-
* Upper and lower bounds for constraint extra variables (done).
25-
* Three types of voltage magnitude limits (normal, regulation, emergency) (done).
26-
* Load power factor, target power factor, and constraint for constant power factor (done).
27-
* Removed Problem "set_network" method and required that Problem constructor takes network as argument for consistency with functions and constraints (done).
28-
* Added default arguments to routines "add_batteries" and "add_var_generators" (done).
29-
* Fixed indentation bug in problem.show() (done).
30-
* (Conservative) linearized AC thermal limits via external and optional "line_flow" library (done).
31-
* Changed key "raw parser" to "raw_parser" in "info" dictionary of pfnet python wrapper, and added "line_flow" (done).
32-
* Added constraint/function/network error checks in problem analyze and eval routines (done).
33-
* Added branch phase and ratio python setters (done).
13+
14+
Version 1.3.0
15+
-------------
16+
* Load Q variables.
17+
* Support for variable generator curtailments.
18+
* User-friendly way to add batteries and variable generators.
19+
* Improved naming consistency in Python network class.
20+
* Support for all battery and load variables in ACPF and network properties.
21+
* Battery dynamics and boundary conditions.
22+
* Updated documentation and examples.
23+
* Full support for constraint auxiliary variables (lin eq, nonlin eq, line ineq).
24+
* Elimination of obscure variables "voltage magnitude deviation".
25+
* Elimination of obscure variables "voltage magnitude violation", "tap ratio deviation", "susceptance deviation".
26+
* Improved setup.py without argparse that relies on existing build_ext commands for custom builds.
27+
* Upper and lower bounds for constraint extra variables.
28+
* Three types of voltage magnitude limits (normal, regulation, emergency).
29+
* Load power factor, target power factor, and constraint for constant power factor.
30+
* Removed Problem "set_network" method and required that Problem constructor takes network as argument for consistency with functions and constraints.
31+
* Added default arguments to routines "add_batteries" and "add_var_generators".
32+
* Fixed indentation bug in problem.show().
33+
* (Conservative) linearized AC thermal limits via external and optional "line_flow" library.
34+
* Changed key "raw parser" to "raw_parser" in "info" dictionary of pfnet python wrapper, and added "line_flow".
35+
* Added constraint/function/network error checks in problem analyze and eval routines.
36+
* Added branch phase and ratio python setters.
37+
* Fixed sign error with second derivative of current mag with respect to phase shift in AC_FLOW_LIM constraints.
3438

3539
Version 1.2.9
3640
-------------

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
#AC_PREREQ([2.69])
5-
AC_INIT([PFNET], [1.2.9], [ttinoco5687@gmail.com])
5+
AC_INIT([PFNET], [1.3.0], [ttinoco5687@gmail.com])
66
AM_INIT_AUTOMAKE([foreign])
77
AC_CONFIG_SRCDIR([src/net/net.c])
88
AC_CONFIG_HEADERS([include/pfnet/pfnet_config.h])

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "PFNET Source Code"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.2.9
41+
PROJECT_NUMBER = 1.3.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '1.2.9'
59+
version = '1.3.0'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '1.2.9'
61+
release = '1.3.0'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.
-446 KB
Binary file not shown.
446 KB
Binary file not shown.

python/docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = '1.2.9'
67+
version = '1.3.0'
6868
# The full version, including alpha/beta/rc tags.
69-
release = '1.2.9'
69+
release = '1.3.0'
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from distutils.core import setup, Extension
1212

1313
setup(name='PFNET',
14-
version='1.2.9',
14+
version='1.3.0',
1515
license='BSD 2-clause license',
1616
description='Power Flow Network Library',
1717
author='Tomas Tinoco De Rubira',

0 commit comments

Comments
 (0)