diff --git a/ogcore/txfunc.py b/ogcore/txfunc.py index 88a83afa2..869bc07d0 100644 --- a/ogcore/txfunc.py +++ b/ogcore/txfunc.py @@ -112,7 +112,10 @@ def get_tax_rates( np.squeeze(params[..., 1]), ) if rate_type == "etr": - txrates = 1 - (lambda_s * (income ** (-tau_s))) + flat_pct_incr_base = 0.03 + txrates = ( + 1 - (lambda_s * (income ** (-tau_s))) + flat_pct_incr_base + ) else: # marginal tax rate function txrates = 1 - (lambda_s * (1 - tau_s) * (income ** (-tau_s))) elif tax_func_type == "DEP":