Detailed Description
Simple Gas Transportation Model.
This example shows how to setup nonlinear constraints with signpower-expression when using SCIP as callable library. The example implements a model for the distribution of gas through a network of pipelines, which is formulated as a cost minimization subject to nonlinear flow-pressure relations, material balances, and pressure bounds. The Belgian gas network is used as an example.
The model is taken from the GAMS model library: https://www.gams.com/latest/gamslib_ml/libhtml/gamslib_gastrans.html
Original model source:
- D. de Wolf and Y. Smeers
The Gas Transmission Problem Solved by and Extension of the Simplex Algorithm
Management Science 46, 11 (2000), 1454-1465
Definition in file gastrans.c.
Go to the source code of this file.
Data Structures | |
struct | NodeData |
struct | ArcData |
Macros | |
#define | nnodes 20 |
#define | narcs 24 |
#define | infinity 1e+20 |
Typedefs | |
typedef struct NodeData | NodeData |
typedef struct ArcData | ArcData |
Functions | |
static SCIP_RETCODE | setupProblem (SCIP *scip) |
static SCIP_RETCODE | runGastrans (void) |
int | main (int argc, char **argv) |
Variables | |
static const NodeData | nodedata [] |
static const ArcData | arcdata [] |
static const SCIP_Real | gastemp = 281.15 |
static const SCIP_Real | rugosity = 0.05 |
static const SCIP_Real | density = 0.616 |
static const SCIP_Real | compressibility = 0.8 |
Macro Definition Documentation
◆ nnodes
#define nnodes 20 |
number of nodes (towns)
Definition at line 74 of file gastrans.c.
◆ narcs
#define narcs 24 |
number of arcs
Definition at line 77 of file gastrans.c.
◆ infinity
#define infinity 1e+20 |
value we use to represent infinity
Definition at line 80 of file gastrans.c.
Typedef Documentation
◆ NodeData
◆ ArcData
Function Documentation
◆ setupProblem()
|
static |
sets up problem
- Parameters
-
scip SCIP data structure
Definition at line 154 of file gastrans.c.
References ArcData::active, active, arcdata, compressibility, density, gastemp, infinity, ArcData::length, narcs, nnodes, ArcData::node1, ArcData::node2, nodedata, NULL, rugosity, SCIP_CALL, SCIP_MAXSTRLEN, SCIP_OKAY, SCIP_Real, SCIP_VARTYPE_CONTINUOUS, SCIPaddCoefLinear(), SCIPaddCons(), SCIPaddVar(), SCIPcreateConsBasicLinear(), SCIPcreateConsBasicNonlinear(), SCIPcreateExprSignpower(), SCIPcreateExprSum(), SCIPcreateExprVar(), SCIPcreateProbBasic(), SCIPcreateVarBasic(), SCIPinfinity(), SCIPreleaseCons(), SCIPreleaseExpr(), SCIPreleaseVar(), and SCIPsnprintf().
Referenced by runGastrans().
◆ runGastrans()
|
static |
runs gas transportation example
Definition at line 331 of file gastrans.c.
References FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIPcreate(), SCIPfree(), SCIPincludeDefaultPlugins(), SCIPinfoMessage(), SCIPpresolve(), SCIPprintOrigProblem(), SCIPsolve(), and setupProblem().
Referenced by main().
◆ main()
int main | ( | int | argc, |
char ** | argv | ||
) |
main method starting SCIP
- Parameters
-
argc number of arguments from the shell argv array of shell arguments
Definition at line 374 of file gastrans.c.
References runGastrans(), SCIP_OKAY, and SCIPprintError().
Variable Documentation
◆ nodedata
|
static |
data of nodes
Definition at line 83 of file gastrans.c.
Referenced by addBranchingComplementaritiesSOS1(), analyzeConflictOverload(), checkConComponentsVarbound(), checkOverloadViaThetaTree(), collectThetaSubtree(), computeEnergyContribution(), deleteLambdaLeaf(), detectVarboundSOS1(), findResponsibleLambdaLeafTraceEnergy(), findResponsibleLambdaLeafTraceEnvelop(), freeConflictgraph(), freeImplGraphSOS1(), generateBoundInequalityFromSOS1Nodes(), getBoundConsFromVertices(), inferboundsEdgeFinding(), initConflictgraph(), initImplGraphSOS1(), insertThetanode(), moveNodeToLambda(), nodeGetSolvalVarboundLbSOS1(), nodeGetSolvalVarboundUbSOS1(), passConComponentVarbound(), propVariableNonzero(), SCIPnodeGetVarSOS1(), sepaImplBoundCutsSOS1(), setupProblem(), traceLambdaEnergy(), traceLambdaEnvelop(), traceThetaEnvelop(), updateEnvelope(), and updateKeyOnTrace().
◆ arcdata
|
static |
data of arcs
Definition at line 109 of file gastrans.c.
Referenced by setupProblem().
◆ gastemp
|
static |
◆ rugosity
|
static |
◆ density
|
static |
density of gas relative to air
Definition at line 145 of file gastrans.c.
Referenced by scoring(), setupProblem(), and tcliquegraphConstructCliqueTable().
◆ compressibility
|
static |