Back to blog

Starship Flight 14: The First Attempt to Reach Orbit on September 22

Hello HaWkers, SpaceX has set September 22, 2026, at the earliest, for Starship's most important attempt yet. Flight 14 is intended to place the upper stage into Earth orbit for the first time, carrying 26 Starlink V3 satellites to a target altitude of 275 kilometers. The announced window opens at 7:15 a.m. Central Time in the United States and lasts 75 minutes, but the flight still depends on final regulatory approval.

Why is “reaching orbit” so different from merely reaching space, and what needs to work for this mission not to become just another suborbital hop? In this article, we will separate announcements from results, reconstruct the trajectory with reproducible calculations, and understand why payload delivery, controlled reentry, and reuse are distinct challenges.

What SpaceX Announced for Flight 14

The official Starship Flight 14 page presents the mission as the 14th flight campaign of the Starship/Super Heavy system and the first attempt to insert the upper stage into orbit. “As early as” is the decisive phrase: September 22 is the first opportunity, not a promise of liftoff. Weather, technical inspections, range availability, and authorization from the Federal Aviation Administration may change the schedule.

The published plan calls for a launch from Starbase, Texas, at 7:15 a.m. CT, or 12:15 UTC, within a 75-minute window. The vehicle is expected to carry 26 Starlink V3 satellites and attempt to deploy them into an orbit of approximately 275 kilometers. The mission will perform the insertion burn only if the team confirms sufficient redundancy in the systems needed to execute the deorbit burn afterward.

That final condition is operational prudence, not a bureaucratic detail. A huge stage placed into orbit without a reliable way to leave it becomes a hazard. Therefore, an issue detected during ascent may lead mission control to retain the suborbital profile, even if the engines and trajectory could still support further acceleration.

Specialized coverage also reports that the mission will not attempt to catch either Starship or Super Heavy with the tower. The priority is to prove orbital cargo transport and controlled return without stacking every reuse experiment into the same flight.

Reaching Space Does Not Mean Entering Orbit

A spacecraft can cross a conventional boundary of space and still fall back a few minutes later. To orbit, it must acquire enough horizontal velocity to keep “falling” around Earth's curvature. In a circular orbit at 275 kilometers, the ideal speed is close to 7.74 kilometers per second, before accounting for losses and maneuvers.

We can check the order of magnitude with the equation v = √(μ/r), using Earth's gravitational parameter and the distance between the vehicle and the planet's center:

const MU_TERRA = 3.986004418e14 // m³/s²
const RAIO_TERRA = 6_371_000 // meters, mean approximation
const ALTITUDE = 275_000 // target altitude announced for Flight 14

const raioOrbital = RAIO_TERRA + ALTITUDE
const velocidade = Math.sqrt(MU_TERRA / raioOrbital)
const periodo = 2 * Math.PI * Math.sqrt(raioOrbital ** 3 / MU_TERRA)

console.log(`Velocidade circular: ${(velocidade / 1000).toFixed(2)} km/s`)
console.log(`Período aproximado: ${(periodo / 60).toFixed(1)} minutos`)

The result is approximately 7.74 km/s and 89.7 minutes per orbit. It is not an exact prediction for the mission: Earth is not a perfect sphere, the deployment orbit may be elliptical, and the vehicle loses energy to gravity, drag, and thrust direction. The calculation illustrates the change in category. Climbing hundreds of kilometers is difficult; accelerating sideways to nearly 28,000 km/h is what turns a high-altitude flight into an orbital one.

An altitude of 275 kilometers is also a low orbit, where residual atmospheric drag still exists. That helps limit how long objects remain there if they do not raise their own orbit, but it requires functional satellites to use propulsion to reach and maintain their operational positions.

The 26 Starlink V3 Satellites Make This a Cargo Mission

Previous flights tested doors, dispensers, or simulators. Flight 14 is intended to carry 26 real V3 units, connecting Starship's development with Starlink's commercial expansion. For the first time, success will not be measured only by rocket telemetry: deployment, contact, and the satellites' ability to begin operating will also count.

In the corporate prospectus published in June 2026, SpaceX says each Starlink V3 was designed to provide 1 Tbps of downlink capacity. The same document projects up to 60 V3 units per Starship launch and says this could represent 20 times more capacity deployed per mission than a Falcon 9. These are company design goals and expectations, not performance already demonstrated by Flight 14.

The difference between 26 and as many as 60 units makes sense on a first orbital flight. An experimental campaign needs to preserve margins, observe structural behavior, and reduce the cost of failure. Carrying less than the announced future capacity allows SpaceX to validate the separation system with real payloads without pretending the architecture has already reached its final cadence or utilization.

A small calculation makes the theoretical scale clear without confusing network capacity with an individual user's speed:

const missaoInicial = { satelites: 26, tbpsPorSatelite: 1 }
const metaPorLancamento = { satelites: 60, tbpsPorSatelite: 1 }

function capacidadeProjetada({ satelites, tbpsPorSatelite }) {
  // Adds nominal downlink capacity; does not discount coverage, interference, or overhead.
  return satelites * tbpsPorSatelite
}

console.log(`${capacidadeProjetada(missaoInicial)} Tbps nominais no lote inicial`)
console.log(`${capacidadeProjetada(metaPorLancamento)} Tbps nominais na meta de 60 unidades`)

The number should not be converted directly into residential plans. Useful capacity depends on geographic distribution, gateways, spectrum, terminals, simultaneous demand, and constellation operations. Even so, it explains why Starship matters to Starlink: larger and more numerous satellites per flight could change the economics of deployment.

Orbital Insertion Depends on a Safe Exit

The announced profile includes a gate before the burn that transforms the trajectory into an orbit. The team must verify that the critical hardware for the subsequent deorbit burn remains redundant. If the answer is no, the vehicle will not proceed into an orbit it may be unable to leave in a controlled manner.

This kind of decision becomes easier to understand when modeled as a state machine. The example below does not reproduce SpaceX software; it shows how safety requirements can prevent a transition even when primary propulsion is available:

function decidirInsercao(telemetria) {
  const podeInserir =
    telemetria.navegacaoNominal &&
    telemetria.propulsaoNominal &&
    telemetria.redundanciaParaDesorbitar >= 2

  if (!podeInserir) {
    return {
      estado: 'PERFIL_SUBORBITAL',
      motivo: 'Requisitos de inserção e desorbitação não atendidos',
    }
  }

  return { estado: 'AUTORIZAR_INSERCAO_ORBITAL' }
}

console.log(decidirInsercao({
  navegacaoNominal: true,
  propulsaoNominal: true,
  redundanciaParaDesorbitar: 1,
}))

In critical systems, the important question is not merely “can I execute the next action?” but “will I still have safe options afterward?” The same logic appears in databases, remote updates, and infrastructure: a migration should begin only when rollback is also available.

The FAA explains that its evaluation covers public safety, environmental impacts, financial responsibility, and national security or foreign policy concerns. Therefore, “pending regulatory approval” is not a formality that can be dismissed. The company's announcement and the operating license are different pieces of the same calendar.

The Mission Clock and Time Zones

The announced time of 7:15 a.m. CT on September 22 corresponds to 12:15 UTC. For anyone following from Brazil, September still falls outside North American standard time in some time-zone references, and manually converting abbreviations such as CT or CDT makes errors easy. The best practice is to use the region's IANA identifier and treat the published time as information subject to change.

This example formats the same instant in UTC, Brasília time, and the local time at Starbase:

const aberturaUtc = new Date('2026-09-22T12:15:00Z')
const zonas = [
  ['UTC', 'UTC'],
  ['Starbase', 'America/Chicago'],
  ['Brasília', 'America/Sao_Paulo'],
]

for (const [rotulo, timeZone] of zonas) {
  const horario = new Intl.DateTimeFormat('pt-BR', {
    timeZone,
    dateStyle: 'full',
    timeStyle: 'long',
  }).format(aberturaUtc)

  console.log(`${rotulo}: ${horario}`)
}

For Brasília, the calculated opening time is 9:15 a.m. Because the window lasts 75 minutes, it extends, in principle, to 10:30 a.m. in the same time zone. However, the most reliable information on launch day will be the official update: launches can face delays, holds during the countdown, or a move to a backup opportunity.

Anyone building a reminder should store the instant in UTC and render it locally. If SpaceX changes the opening time, only one value needs to be updated; there is no need to maintain four time strings that could diverge.

What Needs to Go Right During Flight 14

The scorecard is not binary. Liftoff, stage separation, Super Heavy performance, insertion, payload bay opening, deployment of the 26 satellites, orbital operation, and deorbiting can all yield independent lessons. A late failure does not erase data obtained before it, but it should not be promoted as a complete orbital success either.

The first milestone is the stack's ascent, followed by stage separation. Starship must then maintain stable navigation and propulsion to receive clearance for insertion. Once in orbit, the payload mechanism must deploy the V3 satellites without collisions and under conditions that allow each unit to establish communications. Finally, the upper stage must execute its departure burn and cross the atmosphere within the planned corridor.

Super Heavy also remains an important part of the experiment, although the mission will not attempt to catch it with the tower. SpaceX encountered relight difficulties on Flight 13, according to reports from the previous campaign, and changes only gain value when they work in a real environment. Recovering clean data from the booster helps prepare future return and reuse attempts.

It is useful to separate three questions when evaluating the result:

  1. Did Starship reach the planned orbit? This validates sufficient energy and control for insertion.
  2. Was the payload deployed, and did it operate? This turns a demonstration into useful transport.
  3. Could the stages return and be prepared again? This measures reuse, a more ambitious promise than reaching orbit once.

Mixing the three produces exaggerated headlines. A flight may deliver satellites and lose hardware; it may preserve hardware and fail with the payload; or it may be interrupted before orbit by a correct safety decision.

Why the Mission Changes Starship's Economics

SpaceX's official document describes Starship V3 as capable of carrying 100 metric tons to Earth orbit in a fully reusable configuration and projects future generations reaching 200 tons. It also says the company wants to reduce the cost of access to orbit by 99% or more compared with the benchmarks it uses. These are corporate ambitions, not conclusions guaranteed by the next flight.

Flight 14 matters because it begins testing the central economic link: putting productive cargo into orbit. An experimental rocket that flies high generates engineering knowledge; a system that delivers assets begins to support an operation. Starlink serves as an internal customer, providing a queue of payloads and allowing the vehicle, satellites, and network to be planned together.

This vertical integration has advantages and risks. The company does not need to wait for external customers to assemble missions, but it becomes dependent on its own rocket to meet the constellation's promised expansion. Delays on one side affect the other. That is why the 26 satellites are more than passengers: they test the connection between two strategic units.

The topic connects with the infrastructure race described in the article about data centers in space and AI in orbit. Before imagining orbital computing at scale, however, the industry must master frequent, predictable, and responsible transportation. The attempt on the 22nd measures a concrete part of that foundation.

Outlook: Watch the Milestones, Not Just the Liftoff

As of September 17, 2026, Flight 14 is still a future mission. The date may change, authorization may require adjustments, and the team may choose the suborbital profile if redundancy for deorbiting is not confirmed. Writing in the future tense and preserving these conditions is more accurate than treating the announcement as a completed event.

If Starship inserts the upper stage, deploys 26 V3 satellites, and leaves orbit in a controlled manner, SpaceX will have demonstrated a chain of events never before completed by the program. Rapid reuse, consistent catching, launch cadence, maintenance, and gradual payload growth will still remain. A first orbit is a milestone, not the finish line.

To follow the mission without falling into blind cheerleading, write down the criteria before the flight: insertion, deployment, contact with the satellites, and deorbiting. Then compare the telemetry and official statement with that list. Science and engineering become more interesting when the result can contradict expectations.

On the 22nd, the spectacle will be a steel tower accelerating against the Texas dawn. The relevant story, however, will happen minutes later: whether Starship managed to turn velocity into orbit, orbit into service, and service into a safe path home.

Let's go! 🦅

📚 Want to Keep Up With What Is Coming?

This article covered Starship Flight 14 and its first orbital attempt, but the ecosystem changes every week, and not everything becomes an article here.

On X, I share what I am testing, behind-the-scenes details from my projects, and news before it becomes a post.

Follow Me There

👉 Follow @jeffbruchado on X

💡 Daily content about development, careers, and the tools I actually use

Comments (0)

This article has no comments yet 😢. Be the first! 🚀🦅

Add comments