GOTRAN

1 program Added 2026-02-11T10:45:53Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Ground Trajectory Analysis
Provenance: commit 0ddba9d26a · authored 2026-02-11T11:46:48+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

SIMAN (0.20)SAL (0.19)GrADS (0.18)DAX (0.16)AADL (0.14)

LLM-contributed programs

Orbital Velocity Calculator

Provenance: commit 0ddba9d26a · authored 2026-02-11T11:46:48+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.f · added: 2026-02-11T10:45:53Z
C     GOTRAN PROGRAM FOR ORBITAL VELOCITY CALCULATION
      PROGRAM ORBITAL
      IMPLICIT REAL*8 (A-H,O-Z)

C     CONSTANTS
      PARAMETER (G = 6.674D-11)
      PARAMETER (MEARTH = 5.972D24)

C     INPUT PARAMETERS
      RALT = 400000.0D0
      REARTH = 6371000.0D0

C     COMPUTE ORBITAL RADIUS
      R = REARTH + RALT

C     COMPUTE ORBITAL VELOCITY
      V = DSQRT(G * MEARTH / R)

C     OUTPUT RESULTS
      WRITE(6,100) RALT/1000.0D0
      WRITE(6,110) V/1000.0D0

  100 FORMAT(' ALTITUDE: ', F10.2, ' KM')
  110 FORMAT(' ORBITAL VELOCITY: ', F10.4, ' KM/S')

      STOP
      END

Contribute — propose a file extension

Tell us where to find evidence about GOTRAN (mapped to pl/gotran). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/GOTRAN/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← GotoStart Gottlob →