ResetOptionEnum Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:APIClass|Global_Resources|Global Resources}}  
{{Template:API}}{{Template:APIBreadcrumb}}
Specifies whether the variable will retain the value passed to it during simulation or the value will be reset to its initial value at specific times (RENO only). This is the variable's '''When to Reset''' field.


== Members==


*ResetAfterEachSim  {{APIComment|Reset after each simulation (i.e., reset after a single pass through the flowchart)}}
<onlyinclude>Specifies whether the associated [[CVariable Class|cVariable]] object will retain its value during simulation or be reset to its initial value at specific times.</onlyinclude>
*ResetAfterEachRun  {{APIComment|Reset after each run (i.e., reset after each set of simulations) }}
 
*ResetAfterAnalysis {{APIComment|Reset after analysis (i.e., reset after each set of runs)}}
==Members==
*NeverReset         {{APIComment|Never reset}}
{| {{APITableEnum}}
|-
| style="width: 180px;"|ResetAfterEachSim||style="width: 70px;"|0||Reset after each simulation (i.e., reset after a single pass through the flowchart).
|-
|ResetAfterAnalysis||1||Reset after each set of runs.
|-
|ResetAfterEachRun||2||Reset after each set of simulations.
|-
|NeverReset||3||Never reset.
|}
 
 
 
 
 
 
==See Also==
*[[CVariable Class|cVariable Class]]

Latest revision as of 21:12, 24 June 2016

APIWiki.png


Member of: SynthesisAPI


Specifies whether the associated cVariable object will retain its value during simulation or be reset to its initial value at specific times.

Members

Name Value Description
ResetAfterEachSim 0 Reset after each simulation (i.e., reset after a single pass through the flowchart).
ResetAfterAnalysis 1 Reset after each set of runs.
ResetAfterEachRun 2 Reset after each set of simulations.
NeverReset 3 Never reset.




See Also