aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author wvpm <24685035+wvpm@users.noreply.github.com>2024-08-31 13:51:16 +0200
committer wvpm <24685035+wvpm@users.noreply.github.com>2024-08-31 13:51:16 +0200
commitf55db54739db1141e7afb604f2eab5bd5da43111 (patch)
treee74b68a3df776e9f67a5db5e1c6f9d00a5f518e2
parent74cd5d9c4236aef435dd64ffd8f10a7f98533e42 (diff)
Prefixed workers & owners with n_
-rw-r--r--docs/simulation/calculations.yaml14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/simulation/calculations.yaml b/docs/simulation/calculations.yaml
index 9f7a747..b87e5f2 100644
--- a/docs/simulation/calculations.yaml
+++ b/docs/simulation/calculations.yaml
@@ -147,11 +147,11 @@ POPs:
RGO wages:
Owners:
if minimum worker wages > normal worker wage:
- formula: (RGO income - total worker income) * owner POP size / owners * (1 - effective tax)
+ formula: (RGO income - total worker income) * owner POP size / n_owners * (1 - effective tax)
else:
- formula: RGO income * min(0.5, 2 * owners / workers) * owner POP size / owners * (1 - effective tax)
- owners: total size of owner POPs in state
- workers: number of employed workers in RGO
+ formula: RGO income * min(0.5, 2 * n_owners / n_workers) * owner POP size / n_owners * (1 - effective tax)
+ n_owners: total size of owner POPs in state
+ n_workers: number of employed workers in RGO
min(0.5: Hardcoded maximum of half the RGO income.
2*: Hardcoded value.
Workers:
@@ -160,8 +160,8 @@ POPs:
if minimum wage > normal wage:
formula: min(minimum wage, RGO income * employed workers in POP / total non-slave employed workers) * (1 - effective tax)
else:
- formula: RGO income * max(0.5, 1 - 2 * owners / workers) * employed workers in POP / total non-slave employed workers * (1 - effective tax)
- owners: total size of owner POPs in state
- workers: number of employed workers in RGO
+ formula: RGO income * max(0.5, 1 - 2 * n_owners / n_workers) * employed workers in POP / total non-slave employed workers * (1 - effective tax)
+ n_owners: total size of owner POPs in state
+ n_workers: number of employed workers in RGO
max(0.5: Hardcoded minimum of half the RGO income.
2*: Hardcoded value. \ No newline at end of file