cfd-pipeline-openfoam-to-paraview
Sub-skill of cfd-pipeline: OpenFOAM to ParaView (+1).
Best use case
cfd-pipeline-openfoam-to-paraview is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of cfd-pipeline: OpenFOAM to ParaView (+1).
Teams using cfd-pipeline-openfoam-to-paraview should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/openfoam-to-paraview/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How cfd-pipeline-openfoam-to-paraview Compares
| Feature / Agent | cfd-pipeline-openfoam-to-paraview | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of cfd-pipeline: OpenFOAM to ParaView (+1).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# OpenFOAM to ParaView (+1)
## OpenFOAM to ParaView
```bash
# Create .foam trigger file for ParaView
touch /path/to/case/case.foam
# Launch ParaView visualization
pvbatch visualize.py
```
```python
# visualize.py — Automated ParaView post-processing
from paraview.simple import *
def openfoam_post_process(case_dir, output_dir):
"""Generate standard CFD visualization outputs."""
import os
os.makedirs(output_dir, exist_ok=True)
# Load OpenFOAM case
foam_file = os.path.join(case_dir, 'case.foam')
if not os.path.exists(foam_file):
open(foam_file, 'w').close()
reader = OpenFOAMReader(FileName=foam_file)
reader.MeshRegions = ['internalMesh']
reader.CellArrays = ['U', 'p']
# Last time step
anim = GetAnimationScene()
anim.UpdateAnimationUsingDataTimeSteps()
anim.AnimationTime = reader.TimestepValues[-1]
view = GetActiveViewOrCreate('RenderView')
view.ViewSize = [1920, 1080]
# Velocity magnitude slice
calc = Calculator(Input=reader)
calc.Function = 'mag(U)'
calc.ResultArrayName = 'Umag'
slice_z = Slice(Input=calc)
slice_z.SliceType.Normal = [0, 0, 1]
display = Show(slice_z, view)
ColorBy(display, ('POINTS', 'Umag'))
display.SetScalarBarVisibility(view, True)
view.ResetCamera()
Render()
SaveScreenshot(os.path.join(output_dir, 'velocity_slice.png'), view)
# Pressure iso-surface
Hide(slice_z, view)
contour = Contour(Input=reader)
contour.ContourBy = ['POINTS', 'p']
contour.Isosurfaces = [0]
display2 = Show(contour, view)
Render()
SaveScreenshot(os.path.join(output_dir, 'pressure_iso.png'), view)
# Export line probe data (e.g., centerline)
probe = PlotOverLine(Input=reader)
probe.Point1 = [0, 0, 0]
probe.Point2 = [1, 0, 0]
probe.Resolution = 200
SaveData(os.path.join(output_dir, 'centerline_data.csv'), proxy=probe)
```
## OpenFOAM to Blender (Presentation Rendering)
```bash
# 1. Export from OpenFOAM to VTK
foamToVTK -case /path/to/case -latestTime
# 2. Convert VTK to STL via ParaView script (pvbatch does not support -c flag)
cat > vtk_to_stl.py << 'PYEOF'
from paraview.simple import *
r = LegacyVTKReader(FileNames=['VTK/case_1000.vtk'])
s = ExtractSurface(Input=r)
t = Triangulate(Input=s)
SaveData('surface.stl', proxy=t)
PYEOF
pvbatch vtk_to_stl.py
# 3. Import into Blender
blender --background --python render_cfd.py -- --input surface.stl --output render.png
```Related Skills
teams-meeting-pipeline
Operate the Teams meeting summary pipeline via Hermes CLI — summarize meetings, inspect pipeline status, replay jobs, manage Microsoft Graph subscriptions.
solidworks-to-blender-pipeline
Use when converting SolidWorks .sldprt/.sldasm geometry to Blender for rendering, animation, or visualization, including questions about STEP export settings, FreeCAD as a bridge, or which mesh format (STL/OBJ/GLTF) to choose.
multi-role-agent-contract-review-pipeline
Execute a 4-role agent team (Planner/Architect/Reviewer/Integrator) pipeline for self-reviewing knowledge artifacts before delivery
gtm-prospect-pipeline-phased-execution
Phased execution pattern for
nextflow-pipelines
Run nf-core bioinformatics pipelines (rnaseq, sarek, atacseq) on sequencing data for gene expression, variant calling, and chromatin accessibility analyses.
data-pipeline-processor
Process data files through transformation pipelines with validation, cleaning, and export. Use for CSV/Excel/JSON data processing, encoding handling, batch operations, and data transformation workflows.
knowledge-pipeline
Workflow for maintaining workspace-hub knowledge and learning pipelines across scripts/knowledge, scripts/learning, and docs/superpowers, including indexing, archive synthesis, issue updates, and pipeline troubleshooting.
document-rag-pipeline
Build complete document knowledge bases with PDF text extraction, OCR for scanned documents, vector embeddings, and semantic search. Use this for creating searchable document libraries from folders of PDFs, technical standards, or any document collection.
document-index-pipeline
Orchestrate the 7-phase document indexing pipeline (A→G) for the 1M+ document corpus. Use when running batch extraction, classification, or gap analysis on og_standards, ace_standards, or workspace_spec sources.
continuous-planning-pipeline
Maintain a standing day/night GitHub issue pipeline so agents always have planned, reviewed, user-approved work for overnight execution and next-day QA/approval.
nextflow-pipelines-workflow-checklist
Sub-skill of nextflow-pipelines: Workflow Checklist.
nextflow-pipelines-step-3-run-test-profile
Sub-skill of nextflow-pipelines: Step 3: Run Test Profile.