Chi-Tech
chi_math__ImplicitEulerTimeIntegration.h
Go to the documentation of this file.
1
/** \defgroup chi_math__ImplicitEulerTimeIntegration chi_math.ImplicitEulerTimeIntegration
2
3
4
\ingroup DocTimeIntegrations
5
General implicit Euler Time Integration
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.ImplicitEulerTimeIntegration.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>method</B></TT><span style="color: #c4c1c0;">       Integer representing time stepping scheme</span></button>
41
<div class="content" style="display: none;">
42
<p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Integer representing time stepping scheme
43
</p>
44
<p>Default value: <TT style="color:grey">2</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>theta</B></TT><span style="color: #c4c1c0;">       The theta parameter for a theta scheme</span></button>
65
<div class="content" style="display: none;">
66
<p><I>type=</I><span style="color: blue;"><TT>FLOAT</TT></span>. The theta parameter for a theta scheme
67
</p>
68
<p>Default value: <TT style="color:grey">1(double)</TT></p>
69
</div>
70
71
</div>
72
\endhtmlonly
73
74
\htmlonly
75
76
<script>
77
78
{
79
var coll = document.getElementsByClassName("droppy2");
80
var i;
81
82
for (i = 0; i < coll.length; i++) {
83
coll[i].addEventListener("click", function() {
84
this.classList.toggle("active");
85
var content = this.nextElementSibling;
86
if (content.style.display === "block") {
87
content.style.display = "none";
88
this.childNodes[0].innerText = "►"
89
} else {
90
content.style.display = "block";
91
this.children[0].innerText = "▼"
92
}
93
});
94
}
95
}</script>
96
97
\endhtmlonly
98
99
*/
doc
generated_files
input_docs
chi_math__ImplicitEulerTimeIntegration.h
Generated by
1.9.3