Skip to content

Commit

Permalink
Merge pull request #172 from Projeto-Jupiter/enh/elliptical_fins
Browse files Browse the repository at this point in the history
ENH: Elliptical fins added to Rocket class
  • Loading branch information
MateusStano authored Aug 21, 2022
2 parents abf3269 + 56a6916 commit ed262bc
Show file tree
Hide file tree
Showing 16 changed files with 3,474 additions and 1,642 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ Calisto.setRailButtons([0.2, -0.5])

NoseCone = Calisto.addNose(length=0.55829, kind="vonKarman", distanceToCM=0.71971)

FinSet = Calisto.addFins(4, span=0.100, rootChord=0.120, tipChord=0.040, distanceToCM=-1.04956)
FinSet = Calisto.addTrapezoildalFins(4, span=0.100, rootChord=0.120, tipChord=0.040, distanceToCM=-1.04956)

Tail = Calisto.addTail(topRadius=0.0635, bottomRadius=0.0435, length=0.060, distanceToCM=-1.194656)
```
Expand Down Expand Up @@ -287,7 +287,7 @@ Once the TestFlight object is created, your simulation is done! Use the followin
TestFlight.info()
```

To seel all available results, use:
To see all available results, use:

```python
TestFlight.allInfo()
Expand Down
1,745 changes: 1,500 additions & 245 deletions docs/matlab/Getting_Started.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/matlab/Getting_Started.m
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
'distanceToCM', 0.71971 ...
));

FinSet = rocketpy.Rocket.addFins(pyargs( ...
FinSet = rocketpy.Rocket.addTrapezoidalFins(pyargs( ...
'self', Calisto, ...
'n', int32(4), ...
'span', 0.100, ...
Expand Down
Loading

0 comments on commit ed262bc

Please sign in to comment.