thanks bro i just learned how to model my friend !!! you're very helpful, i hope your family will be healthy forever !!!! and happy new year from a fellow german brother !!!
Hi Sir, I am a student of Cavite State University here in the Philippines. We are now formulating a production planning model for lettuce farming system with the objective of minimizing the cost of the raw materials. It is harder than other max problems.
Hi Ammar, Thanks for the video. This is my first contact with GAMS . I am a student from Nigeria trying to get video on modelling and estimating stochastic DEA problem using GAMS but haven't had contact with any on youtube. Do you have any Idea on stochatic DEA? I really need help. Thank you
Hi. I changed my Gams version and now my results are different. I am working in a MILP algorithm and I am using the Baron and Cplex solvers. I don't understand what is the problem. The version I installed is 29.5 version. Help me please! Thanks!
hello sir, i ve gone through the tutorial video u have posted on youtube about gams.. i want to learn more .. i ll be glad if u provide me some more tutorials
I wrote the same exact code and I got this error: *** WARNING: Presolve found the problem infeasible or unbounded --- Cplex diagnoses the model to be either infeasible or unbounded. --- There is no such GAMS Model Status so returning with a status of infeasible. --- Model has been proven to be either infeasible or unbounded And all the results are zero. Any help?
Hi, not sure if you still need help, I try to check with gpt, it says that change the x2 to positive variable, then there are answers for x1,x2,x3,z but definitely different answers from the answers shown in this video. ( For reference: x1 =10, x2 =0, x3= -70, z=3800)
Thank you, my friend. You saved my ass. I made my hometask, appeared hope to graduate my university and I will not commit suicide =)
thanks bro i just learned how to model my friend !!! you're very helpful, i hope your family will be healthy forever !!!! and happy new year from a fellow german brother !!!
Hi Sir, I am a student of Cavite State University here in the Philippines. We are now formulating a production planning model for lettuce farming system with the objective of minimizing the cost of the raw materials. It is harder than other max problems.
Great video, taking CS 524 at UW-Madison and your video helped, thank you so much!
CAN U PLZ SEND ME GMAIL ,NED TO ASK ABOUT GAMS
Thans alot your solution is so easy upload more about gams ❤
Thank you, sir. You have helped me so much!
Amazing Ammar HARASANI for the dedicated work....I learn a lots....
Hi.
Thank you for saving my life.
Thanks a million, Ammar. I really enjoyed it.
Great example!! Thanks fronte Italy
Thank you. It will be helpful if you do another video on solving Mixed Integer Problems using GAMS
Thank you, man!
It was really useful!
Great Tutorial for beginners.
excellent. thanks for this tutorial
Great Tutorial, Thanks Ammar :)
Brilliant! Thank you for helping me solve a simple question for my assignment :)
شكرا جزيلا عمار... محمد من العراق
Thanks Ammar....
great video
VERY GOOD
Hi Ammar, Thanks for the video. This is my first contact with GAMS . I am a student from Nigeria trying to get video on modelling and estimating stochastic DEA problem using GAMS but haven't had contact with any on youtube. Do you have any Idea on stochatic DEA? I really need help. Thank you
Hi. I changed my Gams version and now my results are different. I am working in a MILP algorithm and I am using the Baron and Cplex solvers. I don't understand what is the problem. The version I installed is 29.5 version. Help me please! Thanks!
Thanks for this advices!
Tried to replicate the same model but got different results. May be this has to do with the error "Model has an unbounded ray".. See 13:43
What did you get? I got 1790 for z...
I got 1790 for Z
great sir
Thank you alot brother.
Excellent! Many thanks.
why you stopped uploading these videos ..its really helpful bro
hello sir, i ve gone through the tutorial video u have posted on youtube about gams.. i want to learn more .. i ll be glad if u provide me some more tutorials
Hello sir! I would like to know if the Objective Function is a constraint?
Thank you for the video!
Do you have any lecture on resource constrained project scheduling problems?
Can you do an stochastic programming problem where scenario reduction through SCENRED is used?
Thanks for the useful video. However, simplex should be written as LP = Splex;
Great tutorial but the results different to mine, still very helpful
thank you very much ammar
Thank you Ammar
The solution in my computer didn't was the same that yours. Why?
His iteration remains one, and I don't know how that came into existence...x1=3.909...
@@dami4862 same problem here :(
I replicated the exercise, here is the code:
Positive variable x1;
Free variable x2, z;
Negative variable x3;
Equations
Con1,
Con2,
Con3,
Obj;
Con1.. x1 + x2 + x3 =L= 7;
Con2.. 4*x1 + 2*x2 =E= 40;
Con3.. 10*x1 + x3 =G= 30;
Obj.. 30*x1 + 100*x2 - 50*x3 =E= z;
Model InterTest /all/;
Options LP = Cplex;
Solve InterTest using LP maximizing z;
Display x1.L, x2.L, x3.L, z.L ;
My results are different:
VARIABLE x1.L = 3.909
VARIABLE x2.L = 12.182
VARIABLE x3.L = -9.091
VARIABLE z.L = 1790.000
Sir 7-8 constraints ka koi problem mil jayega
thnx for Ammar
from Tehran university
how do i solve the problem of unboundness in my model?
I wrote the same exact code and I got this error:
*** WARNING: Presolve found the problem infeasible or unbounded
--- Cplex diagnoses the model to be either infeasible or unbounded.
--- There is no such GAMS Model Status so returning with a status of infeasible.
--- Model has been proven to be either infeasible or unbounded
And all the results are zero. Any help?
Hi, not sure if you still need help, I try to check with gpt, it says that change the x2 to positive variable, then there are answers for x1,x2,x3,z but definitely different answers from the answers shown in this video. ( For reference: x1 =10, x2 =0, x3= -70, z=3800)
I need more example please to understand the variable , con , obj etc
Your result does not satisfy the problem :( put them in the equations! you will see...
tesekkurlar begum hanim i am stady in ankara what about u
CAN U PLZ SEND ME GMAIL ,NED TO ASK ABOUT GAMS
how can i set bounds in my model?
The result does not satisfy the second constraint. 4x1+2x2 has to be equal to 40. Obviously, x1=0.1 and x2= -0.2 does not satisfy this equation.
I replicated the excercise, here is the code:
Positive variable x1;
Free variable x2, z;
Negative variable x3;
Equations
Con1,
Con2,
Con3,
Obj;
Con1.. x1 + x2 + x3 =L= 7;
Con2.. 4*x1 + 2*x2 =E= 40;
Con3.. 10*x1 + x3 =G= 30;
Obj.. 30*x1 + 100*x2 - 50*x3 =E= z;
Model InterTest /all/;
Options LP = Cplex;
Solve InterTest using LP maximizing z;
Display x1.L, x2.L, x3.L, z.L ;
My results are different:
VARIABLE x1.L = 3.909
VARIABLE x2.L = 12.182
VARIABLE x3.L = -9.091
VARIABLE z.L = 1790.000
@@giovannihernandez3208 same here
Same happened to me, any explanation for this? I even use the same spaces between letters and numbers
@@giovannihernandez3208 same results
@@giovannihernandez3208 Same bro~
thanks
have you license of GAME?
Thanks, bro.
CAN U PLZ SEND ME GMAIL ,NED TO ASK ABOUT GAMS
I press f9 in keyboard but the results do not show
اكمل الدروس الشرح جميل
Hi, could you please upload how to write a disjunctive problem, for example, Max\{f(X)| X satisfies eq1 or eq2 or eq3\}.
Hello
I have a problem in flexible job shop code in gams
Can anyone help me?
عاشت ايدك
احسنت لكن ممكن ان تشرح على موضوع GAMS CODE CO-OPTIMIZATION باستخدام MATHMATICAL FORMULATION
thx
Bro i need help
sir upload more videos
اشكرك على الشرح الدرس هل هناك شرح بالعربية
بولي بصمت غبية ، والحشوات هي الأم
th-cam.com/video/ZGxxe5D3jkM/w-d-xo.html
Hallo das ist Kool
تشرح خصوصي البرنامج
please help me who knows how to work on gams
CAN U PLZ SEND ME GMAIL ,NED TO ASK ABOUT GAMS
@@rafaqathus1233 i can tell you anything about gams. give me your gmail and ill do it for free (and your password)
KFUPM is the best university in the world.
school driven
very bad description. Super not good:) first is give sets.
ممكن رقم الواتس اتواصل معاك؟
Thanks