56 lines
1.4 KiB
Markdown
56 lines
1.4 KiB
Markdown
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
|
||
}
|
||
}
|