https://github.com/steinfletcher/pert-calc
A command line utility for quick 'n dirty PERT estimates
https://github.com/steinfletcher/pert-calc
Last synced: about 1 year ago
JSON representation
A command line utility for quick 'n dirty PERT estimates
- Host: GitHub
- URL: https://github.com/steinfletcher/pert-calc
- Owner: steinfletcher
- License: mit
- Created: 2014-05-18T21:07:46.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T09:24:27.000Z (about 9 years ago)
- Last Synced: 2025-02-02T10:37:24.848Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pert-calc
=========
A command line utility for quick 'n dirty PERT estimates. Depends on python 2
Usage:
pert --tasks="1,2,4 5,7,11 7,11,22"
which calculates the total duration (including risk) of 3 tasks
task1: optimistic: 1, nominal: 2, pessimistic: 4
task2: optimistic: 5, nominal: 7, pessimistic: 11
task3: optimistic: 7, nominal: 11, pessimistic: 22
and produces the following output
[1: (O:1.0), (N:2.0), (P:4.0)] | duration: 2.17, risk: 0.5
[2: (O:5.0), (N:7.0), (P:11.0)] | duration: 7.33, risk: 1.0
[3: (O:7.0), (N:11.0), (P:22.0)] | duration: 12.17, risk: 2.5
Final estimate: 24.41