gasPumpSetting.data.ts 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. import { FormSchema } from '@/components/Form';
  2. /** 工作面参数表单配置项 */
  3. export const workSurfaceFormSchema: FormSchema[] = [
  4. {
  5. label: '钻孔长度',
  6. field: 'drillLength',
  7. component: 'Input',
  8. slot: 'input',
  9. },
  10. {
  11. label: '钻孔方位角',
  12. field: 'drillAzimuth',
  13. component: 'Input',
  14. slot: 'input',
  15. },
  16. {
  17. label: '钻孔倾角',
  18. field: 'drillDipAngle',
  19. component: 'Input',
  20. slot: 'input',
  21. },
  22. {
  23. label: '钻孔间距',
  24. field: 'drillSpace',
  25. component: 'Input',
  26. slot: 'input',
  27. },
  28. {
  29. label: '抽采半径',
  30. field: 'drainageRadius',
  31. component: 'Input',
  32. slot: 'input',
  33. },
  34. {
  35. label: '管路直径',
  36. field: 'pipelineDiameter',
  37. component: 'Input',
  38. slot: 'input',
  39. },
  40. {
  41. label: '残余可解吸瓦斯量',
  42. field: 'residualGasDesorptionCapacity',
  43. component: 'Input',
  44. slot: 'input',
  45. },
  46. {
  47. label: '工作面回采率',
  48. field: 'workingFaceRecoveryRate',
  49. component: 'Input',
  50. slot: 'input',
  51. },
  52. {
  53. label: '工作面长度',
  54. field: 'workingFaceLengeh',
  55. component: 'Input',
  56. slot: 'input',
  57. },
  58. {
  59. label: '巷道宽度',
  60. field: 'tunnelWidth',
  61. component: 'Input',
  62. slot: 'input',
  63. },
  64. {
  65. label: '工作面采高',
  66. field: 'workingFaceHeight',
  67. component: 'Input',
  68. slot: 'input',
  69. },
  70. {
  71. label: '最低允许风速',
  72. field: 'minimumAllowableWindSpeed',
  73. component: 'Input',
  74. slot: 'input',
  75. },
  76. {
  77. label: '最大允许风速',
  78. field: 'maximumAllowableWindSpeed',
  79. component: 'Input',
  80. slot: 'input',
  81. },
  82. {
  83. label: '回风流风速',
  84. field: 'returnAirFlowSpeed',
  85. component: 'Input',
  86. slot: 'input',
  87. },
  88. {
  89. label: '工作面日产量',
  90. field: 'workingFaceDailyOutput',
  91. component: 'Input',
  92. slot: 'input',
  93. },
  94. {
  95. label: '取样深度',
  96. field: 'samplingDepth',
  97. component: 'Input',
  98. slot: 'input',
  99. },
  100. ];
  101. /** 计算参数表单配置项 */
  102. export const calculationFormSchema: FormSchema[] = [
  103. {
  104. label: '预抽瓦斯达标量',
  105. field: 'preDrainageGasReachingStandardQuantity',
  106. component: 'Input',
  107. slot: 'input',
  108. },
  109. {
  110. label: '割煤相对瓦斯涌出量',
  111. field: 'relativeGasEmissionDuringCoalCutting',
  112. component: 'Input',
  113. slot: 'input',
  114. },
  115. {
  116. label: '放煤相对瓦斯涌出量',
  117. field: 'relativeGasEmissionFromCoalDischarge',
  118. component: 'Input',
  119. slot: 'input',
  120. },
  121. {
  122. label: '采空区相对瓦斯涌出量',
  123. field: 'relativeGasEmissionFromGoaf',
  124. component: 'Input',
  125. slot: 'input',
  126. },
  127. {
  128. label: '邻近层相对瓦斯涌出量',
  129. field: 'relativeGasEmissionFromAdjacentLayers',
  130. component: 'Input',
  131. slot: 'input',
  132. },
  133. {
  134. label: '邻近层瓦斯排放率',
  135. field: 'gasEmissionRateOfAdjacentLayers',
  136. component: 'Input',
  137. slot: 'input',
  138. },
  139. {
  140. label: '残余瓦斯压力',
  141. field: 'residualGasPressure',
  142. component: 'Input',
  143. slot: 'input',
  144. },
  145. {
  146. label: '残余瓦斯含量',
  147. field: 'residualGasContent',
  148. component: 'Input',
  149. slot: 'input',
  150. },
  151. {
  152. label: '煤的灰分',
  153. field: 'Ad',
  154. component: 'Input',
  155. slot: 'input',
  156. },
  157. {
  158. label: 'K1',
  159. field: 'K1',
  160. component: 'Input',
  161. slot: 'input',
  162. },
  163. {
  164. label: 'K2',
  165. field: 'K2',
  166. component: 'Input',
  167. slot: 'input',
  168. },
  169. {
  170. label: 'K3',
  171. field: 'K3',
  172. component: 'Input',
  173. slot: 'input',
  174. },
  175. {
  176. label: 'K4',
  177. field: 'K4',
  178. component: 'Input',
  179. slot: 'input',
  180. },
  181. {
  182. label: 'Q',
  183. field: 'Q',
  184. component: 'Input',
  185. slot: 'input',
  186. },
  187. {
  188. label: 'R',
  189. field: 'R',
  190. component: 'Input',
  191. slot: 'input',
  192. },
  193. {
  194. label: '吸附常数a',
  195. field: 'a',
  196. component: 'Input',
  197. slot: 'input',
  198. },
  199. {
  200. label: '吸附常数b',
  201. field: 'b',
  202. component: 'Input',
  203. slot: 'input',
  204. },
  205. ];
  206. /** 抽采单元参数表单配置项 */
  207. export const extractionUnitFormSchema: FormSchema[] = [
  208. {
  209. label: '评价单元煤炭储量',
  210. field: 'evaluationUnitCoalReserves',
  211. component: 'Input',
  212. slot: 'input',
  213. },
  214. {
  215. label: '工作面瓦斯储量',
  216. field: 'workingFaceGasReserves',
  217. component: 'Input',
  218. slot: 'input',
  219. },
  220. {
  221. label: '实时支管抽采负压',
  222. field: 'currentBranchSuctionNegativePressure',
  223. component: 'Input',
  224. slot: 'input',
  225. },
  226. {
  227. label: '钻孔施工长度',
  228. field: 'drillWorkLength',
  229. component: 'Input',
  230. slot: 'input',
  231. },
  232. {
  233. label: '钻孔设计长度',
  234. field: 'drillDesignLength',
  235. component: 'Input',
  236. slot: 'input',
  237. },
  238. {
  239. label: '单元原始瓦斯含量',
  240. field: 'originalGasContent',
  241. component: 'Input',
  242. slot: 'input',
  243. },
  244. {
  245. label: '单元原始瓦斯压力',
  246. field: 'originalGasPressure',
  247. component: 'Input',
  248. slot: 'input',
  249. },
  250. {
  251. label: '煤层厚度',
  252. field: 'coalSeamThickness',
  253. component: 'Input',
  254. slot: 'input',
  255. },
  256. {
  257. label: '工作面切眼长度',
  258. field: 'workingFaceQieyanLength',
  259. component: 'Input',
  260. slot: 'input',
  261. },
  262. {
  263. label: '工作面走向长度',
  264. field: 'workingFaceZouxiangLength',
  265. component: 'Input',
  266. slot: 'input',
  267. },
  268. {
  269. label: '第i个邻近层煤层厚度',
  270. field: 'mi',
  271. component: 'Input',
  272. slot: 'input',
  273. },
  274. {
  275. label: '工作面预测相对涌出量',
  276. field: 'relativeSurgeVolume',
  277. component: 'Input',
  278. slot: 'input',
  279. },
  280. {
  281. label: '工作面预测绝对涌出量',
  282. field: 'absoluteSurgeVolume',
  283. component: 'Input',
  284. slot: 'input',
  285. },
  286. {
  287. label: '工作面有效配风量',
  288. field: 'effectiveAirDistribution',
  289. component: 'Input',
  290. slot: 'input',
  291. },
  292. ];