close Warning: Can't synchronize with repository "(default)" (/var/svn/mms does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 12 and Version 13 of upgrade/models


Ignore:
Timestamp:
Aug 12, 2010, 3:50:11 PM (14 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • upgrade/models

    v12 v13  
    287287}}}
    288288
    289 
    290 
     289== Notas ==
     290
     291=== Intervalos en los submodelos ===
     292
     293Hay tres intervalos en los submodelos:
     294
     295 * El intervalo en el que está definida la variable del output:
     296'''En 0.6'''
     297   {{{
     298Date vBegin = submodelo::GetOutput(?)::GetBegin(?);
     299Date vEnd = submodelo::GetOutput(?)::GetEnd(?);
     300/* Nótese que:
     301vBegin == submodelo::GetOutput(?)::GetVariable(?)::GetBegin(?);
     302vEnd == submodelo::GetOutput(?)::GetVariable(?)::GetEnd(?);
     303*/
     304}}}
     305'''En 0.5'''
     306   {{{
     307Date vBegin = output::GetBegin(?);
     308Date vEnd = output::GetEnd(?);
     309}}}
     310
     311 * El intervalo en el que se quiere acotar el output para su estimación:
     312'''En 0.6'''
     313   {{{
     314Date sBegin = submodelo::GetBegin(?);
     315Date sEnd = submodelo::GetEnd(?);
     316// Nótese que en caso de no definirse en la creación, estos serían
     317// TheBegin y TheEnd
     318}}}
     319'''En 0.5'''
     320   {{{
     321Date sBegin = output::GetModelBegin(?);
     322Date sEnd = output::GetModelEnd(?);
     323}}}
     324
     325 * El intervalo en el que se estimará el output, obtenido acotando el
     326 intervalo de la variable [vBegin,vEnd] con el intervalo del submodelo
     327 [sBegin,sEnd]:
     328'''En 0.6'''
     329   {{{
     330Date eBegin = submodelo::GetFirst(?);
     331Date eEnd = submodelo::GetLast(?);
     332// Nótese que en caso de no definirse intervalo del submodelo coincidirán
     333// con el intervalor de la variable
     334}}}
     335'''En 0.5'''
     336   {{{
     337Date eBegin = output::GetFirst(?);
     338Date eEnd = output::GetLast(?);
     339}}}
     340
     341
     342
     343
     344
     345
     346