Space Engineers Wiki
(→‎Equation: updated equation variable names to suit standard convention)
(→‎Example: Made example steps more explicit)
Line 57: Line 57:
 
{{Math table
 
{{Math table
 
|steps=
 
|steps=
{{Math step|Calculate small thruster force|math= 4({{formatnum:{{#var:SmForce}}}} \text{N}) = {{formatnum:{{#expr:4*{{#var:SmForce}}}}}} \text{N} }}
+
{{Math step|Calculate small thruster force|math= N_s F_s = 4 \times {{formatnum:{{#var:SmForce}}}} \text{N} = {{formatnum:{{#expr:4*{{#var:SmForce}}}}}} \text{N} }}
{{Math step|Add the large thruster.|math={{formatnum:{{#vardefineecho:TotalForce|{{#expr:(4*{{#var:SmForce}})+{{#var:LgForce}}}}}}}} \text{N} }}
+
{{Math step|Add the large thruster.|math= N_s F_s + N_l \times F_l = {{formatnum:{{#expr:4*{{#var:SmForce}}}}}} \text{N} + 1 \times {{formatnum:{{#var:LgForce}}}} = {{formatnum:{{#vardefineecho:TotalForce|{{#expr:(4*{{#var:SmForce}})+{{#var:LgForce}}}}}}}} \text{N} }}
{{Math step|Calculate acceleration.|math=a=\frac { {{formatnum:{{#var:TotalForce}}}} \text{N} } { {{formatnum:{{#var:Mass}}}} \text{kg} } = {{formatnum:{{#vardefineecho:ExampleAccel|{{#expr:({{#var:TotalForce}}/{{#var:Mass}}) round 2}}}}}} \text{m/s}^2 }}
+
{{Math step|Calculate acceleration.|math=a=\frac{ {{formatnum:{{#var:TotalForce}}}} \text{N} }{ {{formatnum:{{#var:Mass}}}} \text{kg} } = {{formatnum:{{#vardefineecho:ExampleAccel|{{#expr:({{#var:TotalForce}}/{{#var:Mass}}) round 2}}}}}} \text{m} \text{s}^{-2} }}
 
}}
 
}}
   

Revision as of 23:20, 28 January 2015

ThrusterMechanics

Thruster Placement

Thrusters can be placed anywhere on a ship. Unlike in real-world physics, thrusters do not apply any torque to the ship. Instead, they apply linear thrust in the direction opposite the nozzle.

There is an exception to this, however. If a ship is docked to another ship or heavy cargo, via magnetic landing gear, the other object's mass can cause the ship to rotate under acceleration. For more information on this, and how to avoid it, see docking.

For example, you see the aft thrusters of a carrier firing in the image above. Even though these thrusters are mounted on pylons far below the center of mass, they will accelerate the carrier forward without causing it to rotate. However, if heavy ships are docked in the hangar bay, the aft thrusters may cause the carrier to pitch upwards when fired.

Enclosing thrusters

Thrusters require clear space to avoid damaging other objects. Exceptions to this are: small ship thrusters don't damage heavy armor blocks on Stations or Large Ships (so you can build landing platforms), and asteroids.

A Icon Block Small Thruster Small Thruster on a Small Ship destroys an area of 3x3x4 (width, height, depth) behind the exhaust, assuming the space is completely enclosed and filled. A small thruster is capable of dealing damage of up to 5 blocks depth over open space.

Prior to Update 01.022, thrusters did not require open space to function. It was possible to enclose a thruster on all six sides without impacting its performance.

This has been the subject of heated debate on the Space Engineers forum. Some users consider it a bug while others consider it a feature. Even so, it was heavily exploited by designers building replicas of famous sci-fi spacecraft. Many of these designs lack a sufficient number of exterior thrusters to move them, if they have any at all. Thruster Damage can be toggled on and off in world settings, causing enclosed thrusters to destroy the blocks behind them or allowing them to function safely.

Capacity

When active, inertial dampeners can use 100% of the maximum capacity of all necessary thrusters. However, when fired manually via the 'w', 'a', 's', or 'd' keys, thrusters will only operate at 2/3 maximum capacity. The listed power and force ratings on the Icon Block Large Thruster Large Thruster and Icon Block Small Thruster Small Thruster pages reflect maximum capacity. When attempting calculations for a manual burn, remember to multiply these values by 2/3.

Calculating acceleration

According to physics, we know that force = mass x acceleration. Using algebra, we can then determine that acceleration = force / mass. But what does this mean, exactly?

Units

  • Force: Newtons (N), 1 N = 1 kgm/s2
  • Mass: Kilograms (kg)
  • Acceleration: meters per second per second (m/s2)

Constants

  • Thrusters only provide 2/3 of maximum power when manually fired.
  • Inertial dampeners use thrusters' maximum power.
  • Icon Block Small Thruster Small Thruster:
    • Small ship: 18,165 N maximum, 12,110 N on manual burn.
    • Large ship: 150,660 N maximum, 100,440 N on manual burn.
  • Icon Block Large Thruster Large Thruster:
    • Small ship: 218,250 N maximum, 145,500 N on manual burn.
    • Large ship: 1,815,000 N maximum, 1,210,000 N on manual burn.

Equation

To calculate the acceleration of your ship, use the following formula:

Where:
: Acceleration (m s-2)
: Number of large thrusters
: Force of each large thruster (N)
: Number of small thrusters
: Force of each small thruster (N)
: Mass of the ship (kg)


Example

Let's assume we have a 15000kg small ship with one large thruster and four small ones pointing aft. We want to know how fast we'll accerate when we press 'w'.

Steps:
1. Calculate small thruster force
2. Add the large thruster.
3. Calculate acceleration.


Calculating time to velocity

Sometimes, it may be important to know how long it will take to accelerate to a particular speed. To calculate the amount this, you first need the rate of acceleration calculated above. Then, since we know that velocity = acceleration * time, you can use algebra to find the following equation:

Equation


Where:
: Change in velocity (m/s)
: Acceleration (m/s2)
: Final velocity (m/s)
: Initial velocity (m/s)


Example

Our ship in the previous example had an acceleration of 12.93 m/s2. If we want to know how long it takes to accelerate from a stop up to the game's speed limit, we simply fill in the equation:

Steps:
1. Get delta-v.
2. Calculate time.


Distance traveled

Another useful thing to know is how far you'll travel while accelerating. For example, if we plan on docking with a station or carrier, it's good to know exactly how close we can get before we have to start slowing down. For this, we need to know our initial velocity, our acceleration, and the time.

Equation

Where:
: Distance (m))
: Initial velocity (m/s)
: Acceleration (m/s2
: Time (s))


Example

Let's say we've got a small ship up near the speed limit at 100m/s. We want to slow down to about 10m/s in order to dock safely. Our ship isn't really designed for rapid deceleration, so our forward thrusters only generate an acceleration of 15m/s2. (Note: since we're decelerating, we use -15m/s2.)

Steps:
1. Calculate how much time it'll take.
2.
3.
4. Then figure out how much distance we need.
5.
6.
7.
8.


So we need at least 330m to drop down to our safe speed.

When doing these calculations, it's important to remember that you get more power from inertial dampeners than from manual thrusters. It's even more important to remember your ship can have a different acceleration depending on how many thrusters point away from where you're moving.

Since most ships have more aft thrusters than fore thrusters, you can run into problems if you base all your calculations off aft inertial dampeners. You may well find yourself merging your hull into the side of a station.

Multiple thrust vectors