用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vamseeachanta/workspace-hub --skill openfoam-11-case-directory-structure命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Write outbound email and external messages in Vamsee Achanta's voice — a subtle offer to help, never bold or rash claims. Load before drafting ANY email, LinkedIn/Collide reply, proposal note, or outreach sent under his name.
Save/publish analysis or computation results from ANY ecosystem repo to Hugging Face as a queryable, viewer-renderable dataset. Use when the user wants to "save results to hugging face", "publish dataset to HF", "hugging face data saving", "save analysis results", "hf dataset", "make results queryable", or "render via datasets-server API". Reshapes nested results into flat parquet tables, writes a dataset card with a viewer `configs:` block and provenance, applies license/public-vs-private routing, enforces a domain data-quality gate (faithful-to-source != correct), publishes to `aceengineer/<repo>-<projection>`, and verifies via the datasets-server API.
Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.
正在显示 SKILL.md
基于 SOC 职业分类
| name | openfoam-11-case-directory-structure |
| description | Sub-skill of openfoam: 1.1 Case Directory Structure (+3). |
| version | 1.0.0 |
| category | engineering |
| type | reference |
| scripts_exempt | true |
Every OpenFOAM case requires this minimum structure:
<case>/
0/ # Initial/boundary conditions
U # Velocity (volVectorField)
p # Pressure (volScalarField)
k # Turbulent kinetic energy (if RAS/LES)
epsilon | omega # Dissipation (model-dependent)
nut # Turbulent viscosity
constant/
transportProperties # Fluid properties (nu, rho)
turbulenceProperties # Turbulence model selection
polyMesh/ # Mesh (generated by blockMesh/snappyHexMesh)
system/
controlDict # Run control (REQUIRED)
fvSchemes # Discretisation schemes (REQUIRED)
fvSolution # Solver settings (REQUIRED)
blockMeshDict # Structured mesh definition
decomposeParDict # Parallel decomposition
Every OpenFOAM file must begin with this header. The class and object fields must match the file type and filename.
FoamFile
{
version 2.0;
format ascii;
class dictionary; // see class table below
object controlDict; // must match filename
}
| File | class | object |
|---|---|---|
| controlDict, fvSchemes, fvSolution | dictionary | filename |
| transportProperties, turbulenceProperties | dictionary | filename |
| blockMeshDict, decomposeParDict | dictionary | filename |
| U (velocity) | volVectorField | U |
| p, k, epsilon, omega, nut | volScalarField | fieldname |
Steady-state (simpleFoam):
application simpleFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 2000;
deltaT 1;
writeControl timeStep;
writeInterval 100;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression off;
timeFormat general;
timePrecision 6;
runTimeModifiable true;
functions
{
#includeFunc yPlus
#includeFunc solverInfo
}
Transient with adaptive timestep (pimpleFoam):
application pimpleFoam;
startFrom latestTime;
startTime 0;
stopAt endTime;
endTime 10;
deltaT 0.001;
writeControl adjustable;
writeInterval 0.1;
adjustTimeStep yes;
maxCo 5;
runTimeModifiable yes;
Multiphase (interFoam):
application interFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 1;
deltaT 0.001;
writeControl adjustable;
writeInterval 0.05;
adjustTimeStep yes;
maxCo 1;
maxAlphaCo 1;
maxDeltaT 1;
runTimeModifiable yes;
Steady-state RANS (simpleFoam):
ddtSchemes { default steadyState; }
gradSchemes { default Gauss linear; }
divSchemes
{
default none;
div(phi,U) bounded Gauss linearUpwind grad(U);
turbulence bounded Gauss limitedLinear 1;
div(phi,k) $turbulence;
div(phi,epsilon) $turbulence;
div(phi,omega) $turbulence;
div((nuEff*dev2(T(grad(U))))) Gauss linear;
}
laplacianSchemes { default Gauss linear corrected; }
interpolationSchemes { default linear; }
snGradSchemes { default corrected; }
wallDist { method meshWave; }
Transient laminar (icoFoam):
ddtSchemes { default Euler; }
gradSchemes { default Gauss linear; }
divSchemes { default none; div(phi,U) Gauss linear; }
laplacianSchemes { default Gauss linear orthogonal; }
interpolationSchemes { default linear; }
snGradSchemes { default orthogonal; }