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

Update parameter estimation notebook #202

Open
wants to merge 10 commits into
base: dev
Choose a base branch
from
Open

Conversation

lymichelle21
Copy link

  • Add table of contents
  • Fix formatting for consistency

Copy link

Thank you for opening this PR. Each PR into dev requires a code review. For the code review, look at the following:

  • Reviewer (someone other than author) should look for bugs, efficiency, readability, testing, and coverage in examples (if relevant).
  • Ensure that each PR adding a new feature should include a test verifying that feature.
  • All errors from static analysis must be resolved.
  • Review the test coverage reports (if there is a change) - will be added as comment on PR if there is a change
  • Review the software benchmarking results (if there is a change) - will be added as comment on PR
  • Any added dependencies are included in requirements.txt, setup.py, and dev_guide.rst (this document)
  • All warnings from static analysis must be reviewed and resolved - if deemed appropriate.

@lymichelle21 lymichelle21 added the documentation Improvements or additions to documentation, examples, or tutorial label Mar 31, 2025
@lymichelle21 lymichelle21 marked this pull request as ready for review March 31, 2025 21:29
Copy link
Contributor

@kjjarvis kjjarvis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes look great. I like the consistency a lot! Just a couple minor edits (all based on the previous work that was done, not the new stuff). And one question regarding the metadata in the notebook. Great work!

Copy link
Contributor

@teubert teubert left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few cosmetic suggestions (including some for lines you didn't touch). But overall it looks great! Good work!

@@ -13,38 +13,54 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Parameter estimation is used to tune the parameters of a general model so its behavior matches the behavior of a specific system. Parameter Estimation can be considered more of an art than a science. For example, parameters of the battery model can be tuned to configure the model to describe the behavior of a specific battery.\n",
"Parameter estimation is used to tune the parameters of a general model so that its behavior matches that of a specific system. Parameter Estimation can be considered more of an art than a science. For example, the parameters of a battery model can be tuned to configure the model to more accurately describe the behavior of a specific battery.\n",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"Parameter estimation is used to tune the parameters of a general model so that its behavior matches that of a specific system. Parameter Estimation can be considered more of an art than a science. For example, the parameters of a battery model can be tuned to configure the model to more accurately describe the behavior of a specific battery.\n",
"Parameter estimation is used to tune the parameters of a general model so that its behavior matches that of a specific system. For example, the parameters of a battery model can be tuned to configure the model to more accurately describe the behavior of a specific battery.\n",

That sentence felt a little awkward here

"\n",
"Generally, parameter estimation is done by tuning the parameters of the model so that simulation (see 1. Simulation) best matches the behavior observed in some available data. This is done using a mixture of data, knowledge (e.g., from system specs), and intuition. For large, complex models, it can be VERY difficult and computationall expensive. Fortunately, in this case we have a relatively simple model.\n",
"Generally, parameter estimation is done by tuning the parameters of the model so that the simulation (see __[01 Simulation](01_Simulation.ipynb)__) best matches the behavior observed in some available data. This is done using a mixture of data, knowledge (e.g., from system specs), and intuition. For large, complex models, it can be VERY difficult and computationally expensive. Fortunately, in this case we have a relatively simple model.\n",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"Generally, parameter estimation is done by tuning the parameters of the model so that the simulation (see __[01 Simulation](01_Simulation.ipynb)__) best matches the behavior observed in some available data. This is done using a mixture of data, knowledge (e.g., from system specs), and intuition. For large, complex models, it can be VERY difficult and computationally expensive. Fortunately, in this case we have a relatively simple model.\n",
"Generally, parameter estimation is done by tuning the parameters of the model so that the simulation (see __[01 Simulation](01_Simulation.ipynb)__) best matches the behavior observed in some available data. This is done using a mixture of data, knowledge (e.g., from system specs), and intuition. For large, complex models, it can be VERY difficult and computationally expensive.\n",

We introduce the model later

"\n",
"In ProgPy, this is done using the progpy.PrognosticsModel.estimate_params() method. This method takes input and output data from one or more runs, and uses scipy.optimize.minimize function to estimate the parameters of the model. For more information, refer to our Documentation [here](https://nasa.github.io/progpy/prog_models_guide.html#parameter-estimation)\n",
"In ProgPy, this is done using the `progpy.PrognosticsModel.estimate_params()` method. This method takes input and output data from one or more runs, and uses `scipy.optimize.minimize` function to estimate the parameters of the model. For more information, refer to the documentation [here](https://nasa.github.io/progpy/prog_models_guide.html#parameter-estimation).\n",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"In ProgPy, this is done using the `progpy.PrognosticsModel.estimate_params()` method. This method takes input and output data from one or more runs, and uses `scipy.optimize.minimize` function to estimate the parameters of the model. For more information, refer to the documentation [here](https://nasa.github.io/progpy/prog_models_guide.html#parameter-estimation).\n",
"In ProgPy, parameter estimation is done using the `progpy.PrognosticsModel.estimate_params()` method. This method takes input and output data from one or more runs, and uses `scipy.optimize.minimize` function to estimate the parameters of the model. For more information, refer to the documentation [here](https://nasa.github.io/progpy/prog_models_guide.html#parameter-estimation).\n",

"* __`keys`__ `(list[str])`: Parameter keys to optimize\n",
"* __`times`__ `(list[float])`: Array of times for each run\n",
"* __`inputs`__ `(list[InputContainer])`: Array of input containers where inputs[x] corresponds to times[x]\n",
"* __`outputs`__ `(list[OutputContainer])`: Array of output containers where outputs[x] corresponds to times[x]\n",
"* __`method`__ `(str, optional)`: Optimization method- see scipy.optimize.minimize for options\n",
"* __`method`__ `(str, optional)`: Optimization method. See `scipy.optimize.minimize` for options\n",
"* __`tol`__ `(int, optional)`: Tolerance for termination. Depending on the provided minimization method, specifying tolerance sets solver-specific options to tol\n",
"* __`error_method`__ `(str, optional)`: Method to use in calculating error. See calc_error for options\n",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to link to calc_error documentation here?

]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we will show an example demonstrating model parameter estimation. In this example, we estimate the model parameters from data. In general, the data will usually be collected from the physical system or from a different model (model surrogacy). In this case, we will use the example data, below:"
"Now we will show an example demonstrating model parameter estimation. In this example, we estimate the model parameters from data. In general, the data will usually be collected from the physical system or from a different model (model surrogacy). In this case, we will use example data."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"Now we will show an example demonstrating model parameter estimation. In this example, we estimate the model parameters from data. In general, the data will usually be collected from the physical system or from a different model (model surrogacy). In this case, we will use example data."
"In this example, we estimate the model parameters from data. In general, the data will usually be collected from the physical system or from a different model (model surrogacy). In this case, we will use example data."

I don't think the first sentence adds anything not in the second sentence.

@@ -451,7 +446,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Finally, let's call estimate_params with all the collected data"
"Finally, let's call `estimate_params()` with all the collected data."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"Finally, let's call `estimate_params()` with all the collected data."
"Finally, we will call `estimate_params()` with all the collected data."

I used let's too many times in a row here

]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 4) Simplified Battery\n",
"The previous examples all used a simple model, the ThrownObject. For large, complex models, it can be VERY difficult and computationall expensive.\n",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"The previous examples all used a simple model, the ThrownObject. For large, complex models, it can be VERY difficult and computationall expensive.\n",
"The previous examples all used a simple model, the ThrownObject. For large, complex models, it can be VERY difficult and computationally expensive.\n",

"Now let's do it for the step runs. Note that this is actually multiple runs that we need to combine. \n",
"\n",
"relativeTime resets for each \"run\". So if we're going to use multiple runs together, we need to stitch these times together."
"Now let's do it for the step runs. Note that this is actually multiple runs that we need to combine. `relativeTime` resets for each \"run\". So if we're going to use multiple runs together, we need to stitch these times together."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"Now let's do it for the step runs. Note that this is actually multiple runs that we need to combine. `relativeTime` resets for each \"run\". So if we're going to use multiple runs together, we need to stitch these times together."
"Now we will do it for the step runs. Note that this is actually multiple runs that we need to combine. `relativeTime` resets for each \"run\". So if we're going to use multiple runs together, we need to stitch these times together."

Again, I use let's too much. let's fix it!

"cell_type": "markdown",
"metadata": {},
"source": [
"Let's take a look at the parameter space."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line 663, below, has too many let's.

"\n",
"We can start with setting a few parameters we know. We know that $v_L$ is about 4.2 (from the battery), we expect that the battery internal resistance is the same as that in the electrochemistry model, and we know that the capacity of this battery is significantly smaller."
"There are 7 parameters to set (assuming initial SOC is always 1). We can start with setting a few parameters we know. We know that $v_L$ is about 4.2 (from the battery), we expect that the battery internal resistance is the same as that in the electrochemistry model, and we know that the capacity of this battery is significantly smaller."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"There are 7 parameters to set (assuming initial SOC is always 1). We can start with setting a few parameters we know. We know that $v_L$ is about 4.2 (from the battery), we expect that the battery internal resistance is the same as that in the electrochemistry model, and we know that the capacity of this battery is significantly smaller."
"There are 7 parameters to set (assuming initial SOC is always 1). We can start with setting a few parameters we know. We know that $v_L$ is about 4.2 (from the battery specs). We also expect that the battery internal resistance is the same as that in the electrochemistry model (which also uses an 18650). Finally, we know that the capacity of this battery is significantly smaller than the default values for the larger pouch battery."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation, examples, or tutorial
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants