Originally posted by: SystemAdmin
I am trying to understand the format of parameter calculation in OPL. I saw an example in UnitCommitment.mod, as follows:
//Spinning Reserve Requirement Data
float SpinningReserveRequirement[PeriodRange]=[ l.period.id: (parameters.reservePercent/100)*l.load | l in loads];
according to what I understand, it is in the form of:
output_type ParameterName[parameterIndex] = [parameterValue : Condition | other inputs];
But seems like my understanding is not correct. Could you please help.
#DecisionOptimization#OPLusingCPLEXOptimizer