-
Notifications
You must be signed in to change notification settings - Fork 15
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
base: dev
Are you sure you want to change the base?
Conversation
lymichelle21
commented
Mar 31, 2025
- Add table of contents
- Fix formatting for consistency
Thank you for opening this PR. Each PR into dev requires a code review. For the code review, look at the following:
|
There was a problem hiding this 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!
Co-authored-by: Katy Jarvis Griffith <[email protected]>
This reverts commit af27c02.
There was a problem hiding this 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", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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", |
There was a problem hiding this comment.
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." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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." |
There was a problem hiding this comment.
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." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"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." |