StefanoUnipd

Results 8 comments of StefanoUnipd

Thank you so much for the suggestion, in `cplex_options.m` I found something that was right for me that is: `mpopt = mpoption(mpopt,'cplex.opts.barrier.convergetol',1e-4); %default: 1e-8`. Among the alternatives I tried, this...

I'm using the word "scenario" refering to the different "scenarios" in a single MOST run of a stochastic case. I'll try to explain myself better: in example 7 of the...

Perfect, yes I was trying to do something like this. I tried to extract the values of the remaining cost types (I am referring to the costs on pages 31-32)...

I noticed that, if I only have the generation costs, the f objective is equal to these costs. I'm analyzing a case with t=18 (t=number of periods), and after adding...

Exactly. To make you better understand the situation I'm analyzing, I would show you my code, but I can't do that. Here I try to explain the situation better, using...

When I list the f value for period 1 and period 2, I should have written: nt=1 ; nt=2. Thank you, it's very useful the new method "display_soln()"! However I...

The two values of `Generator cost` are the output of this: ``` for(i = 1:nt) gen_cost(i,1) = mdo.om.eval_quad_cost(mdo.om.soln.x, 'Cp', {i,1,1}); gen_cost(i,1) = gen_cost(i,1)/mdo.CostWeightsAdj(1,1,i); end ``` `Generation_cost = gen_cost(:,1) ` When...

Thank you for everything Professor Zimmerman, you were very kind.