Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/patch' into SAM_1968
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanzou committed Jan 29, 2025
2 parents 128023d + 56b83b6 commit 8d4f328
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deploy/runtime/cashflow.lk
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ function cf_om_expenses()
{
cfline( 'cf_om_fixed2_expense,cf_om_production2_expense,cf_om_capacity2_expense', 0);
cfline( 'cf_fuelcell_replacement_cost', 0);
cfline( 'cf_om_fuel_expense', 0);
}
if ( is_fuel_tech() ) { cfline('cf_om_fuel_expense', 0); }
if ( tech == 'Biopower' ) { cfline( 'cf_om_opt_fuel_1_expense,cf_om_opt_fuel_2_expense', 0); }
Expand Down Expand Up @@ -379,7 +380,7 @@ function cf_operating_expenses()
cf_om_expenses();
cfline( 'cf_property_tax_expense', 0);
cfline( 'cf_insurance_expense', 0);
if ( is_land_lease_config() ) { cfline('cf_land_lease_expense', 0); }
if ( is_land_lease_config() && strpos(technology(),'Hybrid') < 0 ) { cfline('cf_land_lease_expense', 0); } // hybrid land lease handled in cf_om_expenses() function
if ( fin == 'Community Solar')
{
cfline('cf_community_solar_recurring_fixed', 0);
Expand Down
Binary file modified deploy/runtime/spreadsheets/residential_commercial.xlsx
Binary file not shown.

0 comments on commit 8d4f328

Please sign in to comment.