A_MDO0050.java 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * adflow参数添加修改
  9. */
  10. public class A_MDO0050 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pid;//项目ID
  13. /**
  14. *项目ID
  15. */
  16. public void setPid(String pid) {
  17. this.pid=pid;
  18. }
  19. /**
  20. *项目ID
  21. */
  22. public String getPid() {
  23. return this.pid;
  24. }
  25. String gridfile;//上传网格文件名称
  26. /**
  27. *上传网格文件名称
  28. */
  29. public void setGridfile(String gridfile) {
  30. this.gridfile=gridfile;
  31. }
  32. /**
  33. *上传网格文件名称
  34. */
  35. public String getGridfile() {
  36. return this.gridfile;
  37. }
  38. String fid;//网格文件ID
  39. /**
  40. *网格文件ID
  41. */
  42. public void setFid(String fid) {
  43. this.fid=fid;
  44. }
  45. /**
  46. *网格文件ID
  47. */
  48. public String getFid() {
  49. return this.fid;
  50. }
  51. String proname;//工况条件 巡航工况 cruise
  52. /**
  53. *工况条件 巡航工况 cruise
  54. */
  55. public void setProname(String proname) {
  56. this.proname=proname;
  57. }
  58. /**
  59. *工况条件 巡航工况 cruise
  60. */
  61. public String getProname() {
  62. return this.proname;
  63. }
  64. int isairfoil;//计算维数 1二维 0三维
  65. /**
  66. *计算维数 1二维 0三维
  67. */
  68. public void setIsairfoil(int isairfoil) {
  69. this.isairfoil=isairfoil;
  70. }
  71. /**
  72. *计算维数 1二维 0三维
  73. */
  74. public int getIsairfoil() {
  75. return this.isairfoil;
  76. }
  77. int writetecplotsurfacesolution;//输出物面信息 是1 否0
  78. /**
  79. *输出物面信息 是1 否0
  80. */
  81. public void setWritetecplotsurfacesolution(int writetecplotsurfacesolution) {
  82. this.writetecplotsurfacesolution=writetecplotsurfacesolution;
  83. }
  84. /**
  85. *输出物面信息 是1 否0
  86. */
  87. public int getWritetecplotsurfacesolution() {
  88. return this.writetecplotsurfacesolution;
  89. }
  90. String equationtype;//控制方程 RANS Euler
  91. /**
  92. *控制方程 RANS Euler
  93. */
  94. public void setEquationtype(String equationtype) {
  95. this.equationtype=equationtype;
  96. }
  97. /**
  98. *控制方程 RANS Euler
  99. */
  100. public String getEquationtype() {
  101. return this.equationtype;
  102. }
  103. String mgcycle;//多重网格 sg
  104. /**
  105. *多重网格 sg
  106. */
  107. public void setMgcycle(String mgcycle) {
  108. this.mgcycle=mgcycle;
  109. }
  110. /**
  111. *多重网格 sg
  112. */
  113. public String getMgcycle() {
  114. return this.mgcycle;
  115. }
  116. String ncycles;//计算步数
  117. /**
  118. *计算步数
  119. */
  120. public void setNcycles(String ncycles) {
  121. this.ncycles=ncycles;
  122. }
  123. /**
  124. *计算步数
  125. */
  126. public String getNcycles() {
  127. return this.ncycles;
  128. }
  129. int resrho;//密度残差 是1 否0
  130. /**
  131. *密度残差 是1 否0
  132. */
  133. public void setResrho(int resrho) {
  134. this.resrho=resrho;
  135. }
  136. /**
  137. *密度残差 是1 否0
  138. */
  139. public int getResrho() {
  140. return this.resrho;
  141. }
  142. int cl;//升力系数 是1 否0
  143. /**
  144. *升力系数 是1 否0
  145. */
  146. public void setCl(int cl) {
  147. this.cl=cl;
  148. }
  149. /**
  150. *升力系数 是1 否0
  151. */
  152. public int getCl() {
  153. return this.cl;
  154. }
  155. int cd;//阻力系数 是1 否0
  156. /**
  157. *阻力系数 是1 否0
  158. */
  159. public void setCd(int cd) {
  160. this.cd=cd;
  161. }
  162. /**
  163. *阻力系数 是1 否0
  164. */
  165. public int getCd() {
  166. return this.cd;
  167. }
  168. int cmz;//力矩系数 是1 否0
  169. /**
  170. *力矩系数 是1 否0
  171. */
  172. public void setCmz(int cmz) {
  173. this.cmz=cmz;
  174. }
  175. /**
  176. *力矩系数 是1 否0
  177. */
  178. public int getCmz() {
  179. return this.cmz;
  180. }
  181. int liftindex;//1x 2y 3z
  182. /**
  183. *1x 2y 3z
  184. */
  185. public void setLiftindex(int liftindex) {
  186. this.liftindex=liftindex;
  187. }
  188. /**
  189. *1x 2y 3z
  190. */
  191. public int getLiftindex() {
  192. return this.liftindex;
  193. }
  194. String l2convergence;//细网格收敛残差
  195. /**
  196. *细网格收敛残差
  197. */
  198. public void setL2convergence(String l2convergence) {
  199. this.l2convergence=l2convergence;
  200. }
  201. /**
  202. *细网格收敛残差
  203. */
  204. public String getL2convergence() {
  205. return this.l2convergence;
  206. }
  207. String l2convergencecoarse;//粗网格收敛残差
  208. /**
  209. *粗网格收敛残差
  210. */
  211. public void setL2convergencecoarse(String l2convergencecoarse) {
  212. this.l2convergencecoarse=l2convergencecoarse;
  213. }
  214. /**
  215. *粗网格收敛残差
  216. */
  217. public String getL2convergencecoarse() {
  218. return this.l2convergencecoarse;
  219. }
  220. String alpha;//攻角
  221. /**
  222. *攻角
  223. */
  224. public void setAlpha(String alpha) {
  225. this.alpha=alpha;
  226. }
  227. /**
  228. *攻角
  229. */
  230. public String getAlpha() {
  231. return this.alpha;
  232. }
  233. String mach;//马赫数
  234. /**
  235. *马赫数
  236. */
  237. public void setMach(String mach) {
  238. this.mach=mach;
  239. }
  240. /**
  241. *马赫数
  242. */
  243. public String getMach() {
  244. return this.mach;
  245. }
  246. String reynolds;//雷诺数
  247. /**
  248. *雷诺数
  249. */
  250. public void setReynolds(String reynolds) {
  251. this.reynolds=reynolds;
  252. }
  253. /**
  254. *雷诺数
  255. */
  256. public String getReynolds() {
  257. return this.reynolds;
  258. }
  259. String reynoldslength;//参考雷诺长度
  260. /**
  261. *参考雷诺长度
  262. */
  263. public void setReynoldslength(String reynoldslength) {
  264. this.reynoldslength=reynoldslength;
  265. }
  266. /**
  267. *参考雷诺长度
  268. */
  269. public String getReynoldslength() {
  270. return this.reynoldslength;
  271. }
  272. String temperature;//参考温度
  273. /**
  274. *参考温度
  275. */
  276. public void setTemperature(String temperature) {
  277. this.temperature=temperature;
  278. }
  279. /**
  280. *参考温度
  281. */
  282. public String getTemperature() {
  283. return this.temperature;
  284. }
  285. int checked;//1选中 0未选中
  286. /**
  287. *1选中 0未选中
  288. */
  289. public void setChecked(int checked) {
  290. this.checked=checked;
  291. }
  292. /**
  293. *1选中 0未选中
  294. */
  295. public int getChecked() {
  296. return this.checked;
  297. }
  298. String inParams;//已逗号分隔循序code-name-value-flag
  299. /**
  300. *已逗号分隔循序code-name-value-flag
  301. */
  302. public void setInParams(String inParams) {
  303. this.inParams=inParams;
  304. }
  305. /**
  306. *已逗号分隔循序code-name-value-flag
  307. */
  308. public String getInParams() {
  309. return this.inParams;
  310. }
  311. String outParams;//已逗号分隔循序code-name-value-flag
  312. /**
  313. *已逗号分隔循序code-name-value-flag
  314. */
  315. public void setOutParams(String outParams) {
  316. this.outParams=outParams;
  317. }
  318. /**
  319. *已逗号分隔循序code-name-value-flag
  320. */
  321. public String getOutParams() {
  322. return this.outParams;
  323. }
  324. String area;//参考面积
  325. /**
  326. *参考面积
  327. */
  328. public void setArea(String area) {
  329. this.area=area;
  330. }
  331. /**
  332. *参考面积
  333. */
  334. public String getArea() {
  335. return this.area;
  336. }
  337. String length;//参考长度
  338. /**
  339. *参考长度
  340. */
  341. public void setLength(String length) {
  342. this.length=length;
  343. }
  344. /**
  345. *参考长度
  346. */
  347. public String getLength() {
  348. return this.length;
  349. }
  350. String momx;//力矩中心x
  351. /**
  352. *力矩中心x
  353. */
  354. public void setMomx(String momx) {
  355. this.momx=momx;
  356. }
  357. /**
  358. *力矩中心x
  359. */
  360. public String getMomx() {
  361. return this.momx;
  362. }
  363. String momy;//力矩中心y
  364. /**
  365. *力矩中心y
  366. */
  367. public void setMomy(String momy) {
  368. this.momy=momy;
  369. }
  370. /**
  371. *力矩中心y
  372. */
  373. public String getMomy() {
  374. return this.momy;
  375. }
  376. String momz;//力矩中心z
  377. /**
  378. *力矩中心z
  379. */
  380. public void setMomz(String momz) {
  381. this.momz=momz;
  382. }
  383. /**
  384. *力矩中心z
  385. */
  386. public String getMomz() {
  387. return this.momz;
  388. }
  389. String wid;//流程id
  390. /**
  391. *流程id
  392. */
  393. public void setWid(String wid) {
  394. this.wid=wid;
  395. }
  396. /**
  397. *流程id
  398. */
  399. public String getWid() {
  400. return this.wid;
  401. }
  402. int writeslicesolution;//输出切面信息 是1 否0
  403. /**
  404. *输出切面信息 是1 否0
  405. */
  406. public void setWriteslicesolution(int writeslicesolution) {
  407. this.writeslicesolution=writeslicesolution;
  408. }
  409. /**
  410. *输出切面信息 是1 否0
  411. */
  412. public int getWriteslicesolution() {
  413. return this.writeslicesolution;
  414. }
  415. String spandirection;//切面法相方向xyz
  416. /**
  417. *切面法相方向xyz
  418. */
  419. public void setSpandirection(String spandirection) {
  420. this.spandirection=spandirection;
  421. }
  422. /**
  423. *切面法相方向xyz
  424. */
  425. public String getSpandirection() {
  426. return this.spandirection;
  427. }
  428. String slices;//切面展向位置
  429. /**
  430. *切面展向位置
  431. */
  432. public void setSlices(String slices) {
  433. this.slices=slices;
  434. }
  435. /**
  436. *切面展向位置
  437. */
  438. public String getSlices() {
  439. return this.slices;
  440. }
  441. }