You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.15.2] - 2025-01-22 12:00:00
9
+
10
+
### Added
11
+
12
+
- A new parameters, `r_gov_DY` and `r_gov_DY2`, that allow the government interest rate to be a function of the debt-to-GDP ratio. See PR [#1037](https://github.com/PSLmodels/OG-Core/pull/1037)
13
+
8
14
## [0.15.1] - 2026-01-19 12:00:00
9
15
10
16
### Added
@@ -493,6 +499,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
493
499
- Any earlier versions of OG-USA can be found in the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository [release history](https://github.com/PSLmodels/OG-Core/releases) from [v.0.6.4](https://github.com/PSLmodels/OG-Core/releases/tag/v0.6.4) (Jul. 20, 2021) or earlier.
Copy file name to clipboardExpand all lines: docs/book/content/theory/government.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -667,14 +667,14 @@ Note that the budget closure rule (described in Section ref{`SecUnbalGBCcloseRul
667
667
(SecRateWedge)=
668
668
## Interest Rate on Government Debt and Household Savings
669
669
670
-
Despite the model having no aggregate risk, it may be helpful to build in an interest rate differential between the rate of return on private capital and the interest rate on government debt. Doing so helps to add realism by including a risk premium. `OG-Core` allows users to set an exogenous wedge between these two rates. The interest rate on government debt,
670
+
Despite the model having no aggregate risk, it may be helpful to build in an interest rate differential between the rate of return on private capital and the interest rate on government debt. Doing so helps to add realism by including a risk premium. `OG-Core` allows users to set an exogenous wedge between these two rates. `OG-Core` also allows for the risk premium on debt to be a quadratic function of the debt-to-GDP ratio. The interest rate on government debt is given by:
where $r_t$ is the marginal product of capital faced by firms. The two parameters, $\tau_{d,t}$ and $\mu_{d,t}$ can be used to allow for a government interest rate that is a percentage hair cut from the market rate or a government interest rate with a constant risk premium.
677
+
where $r_t$ is the marginal product of capital faced by firms. The two parameters, $\tau_{d,t}$ and $\mu_{d,t}$ can be used to allow for a government interest rate that is a percentage hair cut from the market rate or a government interest rate with a constant risk premium. The parameters $\beta_1$ and $\beta_2$ can be used to allow for a quadratic risk premium on government debt that is a function of the debt-to-GDP ratio.
Copy file name to clipboardExpand all lines: ogcore/default_parameters.json
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1010,6 +1010,42 @@
1010
1010
}
1011
1011
}
1012
1012
},
1013
+
"r_gov_DY": {
1014
+
"title": "Linear effect of debt to GDP ratio on government interest rate",
1015
+
"section_1": "Fiscal Policy Parameters",
1016
+
"description": "Parameter summarizing the linear effect of the debt to GDP ratio on the government interest rate.",
1017
+
"notes": "",
1018
+
"type": "float",
1019
+
"value": [
1020
+
{
1021
+
"value": 0.0
1022
+
}
1023
+
],
1024
+
"validators": {
1025
+
"range": {
1026
+
"min": -0.3,
1027
+
"max": 0.3
1028
+
}
1029
+
}
1030
+
},
1031
+
"r_gov_DY2": {
1032
+
"title": "Quadratic effect of debt to GDP ratio on government interest rate",
1033
+
"section_1": "Fiscal Policy Parameters",
1034
+
"description": "Parameter summarizing the quadratic effect of the debt to GDP ratio on the government interest rate.",
1035
+
"notes": "",
1036
+
"type": "float",
1037
+
"value": [
1038
+
{
1039
+
"value": 0.0
1040
+
}
1041
+
],
1042
+
"validators": {
1043
+
"range": {
1044
+
"min": -0.3,
1045
+
"max": 0.3
1046
+
}
1047
+
}
1048
+
},
1013
1049
"cit_rate": {
1014
1050
"title": "Corporate income tax rate",
1015
1051
"description": "Corporate income tax rate. Set value for base year, click '+' to add value for next year. All future years not specified are set to last value entered.",
0 commit comments