Feature multilayer perceptron#40
Merged
EvertBunschoten merged 11 commits intodevelopfrom Apr 28, 2023
Merged
Conversation
…eature_multilayer_perceptron
…2code/Tutorials into feature_multilayer_perceptron
…eature_multilayer_perceptron
pcarruscag
reviewed
Apr 18, 2023
Comment on lines
1
to
7
| --- | ||
| title: Data-Driven Fluid Model | ||
| permalink: /SU2_CFD/src/fluid/CDataDrivenFluid.cpp | ||
| --- | ||
| # Using Data-Driven Fluid Models in SU2 | ||
| Modeling non-ideal fluid behavior can be difficult when limited to model equations or can be time consuming when performing large-scale simulations using the CoolProp fluid model. The data-driven fluid model class allows for the equation of state to be defined through a look-up table (LUT) or a set of multi-layer perceptrons (MLP), using an entropy-based equation of state. Given enough reference data and careful tuning of the initial conditions, it is possible to attain similar accuracies as the CoolProp library, while being compatible with the SU2 adjoint solver and a faster iteration time. | ||
|
|
Member
There was a problem hiding this comment.
You need to add this file to the website instead, it's not picked up automatically.
Member
Author
There was a problem hiding this comment.
I added a modified version of the tutorial instructions to the website repo (feature_multilayer_peceptron). It explains how to use the data-driven fluid model and how to train a multi-layer perceptron to use as its input. However, in order to explain the entropy-based fluid model, I need to reference a paper which is yet to be published. This may take a couple of weeks. Do you think it's ok to merge this branch in the meantime or is it better to wait until the website tutorial instructions are complete?
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Added a tutorial and documentation for the CDataDrivenFluid class in SU2 and how to generate the input files required for the fluid model to function.