Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
toddmedema committed Apr 21, 2024
1 parent c97e563 commit bdd4d63
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/Facilities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ export function GENERATORS(
const windCapacityFactor = getWindCapacityFactor(windSpeedsKph);
const solarCapacityFactor = getSolarCapacityFactor(irradiancesWM2);

console.log(solarCapacityFactor, irradiancesWM2);

let generators = [
// FUELED
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/views/BuildGenerators.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ export default function BuildGenerators(props: Props): JSX.Element {
game,
cash,
now.customers,
TICKS_PER_YEAR * 1
TICKS_PER_YEAR * 3 // 3 years - TODO turn this into a memoized selector of month/year -> long term forecasted wind speeds and irradiances
);
const windSpeeds = forecastedTimeline.map((w) => w.windKph);
const solarIrradiances = forecastedTimeline.map((w) => w.solarIrradianceWM2);
Expand Down

0 comments on commit bdd4d63

Please sign in to comment.