Skip to content

Commit a26284e

Browse files
Merge branch 'develop' into enh/populate-changelog
2 parents d636b23 + b0bc810 commit a26284e

File tree

24 files changed

+1369
-1311
lines changed

24 files changed

+1369
-1311
lines changed

.pylintrc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,6 @@ recursive=no
9999
# source root.
100100
source-roots=
101101

102-
# When enabled, pylint would attempt to guess common misconfiguration and emit
103-
# user-friendly hints instead of false-positive error messages.
104-
suggestion-mode=yes
105-
106102
# Allow loading of arbitrary C extensions. Extensions are imported into the
107103
# active Python interpreter and may run arbitrary code.
108104
unsafe-load-any-extension=no

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Attention: The newest changes should be on top -->
5252

5353
### Changed
5454

55+
- ENH: Improve multi-variable drag compatibility, regular-grid handling, and related tests/docs [#927](https://github.com/RocketPy-Team/RocketPy/pull/927/changes)
5556
- ENH: replace if elif else chains with match statement [#921](https://github.com/RocketPy-Team/RocketPy/pull/921/changes)
5657
- ENH: Refactor Flight class to improve time node handling and sensor/controllers [#843](https://github.com/RocketPy-Team/RocketPy/pull/843)
5758

@@ -61,6 +62,7 @@ Attention: The newest changes should be on top -->
6162
- BUG: energy_data plot not working for 3 dof sims [[#906](https://github.com/RocketPy-Team/RocketPy/issues/906)]
6263
- BUG: Fix CSV column header spacing in FlightDataExporter [#864](https://github.com/RocketPy-Team/RocketPy/issues/864)
6364
- BUG: Fix parallel Monte Carlo simulation showing incorrect iteration count [#806](https://github.com/RocketPy-Team/RocketPy/pull/806)
65+
- BUG: Fix missing titles in roll parameter plots for fin sets [#934](https://github.com/RocketPy-Team/RocketPy/pull/934)
6466
- BUG: Duplicate _controllers in Flight.TimeNodes.merge() [#931](https://github.com/RocketPy-Team/RocketPy/pull/931)
6567

6668
## [v1.11.0] - 2025-11-01

docs/user/function.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,13 @@ plotted as follows:
9090

9191
.. important::
9292

93-
The ``Function`` class only supports interpolation ``shepard`` and \
94-
extrapolation ``natural`` for datasets higher than one dimension (more than \
95-
one input).
93+
For datasets higher than one dimension (more than one input), the
94+
``Function`` class supports interpolation ``linear``, ``shepard``, ``rbf``
95+
and ``regular_grid``.
96+
97+
The ``regular_grid`` interpolation requires a complete Cartesian grid and
98+
must be provided as ``(axes, grid_data)``. See the ``Function`` API
99+
documentation for details.
96100

97101
CSV File
98102
^^^^^^^^
@@ -183,7 +187,7 @@ In this section we are going to delve deeper on ``Function`` creation and its pa
183187
- source: the ``Function`` data source. We have explored this parameter in the section above;
184188
- inputs: a list of strings containing each input variable name. If the source only has one input, may be abbreviated as a string (e.g. "speed (m/s)");
185189
- outputs: a list of strings containing each output variable name. If the source only has one output, may be abbreviated as a string (e.g. "total energy (J)");
186-
- interpolation: a string that is the interpolation method to be used if the source is a dataset. Defaults to ``spline``;
190+
- interpolation: a string that is the interpolation method to be used if the source is a dataset. For N-D datasets, supported options are ``linear``, ``shepard``, ``rbf`` and ``regular_grid``. Defaults to ``spline`` for 1-D and ``shepard`` for N-D datasets;
187191
- extrapolation: a string that is the extrapolation method to be used if the source is a dataset. Defaults to ``constant``;
188192
- title: the title to be shown in the plots.
189193

docs/user/rocket/generic_surface.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,16 +243,17 @@ independent variables:
243243
- ``beta``: Side slip angle.
244244
- ``mach``: Mach number.
245245
- ``reynolds``: Reynolds number.
246-
- ``q``: Pitch rate.
247-
- ``r``: Yaw rate.
248-
- ``p``: Roll rate.
246+
- ``pitch_rate``: Pitch rate.
247+
- ``yaw_rate``: Yaw rate.
248+
- ``roll_rate``: Roll rate.
249249

250250
The last column must be the coefficient value, and must contain a header,
251251
though the header name can be anything.
252252

253253
.. important::
254254
Not all columns need to be present in the file, but the columns that are
255-
present must be named, **and ordered**, as described above.
255+
present must be correctly named as described above. Independent variable
256+
columns can be in any order.
256257

257258
An example of a ``.csv`` file is shown below:
258259

0 commit comments

Comments
 (0)