3.5.2 Setting now

 
class dev1(Resource): pass

def Acso():
    resource = dev1
    start = "2005-1-16"
    now = "2005-1-19 10:00"

    def Database():
        effort = "1d"

    def Gui():
        effort = "2d"

    def Backend():
        effort = "1.5d"

acso = BalancedProject(Acso)
 \includegraphics[width=\pwidth]{trnow}
Name Effort Complete Demand Complete Todo Done Todo + Done
Database 1d 100 100 0d 1d 1d
Gui 2d 62 62 0d 6H 1d 2H 2d
Backend 1d 4H 0 0 1d 4H 0d 1d 4H
After setting the now attribute complete will be set to the demand completion. The demand completion is calculated as: $\frac{\tt done}{\tt effort}$. The resource allocation data is the computation base for the attributes todo and done.