General Algebraic Modeling System

General Algebraic Modeling System
GAMS
Entwickler GAMS Development Corporation
Aktuelle Version 23.7.3
(23. August 2011)
Betriebssystem Plattformunabhängig
Kategorie Algebraische Modellierungssprache
Lizenz Proprietär
GAMS USA
GAMS Germany

Das General Algebraic Modeling System ist eine algebraische Modellierungssprache für mathematische Optimierungsprobleme, deren Ursprünge in einem Forschungsprojekt der Weltbank liegen. Ab 1987 wird das System durch die GAMS Development Corp., USA weiterentwickelt und in Europa durch die GAMS Software GmbH vertrieben.

Neben großen linearen bzw. ganzzahligen Optimierungsproblemen lassen sich mit algebraischen Modellierungssprachen wie GAMS oder AMPL auch andere Modellierungssprobleme, wie etwa quadratische, nichtlineare, gemischtganzzahlig nichtlineare, quadratische, stochastische oder globale Optimierungsprobleme grundsätzlich unabhängig von den verwendeten Algorithmen effizient formulieren und lösen. Die grundsätzliche Trennung der Ebenen

  • Problemrepräsentation und -lösung,
  • Modellierungsebene und Benutzeroberfläche,
  • Modellformulierung und Daten,
  • Modellformulierung und Betriebssystem,

sowie umfangreiche Modellbibliotheken stellen weitere Elemente von algebraischen Modellierungssprachen dar.

Die Einsatzschwerpunkte des GAMS Systems liegen in den klassischen Operations Research-Bereichen. Daneben wird das System auch häufig für makroökonomische Fragestellungen etwa im Rahmen von Gleichgewichtsmodellen verwendet.

Inhaltsverzeichnis

Ein Modellbeispiel

Transportmodell von George Dantzig. Dieses Modell ist Teil der GAMS Modellbibliothek. In diesem Problem wird der Transportplan mit den niedrigsten Gesamtkosten gesucht, der sowohl die Marktbedingungen der Abnehmer also auch die der Produzenten erfüllt.

Dantzig, G B, Chapter 3.3. In Linear Programming and Extensions. Princeton University Press, Princeton, New Jersey, 1963.

Eine detaillierte (englischsprachige) Beschreibung der Formulierung findet man hier.

 Sets
      i   canning plants   / seattle, san-diego /
      j   markets          / new-york, chicago, topeka / ;
Parameters
a(i) capacity of plant i in cases / seattle 350 san-diego 600 /
b(j) demand at market j in cases / new-york 325 chicago 300 topeka 275 / ;
Table d(i,j) distance in thousands of miles new-york chicago topeka seattle 2.5 1.7 1.8 san-diego 2.5 1.8 1.4 ;
Scalar f freight in dollars per case per thousand miles /90/ ;
Parameter c(i,j) transport cost in thousands of dollars per case ;
c(i,j) = f * d(i,j) / 1000 ;
Variables
x(i,j) shipment quantities in cases z total transportation costs in thousands of dollars ;
Positive Variable x ;
Equations
cost define objective function supply(i) observe supply limit at plant i demand(j) satisfy demand at market j ;
cost .. z =e= sum((i,j), c(i,j)*x(i,j)) ;
supply(i) .. sum(j, x(i,j)) =l= a(i) ;
demand(j) .. sum(i, x(i,j)) =g= b(j) ;
Model transport /all/ ;
Solve transport using lp minimizing z ;
Display x.l, x.m ;

Literatur

Siehe auch

Weblinks


Wikimedia Foundation.

Игры ⚽ Поможем написать курсовую

Schlagen Sie auch in anderen Wörterbüchern nach:

  • General Algebraic Modeling System — Pour les articles homonymes, voir GAMS. General Algebraic Modeling System (GAMS) est un logiciel de modélisation. GAMS a été le premier langage de modélisation algébrique (Algebraic modeling language ou AML) et est formellement similaire aux… …   Wikipédia en Français

  • General Algebraic Modeling System — Infobox Software name = GAMS developer = [http://www.gams.com GAMS Development Corporation] latest release version = 22.8.1 latest release date = August 1, 2008 platform = Cross platform status = Active license = Proprietary genre = Algebraic… …   Wikipedia

  • General algebraic modeling system — Pour les articles homonymes, voir GAMS. General Algebraic Modeling System (GAMS) est un logiciel de modélisation mathématique. GAMS a été le premier langage de modélisation algébrique (Algebraic modeling language ou AML) et est formellement… …   Wikipédia en Français

  • Algebraic modeling language — General algebraic modeling system Pour les articles homonymes, voir GAMS. General Algebraic Modeling System (GAMS) est un logiciel de modélisation. GAMS a été le premier langage de modélisation algébrique (Algebraic modeling language ou AML) et… …   Wikipédia en Français

  • Algebraic modeling language — Algebraic Modeling Languages (AML) are high level programming languages for describing and solving high complexity problems for large scale mathematical computation (i.e. large scale optimization type problems). One particular advantage of AMLs… …   Wikipedia

  • Modeling language — A modeling language is any artificial language that can be used to express information or knowledge or systems in a structure that is defined by a consistent set of rules. The rules are used for interpretation of the meaning of components in the… …   Wikipedia

  • Algebraic geometry — This Togliatti surface is an algebraic surface of degree five. Algebraic geometry is a branch of mathematics which combines techniques of abstract algebra, especially commutative algebra, with the language and the problems of geometry. It… …   Wikipedia

  • Michigan Terminal System — (MTS) The MTS welcome screen as seen through a 3270 terminal emulator. Company / developer University of Michigan and 7 other universities in the US, Canada, and the UK …   Wikipedia

  • Hybrid system — A hybrid system is a dynamic system that exhibits both continuous and discrete dynamic behavior a system that can both flow (described by a differential equation) and jump (described by a difference equation). Often, the term hybrid dynamic… …   Wikipedia

  • Solid modeling — The geometry in solid modeling is fully described in 3‑D space; objects can be viewed from any angle. Modeled and ray traced in Cobalt Solid modeling (or modelling) is a consistent set of principles for mathematical and computer modeling of three …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”