-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding quadtailsitter to gz-sim * Tuned aerodynamics coefficients by increased drag coefficients and larger surface area of the link --------- Co-authored-by: Claudio Chies <[email protected]>
- Loading branch information
1 parent
9e47793
commit 019f63e
Showing
8 changed files
with
955 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0"?> | ||
<model> | ||
<name>airspeed</name> | ||
<version>1.0</version> | ||
<sdf version='1.6'>model.sdf</sdf> | ||
|
||
<author> | ||
<name>Pernilla Wikström</name> | ||
<email>[email protected]</email> | ||
</author> | ||
|
||
<description> | ||
Airspeed sensor model | ||
</description> | ||
</model> |
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,39 @@ | ||
<?xml version="1.0" ?> | ||
<sdf version="1.6"> | ||
<model name="airspeed"> | ||
<link name="airspeed_link"> | ||
<pose>0 0 0 0 0 0</pose> | ||
<inertial> | ||
<pose>0 0 0 0 0 0</pose> | ||
<mass>0.015</mass> | ||
<inertia> | ||
<ixx>1e-05</ixx> | ||
<ixy>0</ixy> | ||
<ixz>0</ixz> | ||
<iyy>1e-05</iyy> | ||
<iyz>0</iyz> | ||
<izz>1e-05</izz> | ||
</inertia> | ||
</inertial> | ||
<visual name="visual"> | ||
<pose>0 0 0 0 1.57 0</pose> | ||
<geometry> | ||
<cylinder> | ||
<radius>0.004</radius> | ||
<length>0.08</length> | ||
</cylinder> | ||
</geometry> <!-- Black --> | ||
<material> | ||
<diffuse>0.0 0.0 0.0</diffuse> | ||
<specular>0.5 0.5 0.5</specular> | ||
</material> | ||
</visual> | ||
<sensor name="air_speed" type="air_speed"> | ||
<pose>0 0 0 0 0 0</pose> | ||
<update_rate>5.0</update_rate> | ||
<always_on>1</always_on> | ||
<visualize>false</visualize> | ||
</sensor> | ||
</link> | ||
</model> | ||
</sdf> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,16 @@ | ||
<?xml version="1.0"?> | ||
<model> | ||
<name>quadtailsitter</name> | ||
<version>1.0</version> | ||
<sdf version='1.6'>model.sdf</sdf> | ||
|
||
<author> | ||
<name>Pernilla Wikström</name> | ||
<email>[email protected]</email> | ||
</author> | ||
|
||
<description> | ||
This is a model of a quad tailsitter, modelling the Swan K1. | ||
Model provided by Holybro | ||
</description> | ||
</model> |
Oops, something went wrong.