Skip to main content
Glama

em_induction_submit

Queue an asynchronous Elmer 2-D harmonic magnetodynamics job to calculate AC skin depth and Joule heating in a conductor slab. Poll job_result for skin depth, decay, and phase ratios.

Instructions

AC skin effect / induction via Elmer's harmonic 2-D magnetodynamics (P3 M6 frontier), asynchronous. Requires ElmerSolver; when absent this returns {ok:false, reason, install} rather than raising. Builds a conductor slab depths skin depths deep driven by the surface vector potential at frequency_hz, solves the complex field, and fits the e-folding length of BOTH the magnitude and the phase of A(x) — each must equal the exact δ = √(2/(ω·μ₀·μ_r·σ)) (live: decay_ratio 0.999, phase_ratio 1.000). The Joule deposition profile |J|² ∝ e^(−2x/δ) is the induction-heating answer.

Returns the degradation dict or {job_id, status, cache_hit}; poll job_result for {ok, skin_depth_exact_m, decay_length_m, phase_length_m, decay_ratio, phase_ratio, case_dir}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nxNo
nyNo
mu_rNo
depthsNo
conductorNocopper
frequency_hzNo
conductivity_s_mNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden and does so well: it discloses async execution, graceful degradation to {ok:false, reason, install} instead of raising, that it returns a job_id requiring polling of job_result, and that cache_hit may be returned. It omits any safety/permission profile or cost/rate context, keeping it short of a 5.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with purpose and prerequisite, with the return/polling contract last. It is dense but mostly earns its place, though jargon like 'P3 M6 frontier' and the exact live ratios add noise that isn't needed to invoke the tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description supplies the key return fields (skin_depth_exact_m, decay_length_m, phase_length_m, decay_ratio, phase_ratio) and the async polling pattern, so an agent knows how to call and follow up. Minor gaps remain around mesh params and result interpretation limits.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% across 7 parameters, so the description must compensate. It embeds depth (`depths` skin depths), `frequency_hz`, and the roles of μ_r and σ in the δ formula, but leaves nx, ny (mesh dimensions) and conductor selection undocumented.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific technique and resource: AC skin effect via Elmer harmonic 2-D magnetodynamics, with the concrete operation (build slab, solve complex field, fit decay lengths of both magnitude and phase). This clearly distinguishes it from siblings like em_skin_depth and em_induction_heating_submit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives a prerequisite (requires ElmerSolver) and the fallback behavior when absent, and indicates the async job workflow. However, it never states when to choose this tool over near siblings such as em_skin_depth or em_induction_heating_submit, leaving usage selection implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools