Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add introduction to 2d heat eq problem #39

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion notebooks/ES_2D_Heat_Equation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@
# ---

# %% [markdown]
# # Parameter estimation using ES and the 2D Heat Equation
# # Estimating Spatially Varying Heat Transfer Coefficients Using Ensemble Smoothers
#
# Imagine you're an archaeologist who has discovered a large, ancient metal plate buried in your garden.\
# You're intrigued by its thermal properties, particularly how well it transfers heat, as this could provide clues about its composition and origin.\
# Using a metal detector you've established the size and have concluded that it is too large to excavate without risking damage.\
# Instead, you drill a few small holes at specific locations and measure the heat transfer coefficient at these points.\
# The sparse measurements show that the plates' heat transfer coefficient varies in space, but you need to know it everywhere.\
# To gather more information, you decide to introduce a heat source by drilling a hole and lowering a heat element to warm up the plate at that point.\
# After removing the heat source, the plate will cool down according to the heat equation from physics.\
# Using the sparse measurements and the observed cooling behavior, your goal is to estimate the heat transfer coefficient everywhere on the plate.
#

# %%
import numpy as np
Expand Down
Loading