@@ -76,7 +76,7 @@ def dome_envelope(
7676
7777
7878def dome_middle (x , y , radius , min_lb , center = (5.0 , 5.0 )):
79- """Update middle of the dome based in the parameters
79+ """Compute middle of the dome based on the parameters.
8080
8181 Parameters
8282 ----------
@@ -112,7 +112,7 @@ def dome_middle(x, y, radius, min_lb, center=(5.0, 5.0)):
112112
113113
114114def dome_bounds (x , y , thk , min_lb , center = (5.0 , 5.0 ), radius = 5.0 ):
115- """Update upper and lower bounds of the dome based in the parameters
115+ """Compute upper and lower bounds of the dome based on the parameters.
116116
117117 Parameters
118118 ----------
@@ -155,7 +155,7 @@ def dome_bounds(x, y, thk, min_lb, center=(5.0, 5.0), radius=5.0):
155155
156156
157157def dome_bounds_derivatives (x , y , thk , min_lb , center = (5.0 , 5.0 ), radius = 5.0 ):
158- """Update sensitivities of upper and lower bounds of the dome based in the parameters
158+ """Compute sensitivities of upper and lower bounds of the dome based on the parameters.
159159
160160 Parameters
161161 ----------
@@ -204,11 +204,11 @@ def dome_bounds_derivatives(x, y, thk, min_lb, center=(5.0, 5.0), radius=5.0):
204204 dlbdx [i , i ] = 1 / 2 / zi * - 2 * (x [i ] - xc )
205205 dlbdy [i , i ] = 1 / 2 / zi * - 2 * (y [i ] - yc )
206206
207- return dub , dlb , dubdx , dubdy , dlbdx , dlbdy
207+ return dub , dlb
208208
209209
210210def dome_bound_react (x , y , thk , fixed , center = (5.0 , 5.0 ), radius = 5.0 ):
211- """Updates the ``b`` parameter of a dome for a given thickness
211+ """Computes the reaction bounds of a dome for a given thickness
212212
213213 Parameters
214214 ----------
@@ -228,7 +228,7 @@ def dome_bound_react(x, y, thk, fixed, center=(5.0, 5.0), radius=5.0):
228228 Returns
229229 -------
230230 b : array
231- The ``b`` parameter
231+ The reaction bounds
232232 """
233233
234234 [xc , yc ] = center [:2 ]
@@ -246,7 +246,7 @@ def dome_bound_react(x, y, thk, fixed, center=(5.0, 5.0), radius=5.0):
246246
247247
248248def dome_bound_react_derivatives (x , y , thk , fixed , center = (5.0 , 5.0 ), radius = 5.0 ):
249- """Updates the ``db`` parameter of a dome for a given thickness
249+ """Computes the reaction bounds derivatives of a dome for a given thickness
250250
251251 Parameters
252252 ----------
@@ -266,7 +266,7 @@ def dome_bound_react_derivatives(x, y, thk, fixed, center=(5.0, 5.0), radius=5.0
266266 Returns
267267 -------
268268 db : array
269- The sensitivity of the ``b`` parameter
269+ The sensitivity of the reaction bounds
270270 """
271271
272272 [xc , yc ] = center [:2 ]
0 commit comments