-
Notifications
You must be signed in to change notification settings - Fork 30
Implement SAFT-VR Mie equation of state #237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
fe403db
PC SAFT done. Checking benches
g-bauer e98410a
Changes according to review, added SAFTVRQMie
g-bauer 9b57213
adjust dft
prehner 273f245
Python fixes
prehner 30236ed
Add uvtheory to Cargo feature
g-bauer 2805020
Started impl of SAFT VR Mie
g-bauer 5539f0e
Working dispersion and chain. Association needs evaluation.
g-bauer 9c3da57
Cleanup, removal of old files
g-bauer 61c145a
Improved diameter calculation
g-bauer 0828d67
Finished impl. Added test cases.
g-bauer 3c71bba
Silence warning of unused method
g-bauer 7fd1fcf
Fixed bug from rebasing
g-bauer ab5b87a
Fixed benchmark
g-bauer 9a22b5b
Updated Readme
g-bauer 317c48e
Updated changelog
g-bauer 7f6fff7
Added parameters of Lafitte et al 2013, readme and bib file
g-bauer 658aec4
Fixed integration test
g-bauer d5aec3d
Added example notebook with validation of implementation
g-bauer b8be814
Added docs
g-bauer 681b341
Changed visibility in core and dft. Fixed bug in benches.
g-bauer 47a0c37
Added section for association term in documentation
g-bauer bb2fe9f
Added more examples to notebook
g-bauer d8c0333
removed unused method from hard sphere module, added tests to CI, mov…
g-bauer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev
Previous commit
removed unused method from hard sphere module, added tests to CI, mov…
…ed vr mie benches, removed fmt from Cargo.toml
- Loading branch information
commit d8c03332f8dd46497c80bc03a254737644860d42
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,27 +1,19 @@ | ||
| [package] | ||
| name = "feos" | ||
| version = "0.6.1" | ||
| authors = [ | ||
| "Gernot Bauer <[email protected]>", | ||
| "Philipp Rehner <[email protected]>", | ||
| ] | ||
| authors = ["Gernot Bauer <[email protected]>", "Philipp Rehner <[email protected]>"] | ||
| edition = "2021" | ||
| readme = "README.md" | ||
| license = "MIT OR Apache-2.0" | ||
| description = "FeOs - A framework for equations of state and classical density functional theory." | ||
| homepage = "https://github.com/feos-org" | ||
| repository = "https://github.com/feos-org/feos" | ||
| keywords = [ | ||
| "physics", | ||
| "thermodynamics", | ||
| "equations_of_state", | ||
| "phase_equilibria", | ||
| ] | ||
| keywords = ["physics", "thermodynamics", "equations_of_state", "phase_equilibria"] | ||
| categories = ["science"] | ||
|
|
||
| [package.metadata.docs.rs] | ||
| features = ["all_models", "rayon"] | ||
| rustdoc-args = ["--html-in-header", "./docs-header.html"] | ||
| rustdoc-args = [ "--html-in-header", "./docs-header.html" ] | ||
|
|
||
| [workspace] | ||
| members = ["feos-core", "feos-dft", "feos-derive"] | ||
|
|
@@ -63,6 +55,7 @@ inherits = "release" | |
| lto = true | ||
| codegen-units = 1 | ||
|
|
||
|
|
||
| [features] | ||
| default = [] | ||
| dft = ["feos-dft", "petgraph"] | ||
|
|
@@ -73,26 +66,10 @@ gc_pcsaft = ["association"] | |
| uvtheory = ["lazy_static"] | ||
| pets = [] | ||
| saftvrqmie = [] | ||
| saftvrmie = ["association"] | ||
| saftvrmie = [] | ||
| rayon = ["dep:rayon", "ndarray/rayon", "feos-core/rayon", "feos-dft?/rayon"] | ||
| python = [ | ||
| "pyo3", | ||
| "numpy", | ||
| "quantity/python", | ||
| "feos-core/python", | ||
| "feos-dft?/python", | ||
| "rayon", | ||
| ] | ||
| all_models = [ | ||
| "dft", | ||
| "estimator", | ||
| "pcsaft", | ||
| "gc_pcsaft", | ||
| "uvtheory", | ||
| "pets", | ||
| "saftvrqmie", | ||
| "saftvrmie", | ||
| ] | ||
| python = ["pyo3", "numpy", "quantity/python", "feos-core/python", "feos-dft?/python", "rayon"] | ||
| all_models = ["dft", "estimator", "pcsaft", "gc_pcsaft", "uvtheory", "pets", "saftvrqmie", "saftvrmie"] | ||
|
|
||
| [[bench]] | ||
| name = "state_properties" | ||
|
|
||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.