---
title: "ChEn 433 "
date: Class 25 Hydro, Geothermal
lang: en-US
slideNumber: false
width: 1600
height: 1000
transition: fade
css: ../assets/style.css
theme: simple
title-slide-attributes: 
    data-background-image: "https://energyeducation.ca/wiki/images/thumb/1/1e/Icelandgeoplant.jpeg/600px-Icelandgeoplant.jpeg"
    data-background-opacity: "1.0"

verticator:
    enable: true
menu:
    enable: true
chalkboard:
    enable: false
---

# Hydropower
::: {.cols2}
::: {.col2-vp}
* **Hydroelectric**
    * 1870 [Cragside Dam](https://en.wikipedia.org/wiki/Cragside) in Rothbury, England
    * Dams: regulating flows, flood control, storage
    * Historically used for mechanical energy
    * Renewable
    * No fuel costs
* Wave
* Tidal
:::
:::{.col2-v}
<img src="https://www.eia.gov/energyexplained/hydropower/images/hydro-dam.png" title="https://www.eia.gov/energyexplained/hydropower/images/hydro-dam.png" height=600 alt="image">
:::
:::

## Hydropower
* [6.3% of US electricity](https://www.eia.gov/energyexplained/hydropower/)
    * 30% in 1950
* 31.5% of US renewable electricity 

<img src="generation_by_year.svg" title="BP stats review 2021" width=1000 alt="image">

## Hydropower

<img src="us_hydro.png" title="https://www.eia.gov/energyexplained/hydropower/" width=1000 alt="image">

## US Hydropower
<img src="https://www.eia.gov/todayinenergy/images/2017.03.13/chart4.png" title="https://www.eia.gov/todayinenergy/images/2017.03.13/chart4.png" width=1000 alt="image">

## US Hydropower
<img src="https://www.eia.gov/todayinenergy/images/2017.03.13/chart5.png" title="https://www.eia.gov/todayinenergy/images/2017.03.13/chart5.png" width=1000 alt="image">

# Three Gorges Dam
::: {.cols2}
::: {.col2-vp}
* China
* $32 billion
* 181 m
* 22.5 GW (11x Hoover)
* Nine year construction to 2012
* 34 Francis turbines
* \> 1.3 million [people displaced](https://www.britannica.com/topic/Three-Gorges-Dam/History-and-controversy-of-the-Three-Gorges-Dam) 
    * 1500 cities/towns/villiages along the river
* Issues: 
    * erosion, sedimentation, landslides, 
    * waste, 
    * wildlife
:::
::: {.col2-v}
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/ThreeGorgesDam-China2009.jpg/520px-ThreeGorgesDam-China2009.jpg" title="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/ThreeGorgesDam-China2009.jpg/520px-ThreeGorgesDam-China2009.jpg" height=350 alt="image">

<img src="https://upload.wikimedia.org/wikipedia/commons/3/32/Sanxia_Runner04_300.jpg" title="https://en.wikipedia.org/wiki/File:Sanxia_Runner04_300.jpg" height=350 alt="image">
:::
:::

# Simple Theory

<div style="font-size:0.8em">
$$\dot{W} = \dot{m}gh$$
Power is the rate of potential energy change as the liquid falls under gravity over height $h$.

Mechanical Energy Balance
$$\dot{m}\left(\frac{P_1}{\rho} + \frac{v_1^2}{2} + gz_1\right) - \dot{W}_\text{turbine} = 
\dot{m}\left(\frac{P_2}{\rho} + \frac{v_2^2}{2} + gz_2\right)$$
</div>

<img src="turbine_p1p2.svg" width=400 alt="image">

::: notes
* Note different points: 1 and 2: height and work
* or 1 and bottom of reservoir: height/pressure
* or bottom of reservoir and turbine inlet: pressure and velocity
:::

## Exercise
<div style="font-size:0.8em">
The [average American home](https://www.eia.gov/tools/faqs/faq.php?id=97&t=3#:~:text=How%20much%20electricity%20does%20an,about%20893%20kWh%20per%20month.) uses 893 kWh per month, **which is 1.22 kW**.

How many gallons per minute is needed to power the average home for a reservoir height of 100 m?
</div>

::: fragment
```
import pint; u = pint.UnitRegistry()

W   = 893  * u.kW*u.hr/u.month
h   = 100  * u.m
rho = 1000 * u.kg/u.m**3
g   = 9.81 * u.m/u.s**2

print(f"W = {W.to(u.kW):.2f}")

# W = mdot * g * h
mdot = W / g / h
Vdot = mdot / rho

print(f"Vdot = {Vdot.to(u.gal/u.min):.2f}")
```
:::

::: fragment
**19.75 gal/min**

[The average shower takes 2 gal/min](https://www.portland.gov/water/water-efficiency-programs/save-water-home#:~:text=According%20to%20a%20national%20study,of%20the%20water%20used%20indoors.)
:::

# Capacity factors
<img src="https://www.eia.gov/todayinenergy/images/2017.03.13/chart3.png" title="https://www.eia.gov/todayinenergy/images/2017.03.13/chart3.png" width=800 alt="image">

<div style="font-size:0.8em">
> The amount of power generated each year from the nation’s hydroelectric facilities varies by the water available in dams and rivers. Many reservoirs must balance power output with competing water demand for irrigation, municipal, industrial, and other needs, as well as concerns with fish migration. As a result, hydroelectric facilities often do not run at full output. U.S. hydroelectric capacity factors, which measure actual output as a percent of total capacity, average between 30% and 40%. --[EIA.gov](https://www.eia.gov/todayinenergy/detail.php?id=30312#tab2)
</div>

## Article: Drought
<iframe src="https://www.renewableenergyworld.com/baseload/u-s-hydropower-generation-to-decline-14-in-2021-amid-drought-eia-reports/#gref" width=1200 height=800></iframe>

# Turbine types
<img src="https://upload.wikimedia.org/wikipedia/commons/b/b5/Turbines_impulse_v_reaction.png" title="https://upload.wikimedia.org/wikipedia/commons/b/b5/Turbines_impulse_v_reaction.png" height = 800 alt="image">

## Turbine types
<iframe width="1400" height="787" src="https://www.youtube.com/embed/AT7B7IWmOtU?cc_load_policy=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

<!------------------------------------------------------------------------------------------>

# Earth core
::: {.cols2}
::: {.col2-vp}
* 99% of the earth is > 1000 $^o$C
* Heated by radioactive decay
* P up to 4 Mbar
* 0.07, 0.1 W/m$^2$ (land, ocean)
    * 9.2 CMO/yr
* total heat energy 1.26E31 J 
    * 5.4E27 J in the crust
* [Thermal gradient](https://www.sciencedirect.com/topics/earth-and-planetary-sciences/geothermal-gradient#:~:text=In%20normal%20continental%20crust%20a,a%20depth%20of%2040%20km.) ~25 $^o$C/km (100 $^o$C at 4 km).
:::
::: {.col2-v}
<img src="layers.jpg" title="DJ" width=1000 alt="image">
:::
:::

::: notes
* 29% land, 71% water gives 0.09 w/m2
* d = 12742 km --> A =  510064463 km2
* E = 46.57 tW
* E * 365*24*3600 = 1.47E21 J / 1.6 J/cmo = 9.2 CMO per year
:::

## Geothermal plants
<img src="https://www.thinkgeoenergy.com/wp-content/uploads/2013/08/tge_PlantMapUpdatedAug2013_full.png" title="https://www.thinkgeoenergy.com/wp-content/uploads/2013/08/tge_PlantMapUpdatedAug2013_full.png" width=700 alt="image">
&emsp;
<img src="https://ars.els-cdn.com/content/image/1-s2.0-S0959652620319211-gr3_lrg.jpg" title="https://ars.els-cdn.com/content/image/1-s2.0-S0959652620319211-gr3_lrg.jpg" width=700 alt="image">

::: fragment
* The the prevalence of plants around the "ring of fire"
:::

## US Geothermal potential
<img src="https://www.nrel.gov/gis/assets/images/geothermal-identified-hydrothermal-and-egs.jpg" title="https://www.nrel.gov/gis/assets/images/geothermal-identified-hydrothermal-and-egs.jpg" width=1200 alt="image">

## Geothermal production (direct heat)
<img src="geothermal_production.png" height=600 alt="image">
<div style="font-size:0.8em">
> Lund and Boyd, Direct Utilization of Geothermal Energy 2015 Worldwide Review, World Geothermal Congress, 2015
</div>

# Geothermal heat, power
* Two applications
    * Direct heat 
    * Electricity generation
        * First geothermal plant: Tuscany Italy 1904
* [Average size > 10 MW = 153 MW](https://en.wikipedia.org/wiki/List_of_geothermal_power_stations)
* Types: dry, flash (most common), binary

<img src="https://www.eia.gov/energyexplained/geothermal/images/drysteam.gif" title="https://www.eia.gov/energyexplained/geothermal/geothermal-power-plants.php" height=300 alt="image">
<img src="https://www.eia.gov/energyexplained/geothermal/images/flashplant.gif" title="https://www.eia.gov/energyexplained/geothermal/geothermal-power-plants.php" height=300 alt="image">
<img src="https://www.eia.gov/energyexplained/geothermal/images/binaryplant.gif" title="https://www.eia.gov/energyexplained/geothermal/geothermal-power-plants.php" height=300 alt="image">


## Geysers Geothermal Complex
::: {.cols2}
::: {.col2-vp}
* [Northern California](https://en.wikipedia.org/wiki/The_Geysers)
* [Largest plant](https://www.power-technology.com/features/feature-top-10-biggest-geothermal-power-plants-in-the-world/)
* 18 units
* 1.6 GW
* Dry steam
* 78 km$^2$ land area
* 53% capacity factor

:::
::: {.col2-v}
<img src="https://www.power-technology.com/wp-content/uploads/static-progressive/Top%2010%20biggest%20geothermal%20power%20plants%20in%20the%20world.jpg" title="https://www.power-technology.com/wp-content/uploads/static-progressive/Top%2010%20biggest%20geothermal%20power%20plants%20in%20the%20world.jpg" width=700 alt="image">
:::
:::

## Hot dry rock (HDR)
:::{.cols2}
:::{.col2-vp}
* [Summary of papers and articles](https://www.sciencedirect.com/topics/engineering/hot-dry-rock)
* Enhanced geothermal system (EGS)
* No natural water table
* Rock fracturing
* Two wells drilled: injection and production
* Depth issues
:::
:::{.col2-v}
<img src="hdr.png" title="Understanding Renewable Energy Systems, p. 322" height=800 alt="image">
:::
:::

## Issues
* Renewable
* Environmentally benign 
    (other than land use)
* Lower temperatures use the organic Rankine cycle (ORC)
* Low efficiencies at lower temperatures $\rightarrow$ direct heat is more cost effective
* Drilling costs
* Resource depletion (run out of steam $\rightarrow$ inject water, e.g., Geysers Complex)
    
# Article

<a href="https://www.vox.com/energy-and-environment/2020/10/21/21515461/renewable-energy-geothermal-egs-ags-supercritical" target="_blank">
<img src="article.png" height=800 alt="image">
</a>

