Skip to main content
Glama
wjc9011
by wjc9011

physics_setup_heat_boundaries

Configure heat transfer boundary conditions—heat flux, fixed temperature, and convection—on specified boundaries for thermal simulations.

Instructions

Setup Heat Transfer boundary conditions with specified boundaries.

This tool configures thermal boundary conditions for heat transfer simulation:

  • Heat flux boundaries (heat sources)

  • Temperature boundaries (heat sinks)

  • Convective cooling/heating boundaries

Args: physics_name: Name of the Heat Transfer physics interface heat_flux_boundaries: List of boundary numbers for heat flux temperature_boundaries: List of boundary numbers for fixed temperature convection_boundaries: List of boundary numbers for convection heat_flux_value: Heat flux value (default: "1e6[W/m^2]") temperature_value: Temperature value (default: "293.15[K]" = 20°C) convection_coeff: Convection coefficient (default: "10[W/(m^2*K)]") ambient_temp: Ambient temperature for convection (default: "293.15[K]") model_name: Model name (default: current model)

Returns: Configuration confirmation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_nameNo
ambient_tempNo293.15[K]
physics_nameYes
heat_flux_valueNo1e6[W/m^2]
convection_coeffNo10[W/(m^2*K)]
temperature_valueNo293.15[K]
heat_flux_boundariesNo
convection_boundariesNo
temperature_boundariesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations exist, so the description carries the full burden. It usefully discloses the mapping of boundary categories to physical roles and all default values, but omits mutation semantics: whether existing boundary conditions are overwritten, whether the heat-transfer physics interface must already exist, and whether the operation is reversible.

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 the purpose, then a scannable bulleted taxonomy and a per-argument list. The trailing 'Returns: Configuration confirmation' adds little, but overall there is minimal waste.

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?

For a 9-parameter mutation tool with no annotations and no output schema, the description covers parameters well but leaves preconditions, overwrite behavior, and failure modes unaddressed. It is adequate but short of complete.

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%, yet the description documents all nine parameters, including units and physical interpretation (heat flux = sources, temperature = sinks) and defaults. It stops short of explaining how boundary numbers are obtained, but it compensates well for the empty schema.

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 verb+resource ('Setup Heat Transfer boundary conditions') and enumerates the three condition families it configures (flux, temperature, convection). It is clearly distinguishable from the acoustic, flow, and PDE boundary siblings, which configure different physics.

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 description implies usage by naming the physics interface and boundary categories, but never says when to use this vs. siblings like physics_configure_boundary, physics_setup_pde_boundaries, or physics_boundary_selection, nor any precondition such as needing boundaries from geometry_get_boundaries first.

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