-
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into enh/air-brakes
- Loading branch information
Showing
35 changed files
with
76,958 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,2 @@ | ||
# Set to true to add reviewers to PRs | ||
addReviewers: true | ||
|
||
# Set to 'author' to add PR's author as a assignee | ||
addAssignees: author | ||
|
||
# A list of reviewers to be added to PRs (GitHub user name) | ||
reviewers: | ||
- Gui-FernandesBR | ||
- giovaniceotto | ||
- MateusStano | ||
- phmbressan | ||
|
||
# A number of reviewers added to the PR | ||
# Set 0 to add all the reviewers (default: 0) | ||
numberOfReviewers: 0 | ||
|
||
# A list of keywords to be skipped the process if PR's title include it | ||
skipKeywords: | ||
- wip | ||
- work in progress | ||
- draft |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
# basic | ||
target: auto | ||
threshold: 1% | ||
base: auto | ||
flags: | ||
- unit | ||
paths: | ||
- "rocketpy" | ||
# advanced settings | ||
branches: | ||
- master | ||
- develop | ||
if_ci_failed: error #success, failure, error, ignore | ||
informational: false | ||
only_pulls: false | ||
patch: | ||
default: | ||
# basic | ||
target: auto | ||
threshold: 1% | ||
base: auto | ||
# advanced | ||
branches: | ||
- master | ||
- develop | ||
if_ci_failed: error #success, failure, error, ignore | ||
only_pulls: false | ||
flags: | ||
- "unit" | ||
paths: | ||
- "rocketpy" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Upload to Codecov | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
codecov_token: | ||
required: true | ||
type: string | ||
os: | ||
required: true | ||
type: string | ||
python: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
upload: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload coverage report to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ inputs.codecov_token }} | ||
directory: ./coverage/reports/ | ||
env_vars: OS,PYTHON | ||
files: ./coverage.xml, ./rocketpy/coverage.xml | ||
flags: unittests | ||
name: codecov-umbrella | ||
verbose: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Rocket Launch | ||
============= | ||
Projeto Jupiter is a rocket design team from the Univ. of São Paulo, Brazil | ||
They launched the rocket `Juno III` at the SACup 2023 (10k Solid SRAD) | ||
The rocket flew at June 23rd, around 17hrs local time. | ||
|
||
Data Permission | ||
=============== | ||
Juliana Carloni (Projeto Jupiter) shared the data with the RocketPy Team in | ||
2023 right after launch. | ||
|
||
Highlights | ||
========== | ||
Apogee registered at Flight Card: `3213 m` | ||
Last simulated apogee before Flight: `3026.054 m` | ||
Flight performance: Only the drogue chute was ejected. | ||
|
||
Data | ||
==== | ||
3 different datasets are available, from 3 different sources: | ||
- cots_altimeter.csv : This COTS altimeter (RRC3) logged the altitude and pressure. | ||
- cots_GNSS.csv : A log from the COTS GNSS sensor. | ||
- srad_telemetry : SRAD telemetry data logged by the team. This might be noisy. |
Oops, something went wrong.