A_MDO2005.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 噪声Propnoise参数添加修改
  9. */
  10. public class A_MDO2005 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 wid;//流程id
  26. /**
  27. *流程id
  28. */
  29. public void setWid(String wid) {
  30. this.wid=wid;
  31. }
  32. /**
  33. *流程id
  34. */
  35. public String getWid() {
  36. return this.wid;
  37. }
  38. String r_r;//半径归一化半径分布 r/r
  39. /**
  40. *半径归一化半径分布 r/r
  41. */
  42. public void setR_r(String r_r) {
  43. this.r_r=r_r;
  44. }
  45. /**
  46. *半径归一化半径分布 r/r
  47. */
  48. public String getR_r() {
  49. return this.r_r;
  50. }
  51. String t_c;//相对厚度分布 t/c
  52. /**
  53. *相对厚度分布 t/c
  54. */
  55. public void setT_c(String t_c) {
  56. this.t_c=t_c;
  57. }
  58. /**
  59. *相对厚度分布 t/c
  60. */
  61. public String getT_c() {
  62. return this.t_c;
  63. }
  64. String b_r;//弦长归一化分布 b/r
  65. /**
  66. *弦长归一化分布 b/r
  67. */
  68. public void setB_r(String b_r) {
  69. this.b_r=b_r;
  70. }
  71. /**
  72. *弦长归一化分布 b/r
  73. */
  74. public String getB_r() {
  75. return this.b_r;
  76. }
  77. String beta;//安装/扭转角分布 β(随半径)
  78. /**
  79. *安装/扭转角分布 β(随半径)
  80. */
  81. public void setBeta(String beta) {
  82. this.beta=beta;
  83. }
  84. /**
  85. *安装/扭转角分布 β(随半径)
  86. */
  87. public String getBeta() {
  88. return this.beta;
  89. }
  90. String r;//桨半径
  91. /**
  92. *桨半径
  93. */
  94. public void setR(String r) {
  95. this.r=r;
  96. }
  97. /**
  98. *桨半径
  99. */
  100. public String getR() {
  101. return this.r;
  102. }
  103. String hub;//轮毂半径
  104. /**
  105. *轮毂半径
  106. */
  107. public void setHub(String hub) {
  108. this.hub=hub;
  109. }
  110. /**
  111. *轮毂半径
  112. */
  113. public String getHub() {
  114. return this.hub;
  115. }
  116. String blade;//桨叶片数
  117. /**
  118. *桨叶片数
  119. */
  120. public void setBlade(String blade) {
  121. this.blade=blade;
  122. }
  123. /**
  124. *桨叶片数
  125. */
  126. public String getBlade() {
  127. return this.blade;
  128. }
  129. String dim;//dim
  130. /**
  131. *dim
  132. */
  133. public void setDim(String dim) {
  134. this.dim=dim;
  135. }
  136. /**
  137. *dim
  138. */
  139. public String getDim() {
  140. return this.dim;
  141. }
  142. String airfoil;//翼型数据文件路径
  143. /**
  144. *翼型数据文件路径
  145. */
  146. public void setAirfoil(String airfoil) {
  147. this.airfoil=airfoil;
  148. }
  149. /**
  150. *翼型数据文件路径
  151. */
  152. public String getAirfoil() {
  153. return this.airfoil;
  154. }
  155. String airfoil_polars;//翼型极曲线文件列表
  156. /**
  157. *翼型极曲线文件列表
  158. */
  159. public void setAirfoil_polars(String airfoil_polars) {
  160. this.airfoil_polars=airfoil_polars;
  161. }
  162. /**
  163. *翼型极曲线文件列表
  164. */
  165. public String getAirfoil_polars() {
  166. return this.airfoil_polars;
  167. }
  168. String three_quarter_twist;//处扭转角
  169. /**
  170. *处扭转角
  171. */
  172. public void setThree_quarter_twist(String three_quarter_twist) {
  173. this.three_quarter_twist=three_quarter_twist;
  174. }
  175. /**
  176. *处扭转角
  177. */
  178. public String getThree_quarter_twist() {
  179. return this.three_quarter_twist;
  180. }
  181. String a;//声速
  182. /**
  183. *声速
  184. */
  185. public void setA(String a) {
  186. this.a=a;
  187. }
  188. /**
  189. *声速
  190. */
  191. public String getA() {
  192. return this.a;
  193. }
  194. String t;//温度
  195. /**
  196. *温度
  197. */
  198. public void setT(String t) {
  199. this.t=t;
  200. }
  201. /**
  202. *温度
  203. */
  204. public String getT() {
  205. return this.t;
  206. }
  207. String density;//密度
  208. /**
  209. *密度
  210. */
  211. public void setDensity(String density) {
  212. this.density=density;
  213. }
  214. /**
  215. *密度
  216. */
  217. public String getDensity() {
  218. return this.density;
  219. }
  220. String dynamic_viscosity;//动力黏度
  221. /**
  222. *动力黏度
  223. */
  224. public void setDynamic_viscosity(String dynamic_viscosity) {
  225. this.dynamic_viscosity=dynamic_viscosity;
  226. }
  227. /**
  228. *动力黏度
  229. */
  230. public String getDynamic_viscosity() {
  231. return this.dynamic_viscosity;
  232. }
  233. String omega;//转速
  234. /**
  235. *转速
  236. */
  237. public void setOmega(String omega) {
  238. this.omega=omega;
  239. }
  240. /**
  241. *转速
  242. */
  243. public String getOmega() {
  244. return this.omega;
  245. }
  246. String velocity;//来流速度
  247. /**
  248. *来流速度
  249. */
  250. public void setVelocity(String velocity) {
  251. this.velocity=velocity;
  252. }
  253. /**
  254. *来流速度
  255. */
  256. public String getVelocity() {
  257. return this.velocity;
  258. }
  259. String theta;//观测角度
  260. /**
  261. *观测角度
  262. */
  263. public void setTheta(String theta) {
  264. this.theta=theta;
  265. }
  266. /**
  267. *观测角度
  268. */
  269. public String getTheta() {
  270. return this.theta;
  271. }
  272. String l;//观测距离
  273. /**
  274. *观测距离
  275. */
  276. public void setL(String l) {
  277. this.l=l;
  278. }
  279. /**
  280. *观测距离
  281. */
  282. public String getL() {
  283. return this.l;
  284. }
  285. String spl;//总声压级(总体或特定点)
  286. /**
  287. *总声压级(总体或特定点)
  288. */
  289. public void setSpl(String spl) {
  290. this.spl=spl;
  291. }
  292. /**
  293. *总声压级(总体或特定点)
  294. */
  295. public String getSpl() {
  296. return this.spl;
  297. }
  298. String propnId;//propnoise Id
  299. /**
  300. *propnoise Id
  301. */
  302. public void setPropnId(String propnId) {
  303. this.propnId=propnId;
  304. }
  305. /**
  306. *propnoise Id
  307. */
  308. public String getPropnId() {
  309. return this.propnId;
  310. }
  311. }