Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 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 : #include "HEMFluidProperties.h" 11 : #include "FluidProperties.h" 12 : 13 : InputParameters 14 0 : HEMFluidProperties::validParams() 15 : { 16 0 : InputParameters params = FluidProperties::validParams(); 17 0 : params.set<std::string>("fp_type") = "hem-fp"; 18 : 19 0 : return params; 20 0 : } 21 : 22 0 : HEMFluidProperties::HEMFluidProperties(const InputParameters & parameters) 23 0 : : FluidProperties(parameters) 24 : { 25 0 : } 26 : 27 : Real 28 0 : HEMFluidProperties::molarMass() const 29 : { 30 0 : mooseError("molarMass is not implemented"); 31 : } 32 : Real 33 0 : HEMFluidProperties::criticalPressure() const 34 : { 35 0 : mooseError("criticalPressure() is not implemented"); 36 : } 37 : 38 : Real 39 0 : HEMFluidProperties::criticalTemperature() const 40 : { 41 0 : mooseError("criticalTemperature() is not implemented"); 42 : } 43 : 44 : Real 45 0 : HEMFluidProperties::criticalDensity() const 46 : { 47 0 : mooseError("criticalDensity() is not implemented"); 48 : } 49 : 50 : Real 51 0 : HEMFluidProperties::criticalInternalEnergy() const 52 : { 53 0 : mooseError("criticalInternalEnergy() is not implemented"); 54 : } 55 : 56 : Real 57 0 : HEMFluidProperties::triplePointPressure() const 58 : { 59 0 : mooseError("triplePointPressure() is not implemented"); 60 : } 61 : 62 : Real 63 0 : HEMFluidProperties::triplePointTemperature() const 64 : { 65 0 : mooseError("triplePointTemperature() is not implemented"); 66 : }