Skip to content
Snippets Groups Projects
Commit 970d37ff authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[tabulatedcomp] add comment on lambdas

parent f603fcc0
No related branches found
No related tags found
1 merge request!861[tabulatedcomp] fill arrays on the fly
...@@ -438,6 +438,10 @@ public: ...@@ -438,6 +438,10 @@ public:
{ {
if (!liquidDensityInitialized_) if (!liquidDensityInitialized_)
{ {
// TODO: we could get rid of the lambdas and pass the functor irectly. But,
// currently Brine is a component (and not a fluid system) expecting a
// third argument with a default, which cannot be wrapped in a function pointer.
// For this reason we have to wrap this into a lambda here.
auto liqRho = [] (auto T, auto p) { return RawComponent::liquidDensity(T, p); }; auto liqRho = [] (auto T, auto p) { return RawComponent::liquidDensity(T, p); };
initTPArray_(liqRho, minLiquidPressure_, maxLiquidPressure_, liquidDensity_); initTPArray_(liqRho, minLiquidPressure_, maxLiquidPressure_, liquidDensity_);
liquidDensityInitialized_ = true; liquidDensityInitialized_ = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment