https://mooseframework.inl.gov
NSFunctionInitialCondition.h
Go to the documentation of this file.
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 #pragma once
11 
12 #include "InitialCondition.h"
13 #include "InputParameters.h"
14 #include "Function.h"
15 
16 // Forward Declarations
18 
28 {
29 public:
31 
33 
37  virtual Real value(const Point & p);
38 
39 protected:
41  const std::string _variable_type;
42 
45 
48 
50  std::vector<const Function *> _initial_velocity;
51 
54 
56  const std::string _pressure_variable_name;
57 };
const std::string _variable_type
Used to map the variable to one of the expected types.
std::vector< const Function * > _initial_velocity
Initial constant value of the velocity.
const std::string _pressure_variable_name
pressure variable name
const Function & _initial_temperature
Initial constant value of the fluid temperature.
NSFunctionInitialCondition(const InputParameters &parameters)
virtual Real value(const Point &p)
The value of the variable at a point.
const IdealGasFluidProperties & _fp
Fluid properties.
static InputParameters validParams()
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
Ideal gas fluid properties Default parameters are for air at atmospheric pressure and temperature...
NSFunctionInitialCondition sets intial constant values for all variables given the: ...
const Function & _initial_pressure
Initial constant value of the pressure.