efficiency <value>

efficiency <value>
Description

The efficiency of a resource can be used for two purposes. First you can use it as a crude way to model a team. A team of 5 people should have an efficiency of 5.0. Keep in mind that you cannot track the member of the team individually if you use this feature. The other use is to model performance variations between your resources.

All resources that do not contribute effort to the task, should have an efficiency of 0.0.

AttributesNameTypeDescription
valueREAL 
Contextresource,
InheritableYesScenario Spec.No
See alsoload

project prj "Resource Efficiency Example" "1.0" 2005-07-21 - 2005-07-22

# A team of 5 people. They can only be assigned en block. Either all
# or nobody works.
resource tuxies "Tuxies" { efficiency 5.0 } 

# A hard-working guy
resource tux1 "Tux 1" { efficiency 1.2 }

# And a lazy one
resource tux2 "Tux 2" { efficiency 0.9 }

# And a thing that cannot do any work
resource confRoom "Conference Room" { efficiency 0 }

task t "An important date" {
  start 2005-07-21
}