3.1.5 Where to Specify Load Factors

 
class dev1(Resource):
    efficiency = 2.0
    max_load = 1.9 

def Acso():
    resource = dev1
    start = "2005-1-16"
    load = WeeklyMax("35H") 

    def Database():
        effort = "1d"
        load = 1.0
        resource = dev1(load=0.4)
        
    def Gui():
        effort = "3d"
        efficiency = 1.5

acso = BalancedProject(Acso)
 \includegraphics[width=\pwidth]{locations}
You can set every load factor individually at each resource assignement and task. Notice that the task Database has a task load of 1.0 and a resource load of 0.4. The allocation load calculates as $load = \min({\tt task.load}, {\tt resource.load})$.