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.
- Timestamp:
-
Aug 12, 2010, 5:11:02 PM (15 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v13
|
v14
|
|
| 286 | 286 | ]]); |
| 287 | 287 | }}} |
| 288 | | |
| 289 | | == Notas == |
| 290 | | |
| 291 | | === Intervalos en los submodelos === |
| 292 | | |
| 293 | | Hay tres intervalos en los submodelos: |
| 294 | | |
| 295 | | * El intervalo en el que está definida la variable del output: |
| 296 | | '''En 0.6''' |
| 297 | | {{{ |
| 298 | | Date vBegin = submodelo::GetOutput(?)::GetBegin(?); |
| 299 | | Date vEnd = submodelo::GetOutput(?)::GetEnd(?); |
| 300 | | /* Nótese que: |
| 301 | | vBegin == submodelo::GetOutput(?)::GetVariable(?)::GetBegin(?); |
| 302 | | vEnd == submodelo::GetOutput(?)::GetVariable(?)::GetEnd(?); |
| 303 | | */ |
| 304 | | }}} |
| 305 | | '''En 0.5''' |
| 306 | | {{{ |
| 307 | | Date vBegin = output::GetBegin(?); |
| 308 | | Date 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 | | {{{ |
| 314 | | Date sBegin = submodelo::GetBegin(?); |
| 315 | | Date 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 | | {{{ |
| 321 | | Date sBegin = output::GetModelBegin(?); |
| 322 | | Date 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 | | {{{ |
| 330 | | Date eBegin = submodelo::GetFirst(?); |
| 331 | | Date 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 | | {{{ |
| 337 | | Date eBegin = output::GetFirst(?); |
| 338 | | Date eEnd = output::GetLast(?); |
| 339 | | }}} |
| 340 | | |
| 341 | | |
| 342 | | |
| 343 | | |
| 344 | | |
| 345 | | |
| 346 | | |