JavaProjectRepo/设备size处理.md

56 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2026-03-20 19:00:16 +08:00
1.设备有多种类型,为了方便提取尺寸,
扁平槽FlatTank形状参数尺寸json表达{
"length": 100,
"width": 40,
"height": 15
}
圆柱槽CylindricalTank 形状参数尺寸json表达{
"diameter": 200,
"height":120
}
环形槽AnnularTank形状参数尺寸json表达 {
"outer_diameter": 100,
"height": 150
}
管束槽TubeBundleTank形状参数尺寸json表达{
"outer_diameter":120,
"height": 200
}
萃取柱ExtractionColumn形状参数尺寸json表达 {
"upper_expanded": {
"diameter": 40,
"height": 150
},
"tray_section": {
"diameter": 100,
"height":800
},
"lower_expanded": {
"diameter": 30,
"height": 50
}
}
流化床FluidizedBed形状参数尺寸json表达 {
"expanded_section": {
"diameter": 120,
"height":40
},
"transition_section": {
"height": 60
},
"reaction_section": {
"diameter": 60,
"height": 400
}
}
锥底环形槽ACFTank形状参数尺寸json表达{
"annular_cylinder": {
"outer_diameter": 70,
"height": 300
},
"frustum_bottom": {
"bottom_diameter": 20,
"height": 30
}
}