Skip to content

Commit

Permalink
Maint 7.0.x release notes (#2523)
Browse files Browse the repository at this point in the history
* Merged IBPSA, #1490

This is a bug fix in the refrigerant derivative in the python code

* Updated release date
  • Loading branch information
mwetter authored Jun 4, 2021
1 parent 3b20672 commit b09ef28
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def _dpdv(self, TVap, vVap):

dpdv = -R*TVap/(vVap - b)**2.0
for i in range(len(A)):
dpdv = dpdv + (-i)*(A[i] + B[i]*TVap
dpdv = dpdv - (2.0+i)*(A[i] + B[i]*TVap
+ C[i]*np.exp(-k*TVap/self.TCri)) \
/ (vVap - b)**(i + 3.0)
return dpdv
Expand Down
4 changes: 2 additions & 2 deletions Buildings/package.mo
Original file line number Diff line number Diff line change
Expand Up @@ -8097,7 +8097,7 @@ on the Buildings library.
</p>
<ul>
<li>
<a href=\"modelica://Buildings.UsersGuide.ReleaseNotes.Version_7_0_1\">Version 7.0.1</a> (May 28, 2021)
<a href=\"modelica://Buildings.UsersGuide.ReleaseNotes.Version_7_0_1\">Version 7.0.1</a> (June 4, 2021)
</li>
<li>
<a href=\"modelica://Buildings.UsersGuide.ReleaseNotes.Version_7_0_0\">Version 7.0.0</a> (May 28, 2020)
Expand Down Expand Up @@ -8580,7 +8580,7 @@ annotation (
preferredView="info",
version="7.0.1",
versionDate="2020-05-28",
dateModified="2021-05-28",
dateModified="2021-06-04",
uses(Modelica(version="3.2.3")),
conversion(
noneFromVersion="7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The main project site is http://simulationresearch.lbl.gov/modelica.

## Current release

Download [Buildings Library 7.0.1 (2021-05-28)](https://github.com/lbl-srg/modelica-buildings/releases/download/v7.0.1/Buildings-v7.0.1.zip)
Download [Buildings Library 7.0.1 (2021-06-04)](https://github.com/lbl-srg/modelica-buildings/releases/download/v7.0.1/Buildings-v7.0.1.zip)

## License

Expand Down

0 comments on commit b09ef28

Please sign in to comment.