Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Calculate Center of Thrust

+3
−0

If I have a rocket with some known number of engines $n$, each producing thrust with arbitrary direction $T_n$ and center of thrust $r_n$, the total thrust amount and direction $T_{total}$ is equal to the sum of all thrust vectors:

$$ T_{total}=\sum_i^nT_n $$

How is the center of thrust calculated from these parameters?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Not sure you can based on only that data? (2 comments)

1 answer

+3
−0

The center of thrust is effectively the weighted average of all the thrust locations. The weighting for each location is proportional to how much the thrust from that location contributes to the overall thrust. That is simply the dot product of the thrust from the specific location to the total thrust.

For example, if you have 5 engines with each producing a thrust of (0, 0, 10), then the total thrust is (0, 0, 50). The dot product of each individual thrust with the total thrust is the same (500), so the location of each individual thrust is weighted equally in the final location "average".

Each individual weight is the individual dot product, divided by the total of all the dot products. In the above example, each dot product is 500, and the total is 2500. In this case of five identical engines pointing in identical directions, the individual weights of each thrust location are 500/2500 = 1/5, which is the same as a straight average.

Note that this method correctly ignores thrust that is perpendicular to the total thrust. Suppose the above example included two small engines with thrusts of (2, 0, 0) and (-2, 0, 0). Intuitively you can see that their thrusts cancel out. Mathematically, their dot products with the total thrust are 0, so their locations are averaged into the total with 0 weight, meaning they are ignored.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »