-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtime_long_covid.squiggle
More file actions
47 lines (40 loc) · 1.29 KB
/
time_long_covid.squiggle
File metadata and controls
47 lines (40 loc) · 1.29 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
// Common parameters
share_hours_aron = normal(0.65, 0.1)
wage_aron = 40
wage_joel = 60
overhead_percentage = 0.2
wage_average = (share_hours_aron * wage_aron + (1 - share_hours_aron) * wage_joel) * (1 + overhead_percentage)
funding_manifund = 8k
// Sunk time
time_understand_project = 7
// Partially sunk time
time_prevalence_and_duration = (20 to 25) * 2
time_symptomatology = (1 to 5) * 2
// Upcoming time
time_case_projections = 3 to 20
time_interaction_effects = 10 to 50
time_add_uncertainty = 10 to 30
time_internal_discussion = 10 to 50
time_internal_writeup = 10 to 30
time_external_discussion = 5 to 20
time_external_writeup = 20 to 50
// Inside-view and planning-fallacy-adjusted total time
time_total_insideview = (
time_understand_project +
time_prevalence_and_duration +
time_symptomatology +
time_case_projections +
time_interaction_effects +
time_add_uncertainty +
time_internal_discussion +
time_internal_writeup +
time_external_discussion +
time_external_writeup
)
adjustment_planningfallacy = 1.5 to 2.5
time_total_planningfallacy = time_total_insideview * adjustment_planningfallacy
// Time funded and unfunded
time_funded = funding_manifund / wage_average
time_unfunded = time_total_planningfallacy - time_funded
// Funding gap
funding_gap = time_unfunded * wage_average