Chi-Tech
chi_physics__field_operations__MultiFieldOperation.h
Go to the documentation of this file.
1/** \defgroup chi_physics__field_operations__MultiFieldOperation chi_physics.field_operations.MultiFieldOperation
2
3
4\ingroup DocFieldOperation
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_physics.field_operations.MultiFieldOperation.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 FunctionDimAToDimB derived object</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 FunctionDimAToDimB derived object
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>result_field_handle</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspHandle to the field function that should receive the result of the operation</span></button>
64<div class="content" style="display: none;">
65 <p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Handle to the field function that should receive the result of the operation.
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_component_references</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspThe components of interest for each handle supplied</span></button>
94<div class="content" style="display: none;">
95 <p><I>type=</I><span style="color: blue;"><TT>ARRAY</TT></span>. The components of interest for each handle supplied
96</p>
97 <p>Default value: <TT style="color:grey"></TT></p>
98</div>
99
100<button type="button" class="droppy2" style=
101"
102background-color: #edf0f5;
103color: #9373A5;
104cursor: pointer;
105border: none;
106text-align: left;
107outline: none;
108font-size: 15px;
109margin: 2px 2px;
110border: 2px solid #687372;
111display: block;
112width: 100%;
113vertical-align: middle;
114padding-top: 4px;
115padding-bottom: 0px;
116"
117><span class="arrow" style="padding-left: 0px;">►</span><TT><B>dependent_field_handles</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspList of dependent field handles</span></button>
118<div class="content" style="display: none;">
119 <p><I>type=</I><span style="color: blue;"><TT>ARRAY</TT></span>. List of dependent field handles
120</p>
121 <p>Default value: <TT style="color:grey"></TT></p>
122</div>
123
124<button type="button" class="droppy2" style=
125"
126background-color: #edf0f5;
127color: #9373A5;
128cursor: pointer;
129border: none;
130text-align: left;
131outline: none;
132font-size: 15px;
133margin: 2px 2px;
134border: 2px solid #687372;
135display: block;
136width: 100%;
137vertical-align: middle;
138padding-top: 4px;
139padding-bottom: 0px;
140"
141><span class="arrow" style="padding-left: 0px;">►</span><TT><B>result_component_references</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspThe components to write into the result field function</span></button>
142<div class="content" style="display: none;">
143 <p><I>type=</I><span style="color: blue;"><TT>ARRAY</TT></span>. The components to write into the result field function
144</p>
145 <p>Default value: <TT style="color:grey"></TT></p>
146</div>
147
148</div>
149\endhtmlonly
150
151\htmlonly
152
153<script>
154
155{
156 var coll = document.getElementsByClassName("droppy2");
157 var i;
158
159 for (i = 0; i < coll.length; i++) {
160 coll[i].addEventListener("click", function() {
161 this.classList.toggle("active");
162 var content = this.nextElementSibling;
163 if (content.style.display === "block") {
164 content.style.display = "none";
165 this.childNodes[0].innerText = "►"
166 } else {
167 content.style.display = "block";
168 this.children[0].innerText = "▼"
169 }
170 });
171 }
172}</script>
173
174\endhtmlonly
175
176*/