Login Page - Create Account

Support Board


Date/Time: Fri, 10 May 2024 14:41:03 +0000



Post From: Totaling Volume using ACSIL During Replay Mode

[2018-11-05 21:55:51]
Yoda - Posts: 106
For those reading this post at a later date, I thought I would provide a quick update.

I've made a number of changes to the code, but I found a key change to get this to work was to replace:

NightlyVolumePersist += Volume[sc.Index];

with:

sc.CumulativeSummation(sc.BaseData[InputData.GetInputDataIndex()], Summation, sc.Index);

where InputData is a SCInputRef variable set to SC_VOLUME and Summation is a sc.Subgraph variable.