Skip to content

Commit

Permalink
Tweak docs for 0.10.7, use DSS C-API 0.10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
PMeira committed Dec 29, 2020
1 parent 6e42d58 commit c788534
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ matrix:
sudo: required
env:
- DOCKER_IMAGE=pmeira/manylinux_wheel_cmake_fpc320
- DSS_CAPI_TAG=0.10.7rc4
- DSS_CAPI_TAG=0.10.7
- LINUX_X64=1
- CONDA_SUBDIR=linux-64
services:
Expand All @@ -32,7 +32,7 @@ matrix:
sudo: required
env:
- DOCKER_IMAGE=pmeira/manylinux_wheel_cmake_fpc320_i686
- DSS_CAPI_TAG=0.10.7rc4
- DSS_CAPI_TAG=0.10.7
- CONDA_SUBDIR=linux-32
services:
- docker
Expand All @@ -52,7 +52,7 @@ matrix:
- name: "osx_x64"
os: osx
env:
- DSS_CAPI_TAG=0.10.7rc4
- DSS_CAPI_TAG=0.10.7
script:
- export TRAVIS_TAG_DSS_PYTHON=$TRAVIS_TAG
- export TRAVIS_TAG=
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ Check the [changelog](docs/changelog.md#0107) document for a detailed list for a

- Simple maintenance release.
- Updated to DSS C-API 0.10.7, which includes most changes up to OpenDSS v9.1.3.4.
- Includes tweaks related to the `CapRadius` property.
- New properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, and `CktElement.TotalPowers`.
- Includes an important bug fix related to the `CapRadius` DSS property. If your DSS scripts included the pattern `GMRac=... rad=...` or `GMRac=... diam=...` (in this order and without specifying `CapRadius`), you should upgrade and re-evaluate the results.
- New API properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, `CktElement.TotalPowers`, `Meters.ZonePCE`

## Missing features and limitations

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ skip_non_tags: false
image: Visual Studio 2019
clone_folder: c:\projects\dss_python
environment:
DSS_CAPI_TAG: 0.10.7rc4
DSS_CAPI_TAG: 0.10.7
DSS_CAPI_PATH: c:\projects\dss_capi
ANACONDA_API_TOKEN:
secure: Pcm5IXFi4ZUsi1ue5QvPNASDo1Ns1REYbAwDJXRd3FRn2CfKbNPgnPda6fxoN6wG
Expand Down
23 changes: 20 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
# 0.10.7

- Simple maintenance release.
- Maintenance release.
- Updated to DSS C-API 0.10.7, which includes most changes up to OpenDSS v9.1.3.4.
- Includes tweaks related to the `CapRadius` property.
- New properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, and `CktElement.TotalPowers`.
- Includes an important bug fix related to the `CapRadius` DSS property. If your DSS scripts included the pattern `GMRac=... rad=...` or `GMRac=... diam=...` (in this order and without specifying `CapRadius`), you should upgrade and re-evaluate the results.
- New API properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, `CktElement.TotalPowers`, `Meters.ZonePCE`

DSS C-API 0.10.7 changes:

- Simple maintenance release, which includes most changes up to OpenDSS v9.1.3.4 (revision 2963).
- Includes an important bug fix related to the `CapRadius` DSS property. If your DSS scripts included the pattern `GMRac=... rad=...` or `GMRac=... diam=...` (in this order and without specifying `CapRadius`), you should upgrade and re-evaluate the results.
- This version should be fully API compatible with 0.10.3+.
- A reference document listing the DSS commands and properties for all DSS elements is now available at https://github.com/dss-extensions/dss_capi/blob/0.10.x/docs/dss_properties.md
- New functions API ported from the official OpenDSS include: `Bus_Get_AllPCEatBus`, `Bus_Get_AllPDEatBus`, `CktElement_Get_TotalPowers`, `Meters_Get_ZonePCE`.
- The changes ported from the official OpenDSS include the following (check the repository for more details):
- "Adds LineType property to LineCode and LineGeometry objects."
- "Correcting bug found in storage device when operating in idling mode. It was preventing the solution of other test feeders (IEEE 9500)"
- "Enabling fuel option for generator, fixing bug found in TotalPower command."
- "Adding kvar compensation calculation for normalizing reactive power at feeder head. v 9.1.2.4"
- "Adding: - Line type variable to line definition. - AllPCEatBus and AllPDEatBus commands to the executive command set. - AllPCEatBus and AllPDEatBus commands to bus interface in COM/DLL. (...)"
- "Adding capability to energy meter for getting the list of all PCE (shunt) within a zone. Interface "AllPCEatZone" for COM/DLL created."
- "Fixing bug found when calculating voltage bases with large amount of numbers (large array)."


# 0.10.6

Expand Down
2 changes: 1 addition & 1 deletion dss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .v7 import *
from .patch_dss_com import patch_dss_com

__version__ = '0.10.7rc4'
__version__ = '0.10.7'

0 comments on commit c788534

Please sign in to comment.