ORNL-AMO / Choose-Your-Own-Adventure

0 stars 0 forks source link

Quick project fixes 2024-03-27 #306

Closed koay9f closed 6 months ago

koay9f commented 6 months ago

TWO things

Change trigger for second capital project to 30% instead of 35%

Solar car port


Projects[Pages.solarPanelsCarPort] = new ProjectControl({
    pageId: Pages.solarPanelsCarPort,
    isCapitalFundsEligible: true,
    baseCost: 180_000,        // CHANGE
    isSinglePaymentRenewable: true,
    costSavingsCarryover: 'always',
    financedAnnualCost: 45_000, // CHANGE
    financedTotalCost: 180_000,  // CHANGE
    financingOptions: [
        {
            financingType: getEaaSFinancing(4),
        },
    ],
    isEnergyEfficiency: false,
    isRenewable: true,
    statsInfoAppliers: {
        electricityUseKWh: absolute(-537_000),
    },
    statsActualAppliers: {
        electricityUseKWh: absolute(-537_000),
    },
// CHANGE - removing the surprise hopefully i deleted the correct amount :D

    title: 'Small Carport Solar Installation',
    shortTitle: 'Install solar panels on new facility carport. {THIS PROJECT WILL BE RENEWED ANNUALLY}.',
    shortTitleRawText: 'Install solar panels on new facility carport. THIS PROJECT WILL BE RENEWED ANNUALLY.',
    choiceInfoText: [
        `You decided to look into installing a small covered carport with a solar electricity generation system. 
        Given the sizing of your parking lot and available room, you decide on a {0.25 MW system} and use parking in the carport as an incentive to well-performing or energy-saving employees. 
        Corporate has agreed that you will receive an annual {CREDIT} for the avoided grid electricity payment added to your budget every year.`
    ],
    choiceInfoImg: 'images/solar-panels.png',
    choiceInfoImgAlt: 'Solar panels on the roof top of a car parking lot.',
    recapDescription: 'Insert flavor text here!',
    caseStudy: {
        title: 'Lockheed Martin 2.25 Megawatts Solar Carport',
        url: 'https://www.agt.com/portfolio-type/lockheed-martin-solar-carport/',
        text: 'In 2017, {Lockheed Martin} installed a 4-acre solar carport and was able to provide {3,595,000} kWh/year, or enough electricity to power almost {500 homes} annually.',
    },
    energySavingsPreviewIcon: {
        text: '1.8%',
        variant: 'text',
        startIcon: <BoltIcon />,
    },
});```