-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
65 lines (65 loc) · 1.79 KB
/
data.json
File metadata and controls
65 lines (65 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[
{
"id": "evm-01",
"term": "Planned Value (PV)",
"definition": "What you planned to do (budgeted work scheduled)."
},
{
"id": "evm-02",
"term": "Earned Value (EV)",
"definition": "What you actually got done (budgeted work performed)."
},
{
"id": "evm-03",
"term": "Actual Cost (AC)",
"definition": "What it cost you to do it (actual work performed)."
},
{
"id": "evm-04",
"term": "Cost Performance Index (CPI)",
"definition": "EV ÷ AC",
"mnemonic": "\"Am I getting value for my Actual Cash?\" (If > 1 → under budget)"
},
{
"id": "evm-05",
"term": "Schedule Performance Index (SPI)",
"definition": "EV ÷ PV",
"mnemonic": "\"Am I earning value at the rate I Planned?\" (If > 1 → ahead of schedule)"
},
{
"id": "evm-06",
"term": "Cost Variance (CV)",
"definition": "EV – AC",
"mnemonic": "\"Value I earned vs. what it Actually Cost.\""
},
{
"id": "evm-07",
"term": "Schedule Variance (SV)",
"definition": "EV – PV",
"mnemonic": "\"Value I earned vs. what I Planned to earn.\""
},
{
"id": "evm-08",
"term": "Estimate At Completion (EAC)",
"definition": "BAC ÷ CPI",
"mnemonic": "\"If I keep spending like this, what will the Estimate At Completion be?\""
},
{
"id": "evm-09",
"term": "Estimate To Complete (ETC)",
"definition": "EAC – AC",
"mnemonic": "\"How much Effort To Continue?\""
},
{
"id": "evm-10",
"term": "Schedule Check",
"definition": "EV compared to PV",
"mnemonic": "An indicator of schedule performance."
},
{
"id": "evm-11",
"term": "Cost Check",
"definition": "EV compared to AC",
"mnemonic": "An indicator of cost performance."
}
]