Hello Sir,
I am trying to write the following equation
in AMPL with ,
,
,
, and
are declared as parameters and is a variable. I wrote it as follows:
subject to uncert_deg_Lowerbound{y in YY}: Mu_wt_L[y]*sum{t in TT}(Omega_wt_star[y,t]) <= sum{t in TT}(Omega_wt[y,t]);
subject to uncert_deg_Upperbound{y in YY} : sum{t in TT}(Omega_wt[y,t]) <= Mu_wt_U[y]*sum{t in TT}(Omega_wt_star[y,t]);
subject to boundary{y in YY, t in TT}: Omega_wt_L[y,t] <= Omega_wt[y,t] <= Omega_wt_U[y,t];
I am wondering if I wrote it correctly!! Can you please correct me if I failed to write it well?
Sincerely,
Davids