Chi-Tech
chi_objects__MaterialPropertyScalarFuncXYZTV.h
Go to the documentation of this file.
1/** \defgroup chi_objects__MaterialPropertyScalarFuncXYZTV chi_objects.MaterialPropertyScalarFuncXYZTV
2
3
4\ingroup DocExperimental
5
6
7
8## Example usage:
9Create this object:
10\code
11params =
12{
13 param_name1 = value1,
14 param_name2 = value2,
15 --etc.
16}
17chi_objects.MaterialPropertyScalarFuncXYZTV.Create(params)
18\endcode
19## Required 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>function_handle</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspHandle to a function to be used for evaluation of this material property</span></button>
41<div class="content" style="display: none;">
42 <p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Handle to a function to be used for evaluation of this material property.
43</p>
44</div>
45
46<button type="button" class="droppy2" style=
47"
48background-color: #edf0f5;
49color: #9373A5;
50cursor: pointer;
51border: none;
52text-align: left;
53outline: none;
54font-size: 15px;
55margin: 2px 2px;
56border: 2px solid #687372;
57display: block;
58width: 100%;
59vertical-align: middle;
60padding-top: 4px;
61padding-bottom: 0px;
62"
63><span class="arrow" style="padding-left: 0px;">►</span><TT><B>name</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspText name associated with this property</span></button>
64<div class="content" style="display: none;">
65 <p><I>type=</I><span style="color: blue;"><TT>STRING</TT></span>. Text name associated with this property
66</p>
67</div>
68
69</div>
70\endhtmlonly
71
72## Optional Input parameters
73\htmlonly
74
75<div style="display: block;">
76<button type="button" class="droppy2" style=
77"
78background-color: #edf0f5;
79color: #9373A5;
80cursor: pointer;
81border: none;
82text-align: left;
83outline: none;
84font-size: 15px;
85margin: 2px 2px;
86border: 2px solid #687372;
87display: block;
88width: 100%;
89vertical-align: middle;
90padding-top: 4px;
91padding-bottom: 0px;
92"
93><span class="arrow" style="padding-left: 0px;">►</span><TT><B>dependent_variables</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspList of variable names denoting how the associated propery function will be called</span></button>
94<div class="content" style="display: none;">
95 <p><I>type=</I><span style="color: blue;"><TT>ARRAY</TT></span>. List of variable names denoting how the associated propery function will be called.
96</p>
97 <p>Default value: <TT style="color:grey"></TT></p>
98</div>
99
100</div>
101\endhtmlonly
102
103\htmlonly
104
105<script>
106
107{
108 var coll = document.getElementsByClassName("droppy2");
109 var i;
110
111 for (i = 0; i < coll.length; i++) {
112 coll[i].addEventListener("click", function() {
113 this.classList.toggle("active");
114 var content = this.nextElementSibling;
115 if (content.style.display === "block") {
116 content.style.display = "none";
117 this.childNodes[0].innerText = "►"
118 } else {
119 content.style.display = "block";
120 this.children[0].innerText = "▼"
121 }
122 });
123 }
124}</script>
125
126\endhtmlonly
127
128*/