Skip to content

Commit 3b1aa99

Browse files
MaxGhenisclaude
andcommitted
Add student loan interest rate parameters and variable
Add parameters documenting student loan interest rate rules: - Plan 1: Lower of RPI or base rate + 1% - Plan 2: Income-contingent (RPI to RPI+3% based on income thresholds) - Plan 4: Same as Plan 1 - Plan 5: RPI only (no income-based component) - Postgraduate: RPI + 3% Add student_loan_interest_rate variable that calculates the applicable rate based on plan type and income, with Plan 2 tapering between the lower and upper income thresholds. Fixes #1417 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 394bb90 commit 3b1aa99

13 files changed

Lines changed: 368 additions & 1 deletion

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
description: Student loan interest rates
2+
label: Interest rates
3+
documentation: |
4+
Interest rates applied to student loan balances vary by plan type.
5+
Plan 2 has income-contingent rates that vary between RPI and RPI+3%.
6+
Plan 5 and Plans 1/4 have simpler fixed rate structures.
7+
8+
Note: These parameters document the policy rules. Interest accrual
9+
is not currently modelled in the microsimulation as it requires
10+
tracking loan balances over time.
11+
12+
Reference: https://www.gov.uk/repaying-your-student-loan/interest
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
description: Plan 1 student loan interest rate
2+
metadata:
3+
label: Plan 1 interest rate
4+
unit: /1
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
documentation: |
10+
Interest rate for Plan 1 student loans.
11+
Set at the lower of RPI or Bank of England base rate + 1%.
12+
In practice, this is typically RPI when RPI is low.
13+
14+
values:
15+
2020-09-01: 0.012 # 1.2%
16+
2021-09-01: 0.013 # 1.3%
17+
2022-09-01: 0.051 # 5.1%
18+
2023-09-01: 0.071 # 7.1%
19+
2024-09-01: 0.072 # 7.2%
20+
2025-09-01: 0.032 # 3.2%
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
description: Plan 2 maximum additional interest rate
2+
metadata:
3+
label: Plan 2 additional rate
4+
unit: /1
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
- title: House of Commons Library - Student loans and interest rates FAQs
10+
href: https://commonslibrary.parliament.uk/student-loans-and-interest-rates-faqs/
11+
documentation: |
12+
Maximum additional interest rate for Plan 2 student loans.
13+
Added to the base rate for higher earners.
14+
15+
The actual additional rate is tapered between the lower and upper
16+
income thresholds, from 0% at the lower threshold to this maximum
17+
at the upper threshold.
18+
19+
For income at or above the upper threshold, the total rate is:
20+
base_rate + additional_rate (i.e., RPI + 3%)
21+
22+
values:
23+
2012-09-01: 0.03 # 3%
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
description: Plan 2 base interest rate (RPI)
2+
metadata:
3+
label: Plan 2 base rate
4+
unit: /1
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
documentation: |
10+
Base interest rate for Plan 2 student loans (RPI).
11+
This is the minimum rate applied to all Plan 2 borrowers.
12+
Higher earners pay this plus an additional rate up to 3%.
13+
14+
values:
15+
2020-09-01: 0.026 # 2.6%
16+
2021-09-01: 0.012 # 1.2%
17+
2022-09-01: 0.051 # 5.1%
18+
2023-09-01: 0.071 # 7.1%
19+
2024-09-01: 0.072 # 7.2%
20+
2025-09-01: 0.032 # 3.2%
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
description: Plan 2 student loan interest rates
2+
label: Plan 2 interest rates
3+
documentation: |
4+
Plan 2 student loan interest rates are income-contingent after graduation.
5+
6+
While studying: RPI + 3%
7+
After graduating:
8+
- Income at or below lower threshold: RPI only
9+
- Income between lower and upper threshold: RPI + tapered rate (0% to 3%)
10+
- Income at or above upper threshold: RPI + 3%
11+
12+
This progressive structure means higher earners pay more interest,
13+
though the actual repayment amount still depends on income, not the
14+
loan balance or interest rate.
15+
16+
Reference: https://www.gov.uk/repaying-your-student-loan/interest
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
description: Plan 2 lower income threshold for interest rate tapering
2+
metadata:
3+
label: Plan 2 interest lower threshold
4+
unit: currency-GBP
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
documentation: |
10+
Lower income threshold for Plan 2 interest rate tapering.
11+
Below this income, borrowers pay the base rate (RPI) only.
12+
Above this, the additional rate begins to taper in.
13+
14+
Note: This is the same as the Plan 2 repayment threshold.
15+
16+
values:
17+
2020-09-01: 26575
18+
2021-09-01: 27295
19+
2022-09-01: 27295
20+
2023-09-01: 27660
21+
2024-09-01: 27660
22+
2025-09-01: 28470
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
description: Plan 2 upper income threshold for interest rate tapering
2+
metadata:
3+
label: Plan 2 interest upper threshold
4+
unit: currency-GBP
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
documentation: |
10+
Upper income threshold for Plan 2 interest rate tapering.
11+
Above this income, borrowers pay the maximum rate (RPI + 3%).
12+
Between the lower and upper thresholds, the rate is tapered.
13+
14+
values:
15+
2020-09-01: 47835
16+
2021-09-01: 49130
17+
2022-09-01: 49130
18+
2023-09-01: 49585
19+
2024-09-01: 49585
20+
2025-09-01: 51245
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
description: Plan 4 student loan interest rate
2+
metadata:
3+
label: Plan 4 interest rate
4+
unit: /1
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
documentation: |
10+
Interest rate for Plan 4 student loans (Scotland).
11+
Set at the lower of RPI or Bank of England base rate + 1%.
12+
Same rate as Plan 1.
13+
14+
values:
15+
2020-09-01: 0.012 # 1.2%
16+
2021-09-01: 0.013 # 1.3%
17+
2022-09-01: 0.051 # 5.1%
18+
2023-09-01: 0.071 # 7.1%
19+
2024-09-01: 0.072 # 7.2%
20+
2025-09-01: 0.032 # 3.2%
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
description: Plan 5 student loan interest rate
2+
metadata:
3+
label: Plan 5 interest rate
4+
unit: /1
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
- title: House of Commons Library - Student loans and interest rates FAQs
10+
href: https://commonslibrary.parliament.uk/student-loans-and-interest-rates-faqs/
11+
documentation: |
12+
Interest rate for Plan 5 student loans (from September 2023).
13+
Set at RPI only - no additional percentage based on income.
14+
This is simpler than Plan 2 which has income-contingent rates.
15+
16+
values:
17+
2023-09-01: 0.071 # 7.1%
18+
2024-09-01: 0.072 # 7.2%
19+
2025-09-01: 0.032 # 3.2%
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
description: Postgraduate loan interest rate
2+
metadata:
3+
label: Postgraduate loan interest rate
4+
unit: /1
5+
period: year
6+
reference:
7+
- title: GOV.UK - Student loan interest rates
8+
href: https://www.gov.uk/repaying-your-student-loan/interest
9+
documentation: |
10+
Interest rate for Postgraduate loans.
11+
Set at RPI + 3%.
12+
13+
values:
14+
2020-09-01: 0.056 # 5.6%
15+
2021-09-01: 0.042 # 4.2%
16+
2022-09-01: 0.081 # 8.1%
17+
2023-09-01: 0.101 # 10.1%
18+
2024-09-01: 0.102 # 10.2%
19+
2025-09-01: 0.062 # 6.2%

0 commit comments

Comments
 (0)