Agent skill
astromodels-jl
AstroModels.jl providing astrodynamics force models (gravity, SRP, drag) for the JSMD ecosystem. Use when computing gravitational acceleration, solar radiation pressure, atmospheric drag, or building force model compositions for orbit propagation.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/astromodels-jl
SKILL.md
AstroModels.jl
Astrodynamics force models for the JSMD ecosystem. Repo: JuliaSpaceMissionDesign/AstroModels.jl
Type Hierarchy
AbstractAccelerationModel
├── AbstractGravityModel{T}
│ ├── Point mass (central body)
│ ├── Third-body gravity
│ ├── Relativistic corrections
│ ├── Spherical harmonics (ICGEM/PDS)
│ ├── Polyhedron
│ ├── Mascons
│ └── PINN (neural network)
└── AbstractSolarPressureModel{T}
├── Cannonball SRP
└── Flat plate SRP
Shadow models: Conical, Cylindrical
Core API
# All models implement this interface
a = compute_acceleration(model, args...)
# Gravity models also implement
U = compute_potential(model, args...)
Loading Gravity Models
# Parse coefficient data from ICGEM or PDS format files
data = parse_data(Float64, DataType, filename; kwargs...)
model = parse_model(Float64, ModelType, DataType, args...)
Key Conventions
- Implements
AbstractAccelerationModelinterface from JSMDInterfaces - Uses
PreallocationToolsfor cache buffers in mutable model types - Third-body positions resolved via
JSMDInterfaces.Frames.vector3(frame graph lookup) - Depends on Tempo.jl for time handling
- StaticArrays for return types
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?