Skip to content

Commit

Permalink
Merge branch 'develop' into module-library-fall-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
cpaulgilman committed Nov 18, 2024
2 parents 48de5f1 + 3f5036d commit dfc9efe
Show file tree
Hide file tree
Showing 11 changed files with 115,222 additions and 44,988 deletions.
11 changes: 10 additions & 1 deletion deploy/runtime/cashflow.lk
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,16 @@ function cf_savings()
cfline('equals:', -1, 0);
if ( fin == 'Host Developer' ) { cfline( 'annual_energy_value', 0); }
else if ( fin != 'Merchant Plant' ){ cfline( 'cf_energy_value', 0); }
if (tech == 'Fuel Cell') { cfline( 'cf_thermal_value', 0); }
if (tech == 'Fuel Cell' || tech == 'CustomGeneration PVWatts Wind FuelCell Battery Hybrid' || tech == 'PVWatts Wind FuelCell Battery Hybrid') {
cfline( 'thermal_cost_without_system', 0);
cfline('minus:', -1, 0);
cfline( 'thermal_cost_with_system', 0);
cfline('equals:', -1, 0);
if ( fin == 'Host Developer' )
cfline( 'annual_thermal_value', 0);
else
cfline( 'cf_thermal_value', 0);
}
if ( fin == 'Host Developer' )
{
cfline( '' );
Expand Down
Loading

0 comments on commit dfc9efe

Please sign in to comment.