poker_analyzeUnitConversion
Calculate conversion factors between different unit systems and analyze physical consistency for length, angle, density, and radioactivity measurements.
Instructions
異なる単位系間の変換係数を分析・計算します
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| includePhysicalAnalysis | No | 物理的整合性分析を含めるか | |
| targetUnits | Yes | 変換先単位系(4キー必須) | 
Input Schema (JSON Schema)
{
  "additionalProperties": false,
  "description": "現在の単位系から指定単位系への変換係数計算と物理的整合性分析",
  "properties": {
    "includePhysicalAnalysis": {
      "default": true,
      "description": "物理的整合性分析を含めるか",
      "type": "boolean"
    },
    "targetUnits": {
      "additionalProperties": false,
      "description": "変換先単位系(4キー必須)",
      "properties": {
        "angle": {
          "enum": [
            "radian",
            "degree"
          ],
          "type": "string"
        },
        "density": {
          "enum": [
            "g/cm3"
          ],
          "type": "string"
        },
        "length": {
          "enum": [
            "m",
            "cm",
            "mm"
          ],
          "type": "string"
        },
        "radioactivity": {
          "enum": [
            "Bq"
          ],
          "type": "string"
        }
      },
      "required": [
        "length",
        "angle",
        "density",
        "radioactivity"
      ],
      "type": "object"
    }
  },
  "required": [
    "targetUnits"
  ],
  "title": "単位変換分析",
  "type": "object"
}