I’m dealing with RCPSP, I have calculate the resource consumption using cumulFuntion like the statement below:
cumulFunction resUsage [r in resources] =
sum(i in activities : reqRes[i][r] != 0) pulse(resItvs[i][r], reqRes[i][r]);
I want to declare the idle time of resource r, which is the total days when resUsage[r] equal to 0.
Is there a method to calculate it?
Thanks in advance.
New contributor
sarwatatwadhika is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.