www.mooseframework.org
TestTwoPhaseFluidProperties.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 
15 
16 template <>
18 
25 {
26 public:
27  TestTwoPhaseFluidProperties(const InputParameters & parameters);
28 
29  virtual Real p_critical() const override;
30  virtual Real T_sat(Real p) const override;
31  virtual Real p_sat(Real T) const override;
32  virtual Real dT_sat_dp(Real p) const override;
33  virtual Real sigma_from_T(Real T) const override;
34  virtual Real dsigma_dT_from_T(Real T) const override;
35  virtual bool supportsPhaseChange() const override;
36 };
37 
TestTwoPhaseFluidProperties::T_sat
virtual Real T_sat(Real p) const override
Computes the saturation temperature at a pressure.
Definition: TestTwoPhaseFluidProperties.C:43
TestTwoPhaseFluidProperties::dT_sat_dp
virtual Real dT_sat_dp(Real p) const override
Computes dT/dp along the saturation line.
Definition: TestTwoPhaseFluidProperties.C:54
TestTwoPhaseFluidProperties::p_sat
virtual Real p_sat(Real T) const override
Computes the saturation pressure at a temperature.
Definition: TestTwoPhaseFluidProperties.C:49
TestTwoPhaseFluidProperties::TestTwoPhaseFluidProperties
TestTwoPhaseFluidProperties(const InputParameters &parameters)
Definition: TestTwoPhaseFluidProperties.C:29
TwoPhaseFluidProperties.h
TestTwoPhaseFluidProperties
Test 2-phase fluid properties.
Definition: TestTwoPhaseFluidProperties.h:24
TestTwoPhaseFluidProperties::p_critical
virtual Real p_critical() const override
Returns the critical pressure.
Definition: TestTwoPhaseFluidProperties.C:37
TestTwoPhaseFluidProperties::supportsPhaseChange
virtual bool supportsPhaseChange() const override
Returns true if phase change is supported, otherwise false.
Definition: TestTwoPhaseFluidProperties.C:69
TwoPhaseFluidProperties
Base class for fluid properties used with two-phase flow.
Definition: TwoPhaseFluidProperties.h:23
TestTwoPhaseFluidProperties::dsigma_dT_from_T
virtual Real dsigma_dT_from_T(Real T) const override
Computes dsigma/dT along the saturation line.
Definition: TestTwoPhaseFluidProperties.C:63
validParams< TestTwoPhaseFluidProperties >
InputParameters validParams< TestTwoPhaseFluidProperties >()
Definition: TestTwoPhaseFluidProperties.C:17
TestTwoPhaseFluidProperties::sigma_from_T
virtual Real sigma_from_T(Real T) const override
Computes surface tension sigma of saturated liquid in contact with saturated vapor.
Definition: TestTwoPhaseFluidProperties.C:57