LINGO TUTORIAL.

Slides:



Advertisements
Similar presentations
IENG313 Operation Research I
Advertisements

Lesson 15: Editing, Viewing, and Printing Worksheets.
What is GAMS?. While they are not NLP solvers, per se, attention should be given to modeling languages like: GAMS- AIMMS-
 Use the Left and Right arrow keys or the Page Up and Page Down keys to move between the pages. You can also click on the pages to move forward.  To.
Templates and Styles Excel Advanced. Templates are pre- designed and formatted spreadsheets –They provide consistency of layout/structure –They.
Tutorial 12: Enhancing Excel with Visual Basic for Applications
Introduction to C Programming
By Hrishikesh Gadre Session II Department of Mechanical Engineering Louisiana State University Engineering Equation Solver Tutorials.
EDITING AND FORMATTING A DOCUMENT Presented by: Dr. Ennis-Cole.
Lesson 1 – Microsoft Excel The goal of this lesson is for students to successfully explore and describe the Excel window and to create a new worksheet.
Microsoft Office 2003 Illustrated Brief Document Creating a.
Microsoft Access Lesson 1 Lexington Technology Center February 11, 2003 Bob Herring On the Web at
XP New Perspectives on Integrating Microsoft Office XP Tutorial 2 1 Integrating Microsoft Office XP Tutorial 2 – Integrating Word, Excel, and Access.
· Adding and Renaming Worksheets
Productivity Programs Common Features and Commands.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 2 Chapter 2 - Introduction to C Programming.
1 Lesson 13 Editing and Formatting documents Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition Morrison / Wells.
McGraw-Hill Technology Education © 2004 by the McGraw-Hill Companies, Inc. All rights reserved. Office Access 2003 Lab 2 Modifying a Table and Creating.
LINGO TUTORIAL. WHAT IS LINGO : LINGO is a software tool designed to efficiently build and solve linear, nonlinear, and integer optimization models. CREATING.
CorrectWrongHome Desktop 100 Toolbars Best Friends MiscNerdville
Understanding Word Vocabulary
Welcome to the Basic Microsoft Word Guide. Before you start this Guide, you will need to complete “Basic Computer”; “Basic Windows” and know how to type.
Mail Merge Introduction to Word Processing ITSW 1401 Instructor: Glenda H. Easter Introduction to Word Processing ITSW 1401 Instructor: Glenda H. Easter.
Formula Auditing, Data Validation, and Complex Problem Solving
Introduction to Optimization
4.2 Microsoft Word.
Microsoft Word 125 S. Clark St., 4th floor, Chicago, Illinois  Telephone  Fax
Practical Office 2007 Chapter 2
Microsoft Word Objectives: Word processing using Microsoft Word
Microsoft Word Illustrated
Microsoft Excel.
SQL and SQL*Plus Interaction
Microsoft Office Access 2010 Lab 2
Practical Office 2007 Chapter 10
IENG 212 LAB 1 Research Assıstant: Kehınde Adewale ADESINA
Chapter 2 - Introduction to C Programming
Microsoft Office Access 2003
Microsoft Word 2010.
Guide To UNIX Using Linux Third Edition
Creating, Formatting, and Editing a Word Document with Pictures
Chapter 2 - Introduction to C Programming
Microsoft Excel 2003 Illustrated Complete
لینگو به نام خدا.
The How-to-Guide for Using Word
ITEC 1001 Test 3 Review 11/8/2018.
4.2 Microsoft Word.
Understanding Microsoft Excel
IPC144 Introduction to Programming Using C Week 1 – Lesson 2
Microsoft Excel All editions of Microsoft office.
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
New Perspectives on Windows XP
Chapter 2 - Introduction to C Programming
Microsoft PowerPoint 2007 – Unit 2
Shelly Cashman: Microsoft Word 2016
Word Processing and Desktop Publishing Software
Understanding Microsoft Excel
Experiment No. (1) - an introduction to MATLAB
Lesson 13 Editing and Formatting documents
Chapter 2 - Introduction to C Programming
1 Word Processing Part I.
Grauer and Barber Series Microsoft Access Chapter Two
Lesson 2: Editing, Viewing, and Printing Worksheets
Introduction to C Programming
Upload/Download Inventory
Upload/Download Inventory
An Introduction to Microsoft Word
IENG 212 LAB 1 Research Assıstant: Kehınde Adewale ADESINA
Presentation transcript:

LINGO TUTORIAL

WHAT IS LINGO : LINGO is a software tool designed to efficiently build and solve linear, nonlinear, and integer optimization models. CREATING A LINGO MODEL: An optimization model consists of three parts: Objective function: This is single formula that describes exactly what the model should optimize. Variables: These are the quantities that can be changed to produce the optimal value of the objective function. Constraints: These are formulas that define the limits on the values of the variables.

PRIMARY RULES Comments in the model are initiated with an exclamation point (!) and appear in green text. LINGO specified operators and functions appear in blue text. All other text is shown in black. Each LINGO statement must end in a semi-colon (;). Variable names are not case-sensitive and must begin with a letter (A-Z). Other characters in the variable name may be letters, numbers (0-9), or the underscore character (_). Variable names can be up to 32 characters in length.

LINGO OPERATORS: Exponentiation: ^ Multiplication: * Division: / Addition: + Subtraction: - The relational operators are used when defining the constraints for a model. They are as follows: The expression is equal: = The left side of the expression is less than or equal to the right side: <= The left side of the expression is greater than or equal to the right side: >=

COMMON LINGO ERROR MESSAGES: Unable to open file: filename Retype filename correctly Invalid input: A syntax error has occurred Check the line LINGO suggests for missing semi-colons, etc. Unmatched parenthesis Close the parenthesis set No relational operator found Make sure all constraints contain =, <=, >=

Unterminated condition Put a colon at the end of each conditional statement in a set operator The model’s dimensions exceed the capacity of this version No feasible solution found Check model’s consistency and constraints Unbounded solution Add constraints Unrecognized variable name: variable name Check spelling

A SIMPLE EXAMPLE: MAX = 3*x1+x2; x1 <= 4; x1+x2 <= 7; Once the LINGO model has been entered into the LINGO Model window, the model can be solved by clicking the Solve button on the toolbar, by selecting LINGO Solve from the menus.

If no errors are found, then the LINGO Solver Status window appears.

REPORTS: LINGO will notify you of any errors it has encountered REPORTS: LINGO will notify you of any errors it has encountered. The best way to get information about these errors is to consult the Error Messages section in the software’s proprietary tutorial.

This window shows the values of each variable that will produce the optimal value of the objective function. The reduced cost for any variable that is included in the optimal solution is always zero. For variables not included in the optimal solution, the reduced cost shows how much the value of the objective function would decrease (for a MAX problem) or increase (for a MIN problem) if one unit of that variable were to be included in the solution. For example, if the reduced cost of a certain variable was 5, then the optimal value of the MAX problem would decrease by 5 units if 1 unit of the variable were to be added.

A SIMPLE EXAMPLE: A cookie store can produce drop cookies and decorated cookies , which sell for $1 and $1.50 apiece ,respectively. The two bakers each work 8 hours per day and can produce up to 400 drop cookies and 200 decorated cookies. It takes 1 minute to produce each drop cookie and 3 minutes to produce each decorated cookie. What combination of cookies produced will maximize the baker's profit?

SOLUTION: Model: 1/60*Drop + 3/60*Deco <=16; Drop>=0; MAX = 1*Drop + 1.5*Deco; Drop <= 400; Deco <= 200; 1/60*Drop + 3/60*Deco <=16; Drop>=0; Deco>=0;

1. File Menu Commands: New Opens a new model window. Open Opens an existing model previously saved to disk. Save Saves the contents of the current window to disk. Save As Saves the contents of the current window to a new name. Close Closes the current window. Print Prints the contents of the current window. Print Setup Configures your printer. Print Preview Displays the contents of the current window as it would appear if printed Log Output Opens a log file for logging output to the command window. Take Commands Runs a command script contained in a file. Export File Exports a model in MPS or MPI file format. License Prompts you for a new license password to upgrade your system. Database User Info Prompts you for a user id and password for database access via the @ODBC() function. Exit Exits LINGO.

2. Edit Menu Commands: Undo Undoes the last change. Redo Redoes the last undo command. Cut Cuts the current selection from the document. Copy Copies the current selection to the clipboard. Paste Pastes the contents of the clipboard into the document. Paste Special Pastes the contents of the clipboard into the document, allowing choice as to how the object is pasted. Select All Selects the entire contents of the current window. Find Searches the document for the occurrence of a specified text string. Find Next Repeats the find operation for the last string specified. Replace Replaces a specified text string with a new string. Go To Line Moves the cursor to a specified line number. Match Parenthesis Finds the parenthesis that closes a selected parenthesis. Paste Function Pastes a template of a selected LINGO @function. Select Font Specifies a font for a selected block of text. Insert New Object Embeds an OLE (Object Linking and Embedding) object into the document. Links Controls the links to external objects in your document. Object Properties Specifies the properties of a selected, embedded object.

3. LINGO Menu Commands: Solve Solves the model in the current window. Solution Generates a solution report window for the current model. Range Generates a range analysis report for the current window. Options Sets system options. Generate Generates the algebraic representation for the current model. Picture Displays a graphical picture of a model in matrix form. Debug Tracks down formulation errors in infeasible and unbounded linear programs. Model Statistics Displays a brief report regarding the technical detail of a model. Look Generates a formulation report for the current window.