Skip to content

Commit

Permalink
Merge pull request #258 from pnnl/257-photo-prompt-for-gas-pipe-cappe…
Browse files Browse the repository at this point in the history
…d-photo-in-the-heat-pump-cloth-dryer-workflow

Gas Pipe Capped Photo Addition in Heat Pump Cloth Dryer workflow
  • Loading branch information
sudhacheran authored Dec 23, 2024
2 parents 4f0d734 + acaa70d commit 8ed7c5b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
10 changes: 5 additions & 5 deletions src/templates/ira_doe_workflow_electric_cooking_appliance.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,26 +32,26 @@

## Existing Conditions

<p> What is the fuel type of the existing stovetop/oven/range? <strong> { props.data?.existing_cooking_appliance_type} </strong> </p>
<p> What is the fuel type of the existing stovetop/oven/range? <strong> <LabelValue path="existing_cooking_appliance_type" /> </strong> </p>


## Installation
<Photo id="electric_cooking_appliance_nameplate_photo" label="Nameplate of the Electric Cooking Appliance – Photo" required>
Please take a photo of the nameplate of the electric cooking appliance showing the model number and serial number.
Photo of the nameplate of the electric cooking appliance showing the model number and serial number
</Photo>
<Photo id="circuit_breaker_photo" label="Circuit Breaker – Photo " required>
Please take a picture of the circuit breaker that powers the electric cooling appliance.
Photo of the circuit breaker that powers the electric cooling appliance
</Photo>

<ShowOrHide visible={props.data?.existing_cooking_appliance_type === "Gas"}>
<Photo id="gas_pipe_capped_photo" label="Gas Pipe Capped – Photo" required>
Please take a picture of the gas pipe showing it is off and capped.
Photo of the gas pipe showing it is off and capped
</Photo>
</ShowOrHide>

## Post Installation

<p> What is the fuel type of the new stovetop/oven/range? <strong> { props.data?.postinstall_cooking_appliance_type } </strong> </p>
<p> What is the fuel type of the new stovetop/oven/range? <strong><LabelValue path="postinstall_cooking_appliance_type" /> </strong> </p>

</PrintSection>
</Tab>
Expand Down
22 changes: 16 additions & 6 deletions src/templates/ira_doe_workflow_heat_pump_cloth_dryer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
<PhotoInput id="dryer_circuit_photo" label="Dryer Circuit – Photo">
Please take a picture of the circuit breaker that powers the heat pump clothes dryer.
</PhotoInput>
<ShowOrHide visible={props.data?.existing_dryer_fuel_type === "Gas"}>
<PhotoInput id="gas_pipe_capped_photo" label="Gas Pipe Capped – Photo">
Please take a picture of the gas pipe showing it is off and capped.
</PhotoInput>
</ShowOrHide>
</Tab>
<Tab eventKey="post_installation" title="Post-Installation">
## Post Installation
Expand All @@ -36,26 +41,31 @@

## Existing Conditions

<p> What is the existing dryer fuel type? <strong> { props.data.existing_dryer_fuel_type ? props.data.existing_dryer_fuel_type : null } </strong> </p>
<p> What is the existing dryer fuel type? <strong> <LabelValue path="existing_dryer_fuel_type" /> </strong> </p>

## Installation

<Photo id="nameplate_photo" label="Nameplate of the Heat Pump Dryer – Photo" required>
Please take a photo of the nameplate of the heat pump dryer showing the model number and serial number.
Photo of the nameplate of the heat pump dryer showing the model number and serial number
</Photo>
<Photo id="condensate_management_photo" label="Condensate Management – Photo" required>
Please take a picture of the condensate drain location for the heat pump clothes dryer.
Photo of the condensate drain location for the heat pump clothes dryer
</Photo>
<Photo id="dryer_vent_capped_photo" label="Dryer Vent Capped – Photo " required>
Please take a picture of the dryer vent capped and air sealed.
Photo of the dryer vent capped and air sealed
</Photo>
<Photo id="dryer_circuit_photo" label="Dryer Circuit – Photo" required>
Please take a picture of the circuit breaker that powers the heat pump clothes dryer.
Photo of the circuit breaker that powers the heat pump clothes dryer
</Photo>
<ShowOrHide visible={props.data?.existing_dryer_fuel_type === "Gas"}>
<Photo id="gas_pipe_capped_photo" label="Gas Pipe Capped – Photo" required>
Photo of the gas pipe showing it is off and capped
</Photo>
</ShowOrHide>

## Post Installation

<p> What is the annual energy use estimated on the EnergyGuide label of the new clothes dryer? (kWh/yr) <strong> { props.data.annual_enery_use ? props.data.annual_enery_use : null } </strong> </p>
<p> What is the annual energy use estimated on the EnergyGuide label of the new clothes dryer? (kWh/yr) <strong> <LabelValue path="annual_enery_use" /> </strong> </p>

</PrintSection>
</Tab>
Expand Down

0 comments on commit 8ed7c5b

Please sign in to comment.