# NLP written by GAMS Convert at 02/17/22 17:19:08
#
# Equation counts
#     Total        E        G        L        N        X        C        B
#         0        0        0        0        0        0        0        0
#
# Variable counts
#                  x        b        i      s1s      s2s       sc       si
#     Total     cont   binary  integer     sos1     sos2    scont     sint
#         1        1        0        0        0        0        0        0
# FX      0
#
# Nonzero counts
#     Total    const       NL
#         0        0        0
#
# Reformulation has removed 1 variable and 1 equation

from pyomo.environ import *

model = m = ConcreteModel()

m.x1 = Var(within=Reals, bounds=(0,6.28318), initialize=0)

m.obj = Objective(sense=minimize, expr= 588600 / (-4.21478541710781 * cos(
    -2.09439333333333 + m.x1) + 10.8095222429746)**6 - 1079.1 / (-
    4.21478541710781 * cos(-2.09439333333333 + m.x1) + 10.8095222429746)**3 +
    600800 / (-4.21478541710781 * cos(m.x1) + 10.8095222429746)**6 - 1071.5 / (
    -4.21478541710781 * cos(m.x1) + 10.8095222429746)**3 + 481300 / (-
    4.21478541710781 * cos(2.09439333333333 + m.x1) + 10.8095222429746)**6 -
    1064.6 / (-4.21478541710781 * cos(2.09439333333333 + m.x1) +
    10.8095222429746)**3)

