Skip to content

Commit

Permalink
Merge pull request #19 from rickecon/base
Browse files Browse the repository at this point in the history
Merging
  • Loading branch information
rickecon authored Aug 7, 2024
2 parents 77c023d + bf21d81 commit 025c97d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.0.3] - 2024-08-07 12:00:00

### Added

- Updates the baseline calibration in `ogidn_default_parameters.json` and the example run script `run_og_idn.py`.


## [0.0.0] - 2024-06-20 12:00:00

### Added

- This version is a pre-release alpha. The example run script OG-IDN/examples/run_og_idn.py runs, but the model is not currently calibrated to represent the Indonesian economy and population.



[0.0.3]: https://github.com/EAPD-DRB/OG-IDN/compare/v0.0.0...v0.0.3
4 changes: 2 additions & 2 deletions examples/run_og_idn.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def main():
p2.baseline = False
p2.output_base = reform_dir

# Parameter change for the reform run
# Parameter change for the reform run: corporate income tax rate cut
updated_params_ref = {
"cit_rate": [[0.30]],
"cit_rate": [[0.20]],
}
p2.update_specifications(updated_params_ref)

Expand Down
2 changes: 1 addition & 1 deletion ogidn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
from ogidn.macro_params import *
from ogidn.utils import *

__version__ = "0.0.2"
__version__ = "0.0.3"
12 changes: 6 additions & 6 deletions ogidn/ogidn_default_parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@
0.0003
],
"rho_G": 0.1,
"debt_ratio_ss": 1.2,
"debt_ratio_ss": 0.5,
"initial_debt_ratio": 0.387,
"initial_Kg_ratio": 0.2,
"r_gov_scale": [
Expand All @@ -813,7 +813,7 @@
],
"c_corp_share_of_assets": 0.7,
"adjustment_factor_for_cit_receipts": [
0.3
0.2
],
"inv_tax_credit": [
[
Expand All @@ -822,7 +822,7 @@
],
"tau_c": [
[
0.11
0.10
]
],
"delta_tau_annual": [
Expand Down Expand Up @@ -101426,21 +101426,21 @@
"etr_params": [
[
[
0.18
0.119
]
]
],
"mtrx_params": [
[
[
0.2
0.15
]
]
],
"mtry_params": [
[
[
0.2
0.15
]
]
],
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ogidn",
version="0.0.2",
version="0.0.3",
author="Marcelo LaFleur, Richard W. Evans, and Jason DeBacker",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
description="Indonesia (IDN) Calibration for OG-Core",
Expand Down

0 comments on commit 025c97d

Please sign in to comment.