Skip to content

Releases: KWR-Water/pysimdeum

Added warm water functionality

26 Aug 14:27
Compare
Choose a tag to compare

Breaking change
Added warm water functionality meaning that pysimdeum now calculates which part of the waterflow has been heated up and stores this in a separate array.

The consumption data array now has an extra dimension: flowtypes which has the options totalflow and hotflow. The totalflow contains the total water flow and is what pysimdeum calculated previously. The hotflow contains that part of the waterflow that has been heated up.

Because of the extra dimension in the consumption data array this version has a breaking change. Statements like:
tot_cons = consumption.sum(['enduse', 'user']).mean([ 'patterns']) need to be changed to:
tot_cons = consumption.sum(['enduse', 'user']).sel(flowtypes='totalflow').mean([ 'patterns']) to achieve the same result.

The .sel(flowtypes='totalflow') makes sure we select the total flow.

plot and write functions have also been updated.

What's Changed

Full Changelog: 0.1.6...1.0.0

Added warm water functionality

26 Aug 14:22
5e85d7e
Compare
Choose a tag to compare

Breaking change
Added warm water functionality meaning that pysimdeum now calculates which part of the waterflow has been heated up and stores this in a separate array.

The consumption data array now has an extra dimension: flowtypes which has the options totalflow and hotflow. The totalflow contains the total water flow and is what pysimdeum calculated previously. The hotflow contains that part of the waterflow that has been heated up.

Because of the extra dimension in the consumption data array this version has a breaking change. Statements like:
tot_cons = consumption.sum(['enduse', 'user']).mean([ 'patterns']) need to be changed to:
tot_cons = consumption.sum(['enduse', 'user']).sel(flowtypes='totalflow').mean([ 'patterns']) to achieve the same result.

The .sel(flowtypes='totalflow') makes sure we select the total flow.

plot and write functions have also been updated.

What's Changed

Full Changelog: 0.1.6...1.0.0

0.1.6 release

14 Mar 09:34
1308059
Compare
Choose a tag to compare

Fixes a bug in washingmachine and dishwasher end_use which might occur during multiday simulation

release 0.1.5

14 Mar 09:27
d0ffa86
Compare
Choose a tag to compare

Fixes a crash that may appear when dishwasher or washingmachine pattern extend beyond the day boundary in a multiple day simulation

0.1.4 release

29 Feb 10:20
29d5d64
Compare
Choose a tag to compare
Update __init__.py

0.1.3 release

29 Feb 10:16
6707d14
Compare
Choose a tag to compare
Merge pull request #29 from KWR-Water/BramHillebrand-patch-2

Update __init__.py

0.1.2 release

29 Feb 10:12
cafa988
Compare
Choose a tag to compare

publish automatically on pypi

Release 0.1.1

29 Feb 10:02
dff8514
Compare
Choose a tag to compare
Update setup.cfg

0.1.0 version

29 Feb 09:43
0d69baf
Compare
Choose a tag to compare

This release fixes small bugs and creates automatic publishing on pypi with release

Backup

15 Mar 12:52
Compare
Choose a tag to compare
Backup Pre-release
Pre-release

Backup, only, don't delete!