Skip to content

Commit

Permalink
tax rate update
Browse files Browse the repository at this point in the history
  • Loading branch information
adfarth committed May 24, 2024
1 parent d5609d9 commit 2f2c935
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Classify the change according to the following categories:
### Deprecated
### Removed

## Develop
### Changed
- Changed default Financial **owner_tax_rate_fraction** and **oftaker_tax_rate_fraction** from 0.257 to 0.26 to align with API and user manual defaults.

## v0.46.2
### Changed
- When the URDB response `energyratestructure` has a "unit" value that is not "kWh", throw an error instead of averaging rates in each energy tier.
Expand Down
4 changes: 2 additions & 2 deletions src/core/financial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ struct Financial
boiler_fuel_cost_escalation_rate_fraction::Real = 0.015,
chp_fuel_cost_escalation_rate_fraction::Real = 0.015,
generator_fuel_cost_escalation_rate_fraction::Real = 0.012,
offtaker_tax_rate_fraction::Real = 0.257,
offtaker_tax_rate_fraction::Real = 0.26,
offtaker_discount_rate_fraction::Real = 0.0638,
third_party_ownership::Bool = false,
owner_tax_rate_fraction::Real = 0.257,
owner_tax_rate_fraction::Real = 0.26,
owner_discount_rate_fraction::Real = 0.0638,
analysis_years::Int = 25,
value_of_lost_load_per_kwh::Union{Array{<:Real,1}, Real} = 1.00, #only applies to multiple outage modeling
Expand Down

0 comments on commit 2f2c935

Please sign in to comment.