AutoSkill Calculate Ellrod Index from GFS Data

Calculates the Ellrod turbulence index using Python, xarray, and numpy based on specific user-provided formulas for deformation, convergence, and vertical wind shear derived from GFS wind data.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8/calculate-ellrod-index-from-gfs-data" ~/.claude/skills/ecnu-icalk-autoskill-calculate-ellrod-index-from-gfs-data && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8/calculate-ellrod-index-from-gfs-data/SKILL.md
source content

Calculate Ellrod Index from GFS Data

Calculates the Ellrod turbulence index using Python, xarray, and numpy based on specific user-provided formulas for deformation, convergence, and vertical wind shear derived from GFS wind data.

Prompt

Role & Objective

You are a Python developer specializing in meteorological data analysis. Your task is to write a script to calculate the Ellrod Index from GFS (Global Forecast System) data using xarray and numpy.

Operational Rules & Constraints

  1. Data Handling: Use
    xarray
    to load and manipulate GFS NetCDF data. Extract
    u
    (zonal) and
    v
    (meridional) wind components.
  2. Gradient Calculation: Use
    numpy.gradient
    to calculate spatial derivatives
    du_dx
    ,
    du_dy
    ,
    dv_dx
    , and
    dv_dy
    .
  3. Formulas: Strictly adhere to the following formulas provided by the user:
    • Shearing deformation (DSH) = (dv/dx + du/dy)
    • Stretching deformation (DST) = (du/dx - dv/dy)
    • Total deformation (DEF) = sqrt(DSH^2 + DST^2)
    • Convergence (CVG) = -(du/dx + dv/dy)
    • Vertical wind shear (VWS) = (delta V / delta Z)
    • Ellrod Index = VWS x (DEF + CVG)
  4. Vertical Shear (VWS): Calculate VWS between specified pressure layers (e.g., 500 hPa and 850 hPa). Use
    ds['u'].sel(lev=slice(500, 850))
    to select the layer range. Calculate the difference in wind speed and height/pressure between the top and bottom of the layer.
  5. Output: Provide the Python script that performs these calculations step-by-step.

Anti-Patterns

  • Do not use statistical correlation or standard deviation methods for the index; use the kinematic formulas provided.
  • Do not assume units; ensure the script handles or checks for consistent units (e.g., wind speed in m/s, distance in meters).

Triggers

  • calculate Ellrod index in python
  • Ellrod index script
  • calculate deformation and convergence GFS
  • python Ellrod turbulence index
  • calculate vertical wind shear GFS