Skip to main content
Glama
wjc9011
by wjc9011

physics_setup_acoustic_boundaries

Configure multiple COMSOL acoustic boundary conditions in one call, using boundary numbers or named selections plus optional properties and labels.

Instructions

Configure multiple acoustic boundary conditions in one call.

Each item accepts:

  • type: COMSOL boundary feature type

  • boundaries: List of boundary numbers

  • selection_name: Optional named COMSOL selection instead of numbers

  • properties: Optional COMSOL property dictionary

  • dimension: Optional geometric entity dimension override

  • tag: Optional explicit feature tag

  • label: Optional display label

Example: [ {"type": "SoundHard", "boundaries": [1, 2]}, { "type": "Impedance", "boundaries": [3], "properties": {"Zn": "rho0*c0"} } ]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_nameNo
physics_nameYes
boundary_dimensionNo
boundary_conditionsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden, yet it says nothing about whether existing boundary conditions are overwritten or appended, what happens with an unknown 'type', or error behavior. For a mutating batch configuration tool this is a notable gap.

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?

The purpose is front-loaded in one sentence, followed by a scannable field list and a concrete example. The example is somewhat long but justified for a free-form nested array schema; nothing is redundant.

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

Completeness3/5

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

With no annotations, no output schema, and 0% schema coverage, the description adequately covers the nested item structure and gives a usable example. It omits top-level parameter meaning, whether the call replaces or adds conditions, and how physics_name is obtained, leaving real gaps for a mutating setup tool.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate, and it does so for the critical free-form 'boundary_conditions' items by documenting all seven accepted keys plus an example. Top-level parameters (model_name, physics_name, boundary_dimension, and the relationship between 'dimension' and 'boundary_dimension') remain unexplained, so it stops short of a 5.

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

Purpose4/5

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

The description states a specific verb and resource ('Configure multiple acoustic boundary conditions') and the batch scope ('in one call') implicitly distinguishes it from the singular sibling physics_configure_acoustic_boundary. No sibling is named explicitly, so it is one notch below fully differentiating.

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?

The phrase 'in one call' implies the batch use case versus the single-condition sibling, but there is no explicit when-to-use guidance, no prerequisites (e.g. that physics_name must come from a prior physics_add_acoustics), and no when-not conditions. Usage must be inferred.

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