Skip to content

Commit dac833e

Browse files
committed
MNT: Update CHANGELOG.
1 parent 6a4c0f2 commit dac833e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3131
Attention: The newest changes should be on top -->
3232

3333
### Added
34-
34+
- ENH: Discretized and No-Pickle Encoding Options [#827] (https://github.com/RocketPy-Team/RocketPy/pull/827)
35+
3536

3637
### Changed
3738

rocketpy/rocket/aero_surface/fins/fins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ def to_dict(self, **kwargs):
441441
cl = self.cl
442442
if kwargs.get("discretize", False):
443443
cl = cl.set_discrete(
444-
(-np.pi / 12, 0), (np.pi / 12, 2), (50, 50), mutate_self=False
444+
(-np.pi / 12, 0), (np.pi / 12, 2), (10, 10), mutate_self=False
445445
)
446446

447447
data.update(

rocketpy/rocket/aero_surface/nose_cone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def to_dict(self, **kwargs):
539539
if kwargs.get("discretize", False):
540540
clalpha = clalpha.set_discrete(0, 2, 50)
541541
cl = cl.set_discrete(
542-
(-np.pi / 12, 0), (np.pi / 12, 2), (50, 50), mutate_self=False
542+
(-np.pi / 12, 0), (np.pi / 12, 2), (10, 10), mutate_self=False
543543
)
544544
data["cp"] = self.cp
545545
data["clalpha"] = clalpha

rocketpy/rocket/aero_surface/tail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def to_dict(self, **kwargs):
220220
if kwargs.get("discretize", False):
221221
clalpha = clalpha.set_discrete(0, 2, 50)
222222
cl = cl.set_discrete(
223-
(-np.pi / 12, 0), (np.pi / 12, 2), (50, 50), mutate_self=False
223+
(-np.pi / 12, 0), (np.pi / 12, 2), (10, 10), mutate_self=False
224224
)
225225

226226
data.update(

0 commit comments

Comments
 (0)