poker_proposeBuildupFactor
Calculate buildup factor values for materials with options for slant correction and finite medium correction to support radiation shielding analysis.
Instructions
ビルドアップ係数を提案します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| material | Yes | 材料名 | |
| use_finite_medium_correction | Yes | 有限媒体補正を使用するか | |
| use_slant_correction | Yes | スラント補正を使用するか |
Input Schema (JSON Schema)
{
"properties": {
"material": {
"description": "材料名",
"type": "string"
},
"use_finite_medium_correction": {
"default": false,
"description": "有限媒体補正を使用するか",
"type": "boolean"
},
"use_slant_correction": {
"default": false,
"description": "スラント補正を使用するか",
"type": "boolean"
}
},
"required": [
"material",
"use_slant_correction",
"use_finite_medium_correction"
],
"type": "object"
}