data/logs/dflow_constraints.cl
author Eugen Sawin <sawine@me73.com>
Fri, 25 Mar 2011 15:57:06 +0100
changeset 6 189c28168c97
permissions -rw-r--r--
Corrections.
     1 ######## GCAA DFLOW CONSTRAINTS #######
     2 
     3 #### LALDO flow point ####
     4 pattern Laldo(
     5 	(ADEP is "OMDB" or ADEP is "OMSJ" or ADEP is "OMRK" or ADEP is "OMDM")
     6 	and COPX is "LALDO" or COPX is "GOMTA" and ADES is not "OOMS")
     7 
     8 constraint Laldo5(
     9         TIME_SEP at ["LALDO", "GOMTA"] is 3 min from 0000 until 0100
    10         and TIME_SEP at ["LALDO", "GOMTA"] is 3 min from 1820 until 2030
    11         and TIME_SEP at ["LALDO", "GOMTA"] is 3 min from 2250 until 2359)
    12 
    13 flowpoint LALDO(Laldo: Laldo5)
    14 
    15 #### LABTAR flow point ####
    16 pattern LabTar(
    17 	(ADEP is "OMDB" or ADEP is "OMSJ" or ADEP is "OMRK" or ADEP is "OMAA"
    18 		or ADEP is "OMAD" or ADEP is "OMAL" or ADEP is "OMDM")
    19 	and (COPX is "LABRI" or COPX is "TARDI")
    20 	and (ADES is not "OOMS"))
    21 constraint LabTar3(
    22 	TIME_SEP at ["LABRI", "TARDI"] is 5 min from 0620 until 0730
    23 	and TIME_SEP at ["LABRI", "TARDI"] is 5 min from 1820 until 2000
    24 	and TIME_SEP at ["LABRI", "TARDI"] is 3 min from 1951 until 2130
    25 	and TIME_SEP at ["LABRI", "TARDI"] is 5 min from 2121 until 2359)
    26 
    27 
    28 flowpoint LABTAR(LabTar: LabTar3)
    29 
    30 #### COPPI flow point ####
    31 pattern Coppi("COPPI" in ROUTE)
    32 
    33 constraint Coppi5(TIME_SEP at "COPPI" is 5 min at FL [240, 260, 300, 320, 340, 360, 380, 400])
    34 
    35 flowpoint COPPI(Coppi: Coppi5)
    36 
    37 
    38 
    39 
    40