Chi-Tech
chi_math__QuadratureGaussChebyshev.h
Go to the documentation of this file.
1
/** \defgroup chi_math__QuadratureGaussChebyshev chi_math.QuadratureGaussChebyshev
2
3
4
\ingroup LuaQuadrature
5
Implementation of a Gauss-Chebyshev quadrature
6
7
8
## Example usage:
9
Create this object:
10
\code
11
params =
12
{
13
param_name1 = value1,
14
param_name2 = value2,
15
--etc.
16
}
17
chi_math.QuadratureGaussChebyshev.Create(params)
18
\endcode
19
## Optional Input parameters
20
\htmlonly
21
22
<div style="display: block;">
23
<button type="button" class="droppy2" style=
24
"
25
background-color: #edf0f5;
26
color: #9373A5;
27
cursor: pointer;
28
border: none;
29
text-align: left;
30
outline: none;
31
font-size: 15px;
32
margin: 2px 2px;
33
border: 2px solid #687372;
34
display: block;
35
width: 100%;
36
vertical-align: middle;
37
padding-top: 4px;
38
padding-bottom: 0px;
39
"
40
><span class="arrow" style="padding-left: 0px;">►</span><TT><B>N</B></TT><span style="color: #c4c1c0;">       Number of quadrature points</span></button>
41
<div class="content" style="display: none;">
42
<p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Number of quadrature points.
43
</p>
44
<p>Default value: <TT style="color:grey">1</TT></p>
45
</div>
46
47
<button type="button" class="droppy2" style=
48
"
49
background-color: #edf0f5;
50
color: #9373A5;
51
cursor: pointer;
52
border: none;
53
text-align: left;
54
outline: none;
55
font-size: 15px;
56
margin: 2px 2px;
57
border: 2px solid #687372;
58
display: block;
59
width: 100%;
60
vertical-align: middle;
61
padding-top: 4px;
62
padding-bottom: 0px;
63
"
64
><span class="arrow" style="padding-left: 0px;">►</span><TT><B>order</B></TT><span style="color: #c4c1c0;">       Quadrature order</span></button>
65
<div class="content" style="display: none;">
66
<p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Quadrature order.
67
</p>
68
<p>Default value: <TT style="color:grey">0</TT></p>
69
<p>Allowable values: <TT>>= 0, <= 43</TT></p>
70
</div>
71
72
<button type="button" class="droppy2" style=
73
"
74
background-color: #edf0f5;
75
color: #9373A5;
76
cursor: pointer;
77
border: none;
78
text-align: left;
79
outline: none;
80
font-size: 15px;
81
margin: 2px 2px;
82
border: 2px solid #687372;
83
display: block;
84
width: 100%;
85
vertical-align: middle;
86
padding-top: 4px;
87
padding-bottom: 0px;
88
"
89
><span class="arrow" style="padding-left: 0px;">►</span><TT><B>verbose</B></TT><span style="color: #c4c1c0;">       Enables verbose operations</span></button>
90
<div class="content" style="display: none;">
91
<p><I>type=</I><span style="color: blue;"><TT>BOOLEAN</TT></span>. Enables verbose operations
92
</p>
93
<p>Default value: <TT style="color:grey">false</TT></p>
94
</div>
95
96
</div>
97
\endhtmlonly
98
99
\htmlonly
100
101
<script>
102
103
{
104
var coll = document.getElementsByClassName("droppy2");
105
var i;
106
107
for (i = 0; i < coll.length; i++) {
108
coll[i].addEventListener("click", function() {
109
this.classList.toggle("active");
110
var content = this.nextElementSibling;
111
if (content.style.display === "block") {
112
content.style.display = "none";
113
this.childNodes[0].innerText = "►"
114
} else {
115
content.style.display = "block";
116
this.children[0].innerText = "▼"
117
}
118
});
119
}
120
}</script>
121
122
\endhtmlonly
123
124
### Usage Examples:
125
\ref test_framework_chi_math_Quadrature_quadrature_test1_lua
126
*/
doc
generated_files
input_docs
chi_math__QuadratureGaussChebyshev.h
Generated by
1.9.3