run neqsim mechanical design

run neqsim mechanical design is an agent for coding agents from equinor/neqsim. It costs 125 tokens per session (3,784 once invoked), scanned A, original, Apache-2.0.

An engineering design assistant for checking process equipment and pipelines, including wall thickness, materials, weight, cost, free spans, buckling, and corrosion-related metal loss.

In plain words
What is it for?
Use it for equipment and pipeline design checks, subsea stability and structural screening, corrosion assessments, and CAPEX estimates. Results require review by a qualified engineer.
Why use it?
It helps turn process conditions and standards into preliminary mechanical dimensions, material choices, and cost estimates.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/equinor/neqsim/mechanical.design
Clone the repo
git clone --depth 1 https://github.com/equinor/neqsim

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for run neqsim mechanical design

README.md
[![agentmods](https://agentmods.dev/badge/agents/equinor/neqsim/mechanical.design.svg)](https://agentmods.dev/agents/equinor/neqsim/mechanical.design)
Your own site
<a href="https://agentmods.dev/agents/equinor/neqsim/mechanical.design"><img src="https://agentmods.dev/badge/agents/equinor/neqsim/mechanical.design.svg" alt="Measured on agentmods" height="20"></a>
Per session 125 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,784 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00125 $0.03784
Opus 5 $0.00063 $0.01892
Sonnet 5 $0.00025 $0.00757
Haiku 4.5 $0.00013 $0.00378

Measured 4d ago against content hash 3f91e3860f2d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

run neqsim mechanical design scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/agents/mechanical.design.agent.md · 306 lines

How it starts

The opening of the file, as written. The whole thing — 306 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Loaded skills: neqsim-api-patterns, neqsim-standards-lookup, neqsim-capability-map, neqsim-subsea-and-wells, neqsim-equipment-cost-estimation, neqsim-process-modeling, neqsim-java8-rules

You are a mechanical design specialist for NeqSim.

Primary Objective

Perform standards-based mechanical design for process equipment — wall thickness, material selection, weight/cost estimation, and report-ready CAPEX rollups. Produce working code and design reports with reconciled estimate scope. For DNV-RP-F109 on-bottom stability, use the typed DnvRpF109OnBottomStabilityKernel pattern from neqsim-subsea-and-wells; preserve its review-required status and do not claim generalized-table, dynamic-response, or conformity coverage.

Architecture Pattern

Every piece of process equipment has a MechanicalDesign object:

// 1. Create and run process equipment first
Separator sep = new Separator("HP Sep", feedStream);
processSystem.add(sep);
processSystem.run();

// 2. Initialize mechanical design
sep.initMechanicalDesign();
MechanicalDesign design = sep.getMechanicalDesign();

// 3. Configure design parameters
design.setMaxOperationPressure(85.0);         // bara
design.setMaxOperationTemperature(273.15 + 80); // K
design.setCompanySpecificDesignStandards("OperatorA");

// 4. For equipment-specific designs, cast to subclass
SeparatorMechanicalDesign sepDesign = (SeparatorMechanicalDesign) design;
sepDesign.setMaterialGrade("SA-516-70");
sepDesign.setDesignStandardCode("ASME-VIII-Div1");

// 5. Load standards and calculate
sepDesign.readDesignSpecifications();
sepDesign.calcDesign();

// 6. Get JSON report
String report = sepDesign.toJson();

Separation-efficiency report (separators & gas scrubbers)

After running and sizing a separator or gas scrubber, assess how well its configured internals separate — for both two-phase and three-phase vessels — with calculateSeparationEfficiency():

sepDesign.calcDesign();
sepDesign.setDesign();                        // push sized diameter to the separator
sepDesign.setDemisterType("wire_mesh");      // "wire_mesh" | "vane_pack" | "cyclone"
sepDesign.setDemisterSubType("High Efficiency"); // sub-type from SeparatorInternals.csv

// Read-only assessment (does NOT change run() behaviour)
SeparatorEfficiencyReport eff = sepDesign.calculateSeparationEfficiency();
eff.getOperatingKFactor();            // m/s
eff.getOverallGasLiquidEfficiency();  // 0-1
eff.getVerdict();                     // GOOD_PERFORMANCE | BELOW_TURNDOWN | FLOODING_RISK | MARGINAL_EFFICIENCY
eff.getWindows();                     // per-internal InternalOperatingWindow (K vs [Kmin,Kmax])
eff.toJson();

// Opt-in: apply the physics entrainment/carry-under model during run()
sepDesign.setEfficiencyModelEnabled(true);    // default false → no-entrainment / manual setEntrainment kept

Read the full file on GitHub · 306 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 306 lines · 125 tokens per session scan A 3f91e3860f2d

Subscribe to this mod's changes

run neqsim mechanical design is an agent published in the GitHub repository equinor/neqsim (150 stars, last pushed today), licensed Apache-2.0. It adds 125 tokens to every session and 3,784 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

chaos-engine-implementer

Implement one bounded specification before consolidated validation.

ShaftHQ/SHAFT_ENGINE · 15 tokens

chaos-engine

Use for main-thread orchestration covering decomposition, architecture, synthesis, and final verification.

ShaftHQ/SHAFT_ENGINE · 21 tokens

code-reviewer

Structured code review for api-cp- and service-cp- PRs against HMCTS APIM standards. Checks generated interface compliance, MapStruct builder rule, CJSCPPUID propagation, PMD alignment, Jakarta EE, feature toggle rules, and Azure SDK patterns. No accessibility, no SonarQube, no Snyk. Human gate — must approve before…

hmcts/agentic-plugins-marketplace · 176 tokens

gcx-java-tester

Test gcx parser quality for Java repos. Clones canonical Java projects, indexes with locally-built gcx, checks node/edge coverage, and flags Java-specific AST issues. Use when validating or debugging the Java parser.

bharath03-a/GitCortex · 50 tokens

enterprise-code-architect

Designs enterprise Java architecture for re-implementing source projects from any language — adapts stack based on project type (Spring Boot 4 for applications, plain Java 21+ for libraries/frameworks), creates technology mappings with Mermaid visualizations, designs module structure with proper Maven dependency…

nlinhvu/learn-java-frameworks-marketplace · 79 tokens

java-reviewer

Expert Java and Spring Boot code reviewer specializing in layered architecture, JPA patterns, security, and concurrency. Use for all Java code changes. MUST BE USED for Spring Boot projects.

FriendsHL/skillforge · 40 tokens