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
5Implementation of a Gauss-Chebyshev quadrature
6
7
8## Example usage:
9Create this object:
10\code
11params =
12{
13 param_name1 = value1,
14 param_name2 = value2,
15 --etc.
16}
17chi_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"
25background-color: #edf0f5;
26color: #9373A5;
27cursor: pointer;
28border: none;
29text-align: left;
30outline: none;
31font-size: 15px;
32margin: 2px 2px;
33border: 2px solid #687372;
34display: block;
35width: 100%;
36vertical-align: middle;
37padding-top: 4px;
38padding-bottom: 0px;
39"
40><span class="arrow" style="padding-left: 0px;">►</span><TT><B>N</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspNumber 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"
49background-color: #edf0f5;
50color: #9373A5;
51cursor: pointer;
52border: none;
53text-align: left;
54outline: none;
55font-size: 15px;
56margin: 2px 2px;
57border: 2px solid #687372;
58display: block;
59width: 100%;
60vertical-align: middle;
61padding-top: 4px;
62padding-bottom: 0px;
63"
64><span class="arrow" style="padding-left: 0px;">►</span><TT><B>order</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspQuadrature 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"
74background-color: #edf0f5;
75color: #9373A5;
76cursor: pointer;
77border: none;
78text-align: left;
79outline: none;
80font-size: 15px;
81margin: 2px 2px;
82border: 2px solid #687372;
83display: block;
84width: 100%;
85vertical-align: middle;
86padding-top: 4px;
87padding-bottom: 0px;
88"
89><span class="arrow" style="padding-left: 0px;">►</span><TT><B>verbose</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspEnables 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*/