You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the following options to the Variable screen (Global and Accrual types) as Check boxes.
"Allow Monitor in Simulation" (canMonitor in JSON)
if checked then add the option "Monitor by default" (monitorInSim in JSON)
if checked then add the option "Monitor Cumulative Stats" (cumulativeStats in JSON)
Add the following options to the Variable screen (Global and Accrual types) as Check boxes.
"Allow Monitor in Simulation" (canMonitor in JSON)
if checked then add the option "Monitor by default" (monitorInSim in JSON)
if checked then add the option "Monitor Cumulative Stats" (cumulativeStats in JSON)
Example in the json
{
"Variable": {
"id": 1,
"name": "SumCurTime",
"desc": "",
"varScope": "gtGlobal",
"value": 0,
"resetOnRuns": true,
"type": "double",
"cumulativeStats": true,
"monitorInSim": true,
"canMonitor": true
}
},
{
"Variable": {
"id": 1,
"name": "DontShow",
"desc": "",
"varScope": "gtGlobal",
"value": 0,
"resetOnRuns": true,
"type": "double",
"canMonitor": false
}
}
The text was updated successfully, but these errors were encountered: