Aqwa Batch Execution Python Subprocess Pattern

Sub-skill of aqwa-batch-execution: Python Subprocess Pattern.

vamseeachanta c3c0f02 826 B Updated

File contents

Python Subprocess Pattern

Python Subprocess Pattern

import subprocess
from pathlib import Path

AQWA_EXE = Path("/ansys_inc/v251/aqwa/bin/lnx64/Aqwa")

def run_aqwa(work_dir: Path, job_name: str, job_type: str = "std") -> bool:
    """Run AQWA batch. Returns True on success."""
    result = subprocess.run(
        [str(AQWA_EXE), job_type, job_name],
        cwd=str(work_dir), capture_output=True, text=True,
    )
    mes = (work_dir / f"{job_name}.mes")
    if mes.exists() and any(
        kw in mes.read_text(errors="replace").upper()
        for kw in ("ERROR", "FATAL", "ABORT")
    ):
        return False
    return (work_dir / f"{job_name}.res").exists()

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/engineering/marine-offshore/aqwa/batch-execution/python-subprocess-pattern commit c3c0f02185

Frequently asked questions

npx skillmds@latest add vamseeachanta/aqwa-batch-execution-python-subprocess-pattern