RouteTransportSimple Class Reference
#include <routes.h>
Inheritance diagram for RouteTransportSimple:

Public Member Functions | |
| RouteTransportSimple (Value muv20, Value mul20, Value kv20, Value kl20, Value sigma20) | |
| Value | muv (const Value &T, const Value &P) override |
| Vapour viscosity. More... | |
| Value | mul (const Value &T) override |
| Liquid viscosity. More... | |
| Value | kv (const Value &T, const Value &P) override |
| Vapour thermal conductivity. More... | |
| Value | kl (const Value &T) override |
| Liquid thermal conductivity. More... | |
| Value | sigma (const Value &T) override |
| Liquid surface tension. More... | |
Public Member Functions inherited from RouteTransport | |
| RouteTransport (void) | |
| virtual | ~RouteTransport (void) |
| virtual Value | muv (const Value &T, const Value &P)=0 |
| Vapour viscosity. More... | |
| virtual Value | mul (const Value &T)=0 |
| Liquid viscosity. More... | |
| virtual Value | kv (const Value &T, const Value &P)=0 |
| Vapour thermal conductivity. More... | |
| virtual Value | kl (const Value &T)=0 |
| Liquid thermal conductivity. More... | |
| virtual Value | sigma (const Value &T)=0 |
| Liquid surface tension. More... | |
| Value | DG (const Value &T, const Value &P, const Value &mixMW, const Value &mixDiffvol) |
| Gas diffusivity. More... | |
| Value | DL (const Value &T) |
| Liquid diffusivity. More... | |
Public Member Functions inherited from ComponentInterface | |
| virtual const Value & | MW (void) const =0 |
| virtual const Value & | Pc (void) const =0 |
| virtual const Value & | Tc (void) const =0 |
| virtual const Value | Vc (void) const =0 |
| virtual const Value & | Zc (void) const =0 |
| virtual const Value & | omega (void) const =0 |
| virtual const Value & | diffvol (void) const =0 |
| virtual const Value & | vb (void) const =0 |
| virtual const Value & | dh0 (void) const =0 |
| virtual const Value & | dg0 (void) const =0 |
Additional Inherited Members | |
Protected Member Functions inherited from RouteTransport | |
| RouteTransport (const RouteTransport &) | |
| not implemented, making class non copyable More... | |
| RouteTransport & | operator= (const RouteTransport &) |
| not implemented, making class non copyable More... | |
Protected Member Functions inherited from ComponentInterface | |
| virtual | ~ComponentInterface ()=default |
Detailed Description
Dummy implementation for vapor and liquid transport properties; uses temperature-dependent correlations from a user-specified values @ 20 C Used where, in practice, there is not the need of a perfect model for these properties.
#include <libpf/components/routes.h>
- Remarks
- Warning
- Thread safe:
- Extendable:
- Platform dependencies:
Constructor & Destructor Documentation
◆ RouteTransportSimple()
| RouteTransportSimple::RouteTransportSimple | ( | Value | muv20, |
| Value | mul20, | ||
| Value | kv20, | ||
| Value | kl20, | ||
| Value | sigma20 | ||
| ) |
- Parameters
-
muv20 vapor viscosity at 20 C mul20 liquid viscosity at 20 C kv20 vapor thermal conductivity at 20 C kl20 liquid thermal conductivity at 20 C sigma20 surface tension at 20 C
Member Function Documentation
◆ kl()
Liquid thermal conductivity.
Implements RouteTransport.
◆ kv()
Vapour thermal conductivity.
Implements RouteTransport.
◆ mul()
Liquid viscosity.
Implements RouteTransport.
◆ muv()
Vapour viscosity.
Implements RouteTransport.
◆ sigma()
Liquid surface tension.
Implements RouteTransport.
The documentation for this class was generated from the following file:
Public Member Functions inherited from