Chi-Tech
prk__GetParam.h
Go to the documentation of this file.
1/** \defgroup prk__GetParam prk.GetParam
2
3
4\ingroup prk
5Lua wrapper function for getting parameters from the PointReactorKinetics module.
6
7
8## Function Syntax:
9\code
10prk.GetParam(INTEGER arg0, STRING arg1)
11\endcode
12## Required Input parameters
13\htmlonly
14
15<div style="display: block;">
16<button type="button" class="droppy2" style=
17"
18background-color: #edf0f5;
19color: #9373A5;
20cursor: pointer;
21border: none;
22text-align: left;
23outline: none;
24font-size: 15px;
25margin: 2px 2px;
26border: 2px solid #687372;
27display: block;
28width: 100%;
29vertical-align: middle;
30padding-top: 4px;
31padding-bottom: 0px;
32"
33><span class="arrow" style="padding-left: 0px;">►</span><TT><B>arg0</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspHandle to a <TT>prk::TransientSolver</TT> object</span></button>
34<div class="content" style="display: none;">
35 <p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Handle to a <TT>prk::TransientSolver</TT> object.
36</p>
37</div>
38
39<button type="button" class="droppy2" style=
40"
41background-color: #edf0f5;
42color: #9373A5;
43cursor: pointer;
44border: none;
45text-align: left;
46outline: none;
47font-size: 15px;
48margin: 2px 2px;
49border: 2px solid #687372;
50display: block;
51width: 100%;
52vertical-align: middle;
53padding-top: 4px;
54padding-bottom: 0px;
55"
56><span class="arrow" style="padding-left: 0px;">►</span><TT><B>arg1</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspText name of the parameter to get</span></button>
57<div class="content" style="display: none;">
58 <p><I>type=</I><span style="color: blue;"><TT>STRING</TT></span>. Text name of the parameter to get.
59</p>
60 <p>Allowable values: <TT>"population_prev", "population_next", "period", "time_prev", "time_next"</TT></p>
61</div>
62
63</div>
64\endhtmlonly
65
66\htmlonly
67
68<script>
69
70{
71 var coll = document.getElementsByClassName("droppy2");
72 var i;
73
74 for (i = 0; i < coll.length; i++) {
75 coll[i].addEventListener("click", function() {
76 this.classList.toggle("active");
77 var content = this.nextElementSibling;
78 if (content.style.display === "block") {
79 content.style.display = "none";
80 this.childNodes[0].innerText = "►"
81 } else {
82 content.style.display = "block";
83 this.children[0].innerText = "▼"
84 }
85 });
86 }
87}</script>
88
89\endhtmlonly
90
91*/