Jump to content

Hanging chain problem: Difference between revisions

From mintOC
No edit summary
 
(One intermediate revision by one other user not shown)
Line 25: Line 25:
  & x_1(t_f) &=& b, \\
  & x_1(t_f) &=& b, \\
  & x_3(t_f) &=& Lp, \\
  & x_3(t_f) &=& Lp, \\
  & x(t) &\in& [0,10], \\
  & x_i(t) &\in& [0,10], \quad i=1,2,3, \\
  & u(t) &\in&  [-10,20].
  & u(t) &\in&  [-10,20].
\end{array}  
\end{array}  
Line 48: Line 48:


* [[:Category:AMPL/TACO | AMPL/TACO code]] at [[Hanging chain problem (TACO)]]
* [[:Category:AMPL/TACO | AMPL/TACO code]] at [[Hanging chain problem (TACO)]]
 
* [[:Category:Gekko | GEKKO Python code]] at [[Hanging chain problem (GEKKO)]]


<!--List of all categories this page is part of. List characterization of solution behavior, model properties, ore presence of implementation details (e.g., AMPL for AMPL model) here -->
<!--List of all categories this page is part of. List characterization of solution behavior, model properties, ore presence of implementation details (e.g., AMPL for AMPL model) here -->

Latest revision as of 16:04, 22 February 2026

Hanging chain problem
State dimension: 1
Differential states: 3
Continuous control functions: 1
Path constraints: 4
Interior point equalities: 5

The Hanging chain problem is concerned with finding a chain (of uniform density) of length L suspendend between two points a,b with minimal potential energy. (Problem taken from the COPS library)


Mathematical formulation

The problem is given by

minx,ux2(tf)s.t.x˙1=u,x˙2=x1(1+u2)1/2,x˙3=(1+u2)1/2,x(t0)=(a,0,0)T,x1(tf)=b,x3(tf)=Lp,xi(t)[0,10],i=1,2,3,u(t)[10,20].

Parameters

In this model the parameters used are

[t0,tf]=[0,1],(a,b)=(1,3),Lp=4.

Source Code

Model descriptions are available in