Changes between Version 9 and Version 10 of SCHEDULE_WBS_DEPENDENCIES_R0


Ignore:
Timestamp:
09/19/08 17:25:36 (17 years ago)
Author:
peko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SCHEDULE_WBS_DEPENDENCIES_R0

    v9 v10  
    1 Analysis:  
     1= Analysis =  
    22 
     3 == Overview ==  
    34 * Verify the existing dependencies in work breakdown structure document(make automatic script to check if the revisions are correct in the related tasks).[[BR]] 
    45 * Add more dependencies for base tasks.[[BR]] 
    56 * Check manually if the created schedule is possible(this can be done by the generated exports or task juggler calendars).[[BR]] 
     7  
     8 == Task Requirements == 
     9 * Dependencies should be clear the dependencies between tasks. 
     10 * It should be clear throughout the project which task from two tasks is first. 
    611 
    7 Design: 
     12 == Task Result == 
     13 * Dependencies between tasks. 
     14 
     15 == How to demo == 
     16 * open the file sophie2-wbs.py. 
     17 * look though the depends() functions where it exists. 
     18 
     19= Design = 
    820 * Dependencies are stored in resources ODS in a column called depends. 
     21 * Since all Tasks have unique names, the name of a task is enough to determine the dependencies. 
     22 * After dependencies are put in the ODS document, all the document should be exported in the WBS document and task juggler calendars should be generated to check the consistency of the dependencies. 
     23 * It is not necessary to explicitly say that A depends on C when A depends on B and B depends on C. 
    924 * "Depends" means that a task cannot be completed prior the task it depends on!!! 
    10  * It is not necessary to explicitly say that A depends on C when A depends on B and B depends on C. 
    1125 * In most of the cases every subtask of a task depends on ....COMMONS subtask of the same task. 
    1226 * Task may depend on task with subtasks or only on a set of subtasks of a task. 
    13  * Since all Tasks have unique names, the name of a task is enough to determine the dependencies. 
    14  * After dependencies are put in the ODS document, all the document should be exported in the WBS document and task juggler calendars should be generated to check the consistency of the dependencies. 
    1527 
    16 Implemeting:  
     28= Implemeting = 
    1729 * Filling the table called resources.ors - depends column. 
    1830 * Extracting the dependencies in the sophie2-wbs.py file (function depends()). 
    1931 
    20 Testing: 
     32= Testing = 
    2133 * After we struggled with the Python Syntax, Milo decided to help and the result was the checkOrder() function. 
    2234 * checkOrder() function checks whether dependencies are correctly added. Result: