-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7485dae
commit 2953bf0
Showing
3 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
# v0.4.12 | ||
# v0.4.13 | ||
|
||
## New Features | ||
## Bug fixes | ||
|
||
- (Experimental) Initial `Symbolics.jl` support for bulk properties on `EoSModel`. In particular, all Activity models, cubic models, SAFT models without association, and empiric models are supported. for example, this is now supported: | ||
|
||
```julia | ||
@variables y(..)[1:4], n(..)[1:4] | ||
mixture = UNIFAC(["water","ethanol","methanol","1-propanol"]) | ||
moles = [n(t)[i] for i in 1:4] #Clapeyron accepts mole amounts, so it is not necessary to perform transformations to mole fractions | ||
bc_l = y(t, 0.0) .~ activity_coefficient(mixture, 1.0, 298.15, moles) | ||
``` | ||
|
||
## Bug Fixes | ||
|
||
- automatic precompile is disabled in this version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters