Skip to content

Commit

Permalink
Merge pull request #228 from OpenWaterAnalytics/dev
Browse files Browse the repository at this point in the history
v2.2.5
  • Loading branch information
Mariosmsk authored May 10, 2023
2 parents f6f7395 + 0a2f05e commit fa8a2b1
Show file tree
Hide file tree
Showing 5 changed files with 390 additions and 25 deletions.
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ The `EPANET-Matlab Toolkit` is based/inspired on the [EPANET-Matlab Toolkit](htt
|deleteProject|Deletes an epanet project|
|getError|Returns the description of an error code|
|getAdjacencyMatrix|Compute the adjacency matrix (connectivity graph) considering the flows, using mean flow|
|getComputedAnalysisTimeSeries|Computed Hydralic and Quality Time Series|
|getComputedHydraulicTimeSeries|Computed Hydraulic Time Series|
|getComputedQualityTimeSeries|Computed Quality Time Series|
|getComputedTimeSeries|Computed Hydraulic & Quality Time Series using the bimary file who created from executable|
Expand Down Expand Up @@ -536,6 +537,8 @@ The `EPANET-Matlab Toolkit` is based/inspired on the [EPANET-Matlab Toolkit](htt
|getMSXAtol|Retrieves the absolute concentration tolerance|
|getMSXRtol|Retrieves the relative concentration tolerance|
|getMSXComputedQualitySpecie|Retrieves the quality values for specific specie (e.g getMSXComputedQualitySpecie('CL2'))|
|getMSXComputedLinkQualitySpecie|Returns the link quality for specific specie|
|getMSXComputedNodeQualitySpecie|Returns the node quality for specific specie|
|getMSXComputedQualityLink|Retrieves the concentration of a chemical species at a specific link of the network at the current simulation time step|
|getMSXComputedQualityNode|Retrieves the concentration of a chemical species at a specific node of the network at the current simulation time step.|
|getMSXComputedTimeSeries|Retrieves the concentration of chemical species|
Expand Down
19 changes: 19 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
### EPANET Matlab Toolkit (EMT) v2.2.5

- Add the function `getComputedAnalysisTimeSeries` (Computed Hydraulic and Quality analysis)
- Update Movie example (use epanet class function instead of properties)
- Load epanet file with specific DLL without fill properties:
`d = epanet(inpname, 'epanet2', 'loadfile')`;
- Update the functions `getAdjacencyMatrix`, `getFlowDirections`
help `d.getAdjacencyMatrix`
help `d.getFlowDirections`
- Add the function `getMSXComputedLinkQualitySpecie` (Returns the link quality for specific specie)
- Add the function `getMSXComputedNodeQualitySpecie` (Returns the node quality for specific specie)
- Update in the function `setMSXTimeStep`
- Update the function `loadMSXFile`, e.g.
```
d.loadMSXFile('net2-cl2.msx', 'epanetmsx');
d.loadMSXFile('net2-cl2.msx', 'epanetmsx', 'loadfile');
d.loadMSXFile('net2-cl2.msx', 'loadfile');
```

### EPANET Matlab Toolkit (EMT) v2.2.4

- Update the LICENSE file to the last version of EUPL v. 1.2
Expand Down
Loading

0 comments on commit fa8a2b1

Please sign in to comment.