-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththickenedFlame.lh
executable file
·90 lines (74 loc) · 2.85 KB
/
thickenedFlame.lh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Copyright (C) 2019, ATA Engineering, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef THICKENEDFLAMEDEF
#define THICKENEDFLAMEDEF
#include <vector>
#include <string>
$type thickenedFlame param<options_list>;
$type Fmax param<real>;
$type coupleToSpeciesEqns param<bool>;
$type dynamicThickening param<bool>;
$type sensorMaxAtProgressVal param<real>;
$type laminarFlameSpeed param<real>;
$type laminarFlameThickness param<real>;
$type lengthScale store<real>;
$type useDynamicThickening Constraint;
$type useStaticThickening Constraint;
$type useThickenedFlame Constraint;
$type useNoEfficiency Constraint;
$type useWangEfficiency Constraint;
$type useMaxEfficiency Constraint;
$type LaminarSimulation Constraint;
$type TurbulentSimulation Constraint;
$type chemkin_diffusion Constraint;
$type transportDB_diffusion Constraint;
$type const_diffusion Constraint;
$type schmidt_diffusion Constraint;
$type thickeningFactor store<real>;
$type thickeningFactor_f store<real>;
$type efficiencyFactor store<real>;
$type efficiencyFactor_f store<real>;
$type flameSensor store<real>;
$type flameSensor_f store<real>;
$type RANSTurbulence Constraint;
$type usingRANSTurbulence param<bool>;
$type sgsTurbulence Constraint;
$type usingSGSTurbulence param<bool>;
$type turbulence_model param<std::string>;
$type MS_LG_2DX Constraint;
$type MS_LG_2DY Constraint;
$type MS_LG_2DZ Constraint;
$type multi_scale param<std::string>;
$type progressVariableName param<std::string>;
$type progressVariableUnburned store<real>;
$type pvUnburnedValue Constraint;
$type pvUnburnedMaxInletFuelTemp Constraint;
$type pvUnburnedAvgInletFuelTemp Constraint;
$type progressVariableBurned store<real>;
$type pvBurnedEquilibrium Constraint;
$type pvBurnedValue Constraint;
$type turbulent_transport param<turbulent_transport>;
$type vort_smooth store<vect3d>;
$type numSmoothingSteps param<int>;
$type X store<vect3d>;
$type v3dSmooth_X store<vect3d>;
$type v3dSmooth(X) store<vect3d>;
// types for chemistry jacobian
$type jacobianSanityChecks param<bool>;
$type tf_chemistry_jacobian param<std::string>;
$type use_tf_analytic_chemistry_jacobian Constraint;
$type use_tf_numerical_chemistry_jacobian Constraint;
#endif