Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ env = Environment(
tomorrow = datetime.date.today() + datetime.timedelta(days=1)

env.set_date(
(tomorrow.year, tomorrow.month, tomorrow.day, 12), timezone="America/Denver"
) # Tomorrow's date in year, month, day, hour UTC format
(tomorrow.year, tomorrow.month, tomorrow.day, 12), timezone="America/Denver"
) # Tomorrow's date in year, month, day, hour UTC format

env.set_atmospheric_model(type='Forecast', file='GFS')
env.set_atmospheric_model(type="Forecast", file="GFS")
```

This can be followed up by starting a Solid Motor object. To get help on it, just use:
Expand Down Expand Up @@ -233,9 +233,7 @@ buttons = calisto.set_rail_buttons(

calisto.add_motor(Pro75M1670, position=-1.255)

nose = calisto.add_nose(
length=0.55829, kind="vonKarman", position=1.278
)
nose = calisto.add_nose(length=0.55829, kind="vonKarman", position=1.278)

fins = calisto.add_trapezoidal_fins(
n=4,
Expand Down Expand Up @@ -290,7 +288,7 @@ To actually create a Flight object, use:

```python
test_flight = Flight(
rocket=calisto, environment=env, rail_length=5.2, inclination=85, heading=0
rocket=calisto, environment=env, rail_length=5.2, inclination=85, heading=0
)
```

Expand Down
Loading