ForHosting KIT · Developer Utilities

G-force calculator

The g-force calculator converts linear acceleration in metres per second squared into multiples of standard gravity, or performs the reverse conversion from a g-force value.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

It uses the conventional standard-gravity constant of 9.80665 m/s², giving a clear and repeatable result for engineering notes, vehicle testing, ride analysis, laboratory work, and classroom calculations. Enter exactly one value and the calculator returns both representations, including negative values when acceleration acts in the opposite direction.

What a g-force value represents

G-force is a convenient way to express acceleration relative to standard gravity. A result of 1 g corresponds to 9.80665 metres per second squared, while 2 g corresponds to twice that acceleration. Despite its familiar name, g-force is not a separate force unit and does not by itself state the force on an object. Force also depends on mass through Newton’s second law. This calculator focuses on the acceleration ratio: it tells you how large a linear acceleration is compared with the standard reference. Positive and negative signs are preserved, so a negative result can describe acceleration along the direction you have chosen as negative. The sign is therefore directional, not a statement that the physical magnitude is impossible. This distinction matters in vehicle telemetry, motion studies, and test data, where braking and acceleration may use opposite signs. The returned standard-gravity field makes the reference constant explicit, so reports and calculations remain auditable rather than relying on an unstated rounded value such as 9.8 m/s².

How to convert in either direction

To convert acceleration into g-force, provide acceleration_m_s2. The calculator divides that number by 9.80665. For example, an acceleration of 19.6133 m/s² is exactly 2 g under the standard definition. To work in the other direction, provide g_force and the calculator multiplies it by 9.80665 to return metres per second squared. Supply exactly one input because two simultaneous values could conflict and make it unclear which one should control the answer. Numeric strings are accepted by the computation layer for API and text-based clients, but blank text, words, booleans, objects, NaN, and infinite values are rejected. The arithmetic is deterministic and uses no network request, random value, or current time. Results are normalized to a stable practical precision so repeated requests produce matching JSON. Standard gravity is a defined conventional constant rather than the locally measured gravitational acceleration at a particular place. If your experiment requires local gravity, apply that separate measured value instead of treating this conversion as a local gravimeter calculation.

Interpreting and using the result responsibly

Use the result as a conversion between two descriptions of the same linear acceleration. It is useful when an accelerometer exports m/s² but a specification, safety note, or test report discusses g, and it is equally useful when a stated g rating must be expressed in SI units for another equation. Check the coordinate convention before comparing signed readings from different instruments: one device may call upward positive while another uses the vehicle’s forward axis or a sensor-local axis. For three-axis measurements, this calculator converts one supplied scalar; it does not combine x, y, and z components into a resultant magnitude, remove the static gravity component, filter vibration, or estimate human injury risk. Those tasks require additional context and signal processing. A peak sensor sample can also differ substantially from a time-averaged exposure, so do not infer duration from the converted number. Keep enough significant figures for the accuracy of the source measurement rather than treating every displayed digit as measured certainty. In documentation, state whether your number is signed, absolute, peak, average, or axis-specific so another reader can reproduce the interpretation.

Convert vehicle test data

Turn acceleration readings in m/s² into g values for braking, launch, and cornering reports.

Prepare an engineering calculation

Convert a specified g rating back to SI acceleration before using it in a formula or simulation.

Check laboratory and classroom work

Verify a bidirectional conversion with the standard-gravity constant shown directly in the result.

What value does the calculator use for standard gravity?

It uses exactly 9.80665 m/s², the conventional value of standard gravity.

How much does the API request cost?

The API costs $0.002 per request. The browser calculator is available without an API request.

Can I enter a negative acceleration or g-force?

Yes. The sign is preserved and can represent acceleration along the negative direction of your chosen axis.

Can I provide both input values?

No. Provide exactly one of acceleration_m_s2 or g_force so there is one unambiguous source value.

Does this calculate force on a person or object?

No. It converts acceleration. Calculating force also requires mass, and assessing human effects requires direction, duration, posture, and other context.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/mech/g-force-acceleration

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/mech/g-force-acceleration \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"acceleration_m_s2":19.6133}'
{
  "acceleration_m_s2": 19.6133
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "mech.g_force_acceleration",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →