Skip to content

Commit

Permalink
Merge pull request #226 from ORNL-AMO/issue-224
Browse files Browse the repository at this point in the history
issue 224
  • Loading branch information
nbintertech authored Feb 28, 2024
2 parents 7c6dd55 + 3d104a2 commit d3067a8
Show file tree
Hide file tree
Showing 7 changed files with 152 additions and 76 deletions.
9 changes: 5 additions & 4 deletions src/PageControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,8 @@ PageControls[Pages.scope1Projects] = newGroupedChoicesControl({
title: 'Electrification & Fuel Switching',
choices: [
Projects[Pages.electricBoiler].getProjectChoiceControl(),
Projects[Pages.hydrogenFuel].getProjectChoiceControl(),
Projects[Pages.hydrogenPoweredForklifts].getProjectChoiceControl(),
Projects[Pages.h2InjectionIntoHRSG].getProjectChoiceControl(),
Projects[Pages.blendedFuel].getProjectChoiceControl(),
Projects[Pages.landfillGasForOven].getProjectChoiceControl(),
]
}
],
Expand All @@ -195,7 +194,8 @@ PageControls[Pages.scope2Projects] = newGroupedChoicesControl({
Projects[Pages.chilledWaterMonitoringSystem].getProjectChoiceControl(),
Projects[Pages.installVFDs1].getProjectChoiceControl(),
Projects[Pages.installVFDs2].getProjectChoiceControl(),
Projects[Pages.installVFDs3].getProjectChoiceControl()
Projects[Pages.installVFDs3].getProjectChoiceControl(),
Projects[Pages.hydrogenPoweredForklifts].getProjectChoiceControl(),
// Projects[Pages.lightingUpgrades].getProjectChoiceControl(),
// Projects[Pages.compressedAirSystemOptimization].getProjectChoiceControl(),
// Projects[Pages.refrigerationUpgrade].getProjectChoiceControl(),
Expand All @@ -208,6 +208,7 @@ PageControls[Pages.scope2Projects] = newGroupedChoicesControl({
Projects[Pages.midSolar].getProjectChoiceControl(),
Projects[Pages.solarRooftop].getProjectChoiceControl(),
Projects[Pages.largeWind].getProjectChoiceControl(),
Projects[Pages.communityWindProject].getProjectChoiceControl(),
// Projects[Pages.solarFieldOnSite].getProjectChoiceControl(),
]
},
Expand Down
5 changes: 3 additions & 2 deletions src/Pages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@ const Pages = {
processHeatingUpgrades: Symbol('process-heating-upgrades'),
hydrogenPoweredForklifts: Symbol('hydrogen-powered-forklifts'),
electricBoiler: Symbol('electric-boiler'),
hydrogenFuel: Symbol('hydrogen-fuel'),
h2InjectionIntoHRSG: Symbol('h2-injection-into-HRSG'),
blendedFuel: Symbol('blended-fuel'),
landfillGasForOven: Symbol('landfill-gas-for-oven'),
// below: scope 2 projects
lightingUpgrades: Symbol('explore-lighting-upgrades'),
greenPowerTariff: Symbol('green-power-tariff'),
smallVPPA: Symbol('wind-vppa'),
midVPPA: Symbol('mid-vppa'),
largeVPPA: Symbol('large-vppa'),
largeWind: Symbol('large-wind'),
communityWindProject: Symbol('community-wind-project'),
midSolar: Symbol('mid-solar'),
solarPanelsCarPort: Symbol('solar-panels-car-port'),
solarRooftop: Symbol('solar-rooftop'),
Expand Down
6 changes: 4 additions & 2 deletions src/ProjectControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export class ProjectControl implements ProjectControlParams {
}
if (this.statsInfoAppliers.hydrogenMMBTU) {
projectDialogStatCards.push({
text: `Hydrogen reduction: {${this.statsInfoAppliers.hydrogenMMBTU.toString(true)} MMBtu ${perYearAddOn}}`,
text: `Landfill Gas reduction: {${this.statsInfoAppliers.hydrogenMMBTU.toString(true)} MMBtu ${perYearAddOn}}`,
textColor: '#fff',
backgroundColor: 'rgb(20, 48, 109, 0.60)',
});
Expand Down Expand Up @@ -743,7 +743,7 @@ export class ProjectControl implements ProjectControlParams {
export const Scope1Projects = [
Pages.advancedEnergyMonitoring, Pages.steamTrapsMaintenance, Pages.improvePipeInsulation, Pages.boilerControl,
Pages.airHandingUnitUpgrades, Pages.processHeatingUpgrades, Pages.wasteHeatRecovery,
Pages.electricBoiler, Pages.hydrogenFuel, Pages.hydrogenPoweredForklifts, Pages.h2InjectionIntoHRSG
Pages.electricBoiler, Pages.blendedFuel, Pages.landfillGasForOven
//Pages.digitalTwinAnalysis,

//Pages.condensingEconomizerInstallation,
Expand All @@ -765,6 +765,8 @@ export const Scope2Projects = [
Pages.smallVPPA,
Pages.midVPPA,
Pages.largeVPPA,
Pages.communityWindProject,
Pages.hydrogenPoweredForklifts
// Pages.solarFieldOnSite,
//Pages.lightingUpgrades, Pages.greenPowerTariff,
//Pages.compressedAirSystemOptimization,
Expand Down
Loading

0 comments on commit d3067a8

Please sign in to comment.