Skip to content

Commit 8790148

Browse files
committed
Resolve review comments
1 parent 6918895 commit 8790148

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/01_Simulation.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
"cell_type": "markdown",
188188
"metadata": {},
189189
"source": [
190-
"In the first section we introduced simulating to a set time. For most applications, users are not interested in the system evolution over a certain timeperiod, but instead in simulating to some event of interest.\n",
190+
"In the first section we introduced simulating to a set time. For most applications, users are not interested in the system evolution over a certain time period, but instead in simulating to some event of interest.\n",
191191
"\n",
192192
"In this section we will introduce the concept of simulating until an event occurs. This section builds upon the concepts introduced in the previous section.\n",
193193
"\n",
@@ -208,7 +208,7 @@
208208
"cell_type": "markdown",
209209
"metadata": {},
210210
"source": [
211-
"If you recall, the ThrownObject model is of an object thrown into the air. The model has two events, `impact` and `falling`. In a real prognostic models, these events will likely correspond with some failure, fault, or warning threshold. That said, events can be any event of interest that a user would like to predict. \n",
211+
"If you recall, the ThrownObject model is of an object thrown into the air. The model has two events, `impact` and `falling`. In real prognostic models, these events will likely correspond with some failure, fault, or warning threshold. That said, events can be any event of interest that a user would like to predict. \n",
212212
"\n",
213213
"Now let's repeat the simulation from the previous example, this time simulating until an event has occured by using the [`simulate_to_threshold`](https://nasa.github.io/progpy/api_ref/prog_models/PrognosticModel.html#prog_models.PrognosticsModel.simulate_to_threshold) method."
214214
]
@@ -235,9 +235,9 @@
235235
"cell_type": "markdown",
236236
"metadata": {},
237237
"source": [
238-
"By default, `simulate_to_threshold` simulates until the first event occurs. In this case, that's `falling` (i.e., when the object begins falling). For this model `falling` will always occur before `impact`, but for many models you wont have such a strict ordering of events. \n",
238+
"By default, `simulate_to_threshold` simulates until the first event occurs. In this case, that's `falling` (i.e., when the object begins falling). For this model `falling` will always occur before `impact`, but for many models you won't have such a strict ordering of events. \n",
239239
"\n",
240-
"For users interested in when a specific event is reached, you can indicate that using the `threshold_keys` argument. For example,"
240+
"For users interested in when a specific event is reached, you can indicate which event(s) you'd like to simulate to using the `threshold_keys` argument. For example,"
241241
]
242242
},
243243
{

0 commit comments

Comments
 (0)