Skip to content

Commit fd36a13

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 fd36a13

13 files changed

Lines changed: 393 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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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: Education (Student Loans) (Repayment) Regulations 2009, Regulation 21
8+
href: https://www.legislation.gov.uk/uksi/2009/470/regulation/21
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
11+
documentation: |
12+
Interest rate for Plan 1 student loans (pre-2012).
13+
Per Regulation 21, set at the lower of RPI or Bank of England base rate + 1%.
14+
In practice, this is typically RPI when RPI is low.
15+
16+
values:
17+
2020-09-01: 0.012 # 1.2%
18+
2021-09-01: 0.013 # 1.3%
19+
2022-09-01: 0.051 # 5.1%
20+
2023-09-01: 0.071 # 7.1%
21+
2024-09-01: 0.072 # 7.2%
22+
2025-09-01: 0.032 # 3.2%
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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: Education (Student Loans) (Repayment) (Amendment) (No. 2) Regulations 2012, Regulation 21A(10)
8+
href: https://www.legislation.gov.uk/uksi/2012/1309/regulation/10/made
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
11+
documentation: |
12+
Maximum additional interest rate for Plan 2 student loans.
13+
Added to the base rate for higher earners.
14+
15+
Per Regulation 21A(10), the additional interest rate is calculated as:
16+
3 × (I - L) / (H - L)
17+
where I = borrower's income, L = lower threshold, H = higher threshold.
18+
19+
The actual additional rate is tapered between the lower and upper
20+
income thresholds, from 0% at the lower threshold to this maximum
21+
at the upper threshold.
22+
23+
For income at or above the upper threshold, the total rate is:
24+
base_rate + additional_rate (i.e., RPI + 3%)
25+
26+
values:
27+
2012-09-01: 0.03 # 3%
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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: Education (Student Loans) (Repayment) (Amendment) (No. 2) Regulations 2012, Regulation 21A
8+
href: https://www.legislation.gov.uk/uksi/2012/1309/regulation/10/made
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
11+
documentation: |
12+
Base interest rate for Plan 2 student loans (RPI).
13+
This is the minimum rate applied to all Plan 2 borrowers.
14+
Higher earners pay this plus an additional rate up to 3%.
15+
16+
Per Regulation 21A, the "standard interest rate" is the prevailing
17+
market rate as determined by the Secretary of State (set to RPI).
18+
19+
values:
20+
2020-09-01: 0.026 # 2.6%
21+
2021-09-01: 0.012 # 1.2%
22+
2022-09-01: 0.051 # 5.1%
23+
2023-09-01: 0.071 # 7.1%
24+
2024-09-01: 0.072 # 7.2%
25+
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: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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: Education (Student Loans) (Repayment) (Amendment) (No. 2) Regulations 2012, Regulation 21A(10)
8+
href: https://www.legislation.gov.uk/uksi/2012/1309/regulation/10/made
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
11+
documentation: |
12+
Lower income threshold for Plan 2 interest rate tapering (L in the formula).
13+
Below this income, borrowers pay the base rate (RPI) only.
14+
Above this, the additional rate begins to taper in.
15+
16+
Per Regulation 21A(10), this is the "lower interest threshold".
17+
Note: This is the same as the Plan 2 repayment threshold.
18+
19+
values:
20+
2020-09-01: 26575
21+
2021-09-01: 27295
22+
2022-09-01: 27295
23+
2023-09-01: 27660
24+
2024-09-01: 27660
25+
2025-09-01: 28470
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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: Education (Student Loans) (Repayment) (Amendment) (No. 2) Regulations 2012, Regulation 21A(10)
8+
href: https://www.legislation.gov.uk/uksi/2012/1309/regulation/10/made
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
11+
documentation: |
12+
Upper income threshold for Plan 2 interest rate tapering (H in the formula).
13+
Above this income, borrowers pay the maximum rate (RPI + 3%).
14+
Between the lower and upper thresholds, the rate is tapered.
15+
16+
Per Regulation 21A(10), this is the "higher interest threshold".
17+
18+
values:
19+
2020-09-01: 47835
20+
2021-09-01: 49130
21+
2022-09-01: 49130
22+
2023-09-01: 49585
23+
2024-09-01: 49585
24+
2025-09-01: 51245
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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: Education (Student Loans) (Repayment) (Scotland) Regulations 2009, Regulation 20
8+
href: https://www.legislation.gov.uk/ssi/2009/168/regulation/20
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
11+
documentation: |
12+
Interest rate for Plan 4 student loans (Scotland).
13+
Per Regulation 20, set at the lower of RPI or Bank of England base rate + 1%.
14+
Same rate as Plan 1.
15+
16+
values:
17+
2020-09-01: 0.012 # 1.2%
18+
2021-09-01: 0.013 # 1.3%
19+
2022-09-01: 0.051 # 5.1%
20+
2023-09-01: 0.071 # 7.1%
21+
2024-09-01: 0.072 # 7.2%
22+
2025-09-01: 0.032 # 3.2%
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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: Education (Student Loans) (Repayment) (Amendment) Regulations 2023
8+
href: https://www.legislation.gov.uk/uksi/2023/207/made
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
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+
The removal of the real interest rate for Plan 5 was announced in
17+
the February 2022 Higher Education Policy Statement.
18+
19+
values:
20+
2023-09-01: 0.071 # 7.1%
21+
2024-09-01: 0.072 # 7.2%
22+
2025-09-01: 0.032 # 3.2%
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
description: Postgraduate loan interest rate
2+
metadata:
3+
label: Postgraduate loan interest rate
4+
unit: /1
5+
period: year
6+
reference:
7+
- title: Education (Postgraduate Master's Degree Loans) Regulations 2016, Regulation 17
8+
href: https://www.legislation.gov.uk/uksi/2016/606/regulation/17
9+
- title: GOV.UK - Student loan interest rates
10+
href: https://www.gov.uk/repaying-your-student-loan/interest
11+
documentation: |
12+
Interest rate for Postgraduate loans.
13+
Per Regulation 17, set at RPI + 3% (same as Plan 2 maximum rate).
14+
15+
values:
16+
2020-09-01: 0.056 # 5.6%
17+
2021-09-01: 0.042 # 4.2%
18+
2022-09-01: 0.081 # 8.1%
19+
2023-09-01: 0.101 # 10.1%
20+
2024-09-01: 0.102 # 10.2%
21+
2025-09-01: 0.062 # 6.2%

0 commit comments

Comments
 (0)