A_MDO2008.java 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * flight参数添加修改
  9. */
  10. public class A_MDO2008 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 tag;//标签
  39. /**
  40. *标签
  41. */
  42. public void setTag(String tag) {
  43. this.tag=tag;
  44. }
  45. /**
  46. *标签
  47. */
  48. public String getTag() {
  49. return this.tag;
  50. }
  51. String reference_area;//全机参考面积
  52. /**
  53. *全机参考面积
  54. */
  55. public void setReference_area(String reference_area) {
  56. this.reference_area=reference_area;
  57. }
  58. /**
  59. *全机参考面积
  60. */
  61. public String getReference_area() {
  62. return this.reference_area;
  63. }
  64. String max_zero_fuel;//最大无燃油重量
  65. /**
  66. *最大无燃油重量
  67. */
  68. public void setMax_zero_fuel(String max_zero_fuel) {
  69. this.max_zero_fuel=max_zero_fuel;
  70. }
  71. /**
  72. *最大无燃油重量
  73. */
  74. public String getMax_zero_fuel() {
  75. return this.max_zero_fuel;
  76. }
  77. String max_takeoff;//最大起飞重量
  78. /**
  79. *最大起飞重量
  80. */
  81. public void setMax_takeoff(String max_takeoff) {
  82. this.max_takeoff=max_takeoff;
  83. }
  84. /**
  85. *最大起飞重量
  86. */
  87. public String getMax_takeoff() {
  88. return this.max_takeoff;
  89. }
  90. String max_landing;//最大着陆重量
  91. /**
  92. *最大着陆重量
  93. */
  94. public void setMax_landing(String max_landing) {
  95. this.max_landing=max_landing;
  96. }
  97. /**
  98. *最大着陆重量
  99. */
  100. public String getMax_landing() {
  101. return this.max_landing;
  102. }
  103. String c_x;//重心位置x
  104. /**
  105. *重心位置x
  106. */
  107. public void setC_x(String c_x) {
  108. this.c_x=c_x;
  109. }
  110. /**
  111. *重心位置x
  112. */
  113. public String getC_x() {
  114. return this.c_x;
  115. }
  116. String c_y;//重心位置y
  117. /**
  118. *重心位置y
  119. */
  120. public void setC_y(String c_y) {
  121. this.c_y=c_y;
  122. }
  123. /**
  124. *重心位置y
  125. */
  126. public String getC_y() {
  127. return this.c_y;
  128. }
  129. String c_z;//重心位置z
  130. /**
  131. *重心位置z
  132. */
  133. public void setC_z(String c_z) {
  134. this.c_z=c_z;
  135. }
  136. /**
  137. *重心位置z
  138. */
  139. public String getC_z() {
  140. return this.c_z;
  141. }
  142. int mw_n_sections;//机翼 机翼段数
  143. /**
  144. *机翼 机翼段数
  145. */
  146. public void setMw_n_sections(int mw_n_sections) {
  147. this.mw_n_sections=mw_n_sections;
  148. }
  149. /**
  150. *机翼 机翼段数
  151. */
  152. public int getMw_n_sections() {
  153. return this.mw_n_sections;
  154. }
  155. String mw_span;//机翼 翼展
  156. /**
  157. *机翼 翼展
  158. */
  159. public void setMw_span(String mw_span) {
  160. this.mw_span=mw_span;
  161. }
  162. /**
  163. *机翼 翼展
  164. */
  165. public String getMw_span() {
  166. return this.mw_span;
  167. }
  168. String mw_mac;//机翼 平均气动弦长
  169. /**
  170. *机翼 平均气动弦长
  171. */
  172. public void setMw_mac(String mw_mac) {
  173. this.mw_mac=mw_mac;
  174. }
  175. /**
  176. *机翼 平均气动弦长
  177. */
  178. public String getMw_mac() {
  179. return this.mw_mac;
  180. }
  181. String mw_sweep;//机翼 后掠角
  182. /**
  183. *机翼 后掠角
  184. */
  185. public void setMw_sweep(String mw_sweep) {
  186. this.mw_sweep=mw_sweep;
  187. }
  188. /**
  189. *机翼 后掠角
  190. */
  191. public String getMw_sweep() {
  192. return this.mw_sweep;
  193. }
  194. String mw_aspect_ratio;//机翼 展弦比
  195. /**
  196. *机翼 展弦比
  197. */
  198. public void setMw_aspect_ratio(String mw_aspect_ratio) {
  199. this.mw_aspect_ratio=mw_aspect_ratio;
  200. }
  201. /**
  202. *机翼 展弦比
  203. */
  204. public String getMw_aspect_ratio() {
  205. return this.mw_aspect_ratio;
  206. }
  207. String mw_area;//机翼 机翼面积
  208. /**
  209. *机翼 机翼面积
  210. */
  211. public void setMw_area(String mw_area) {
  212. this.mw_area=mw_area;
  213. }
  214. /**
  215. *机翼 机翼面积
  216. */
  217. public String getMw_area() {
  218. return this.mw_area;
  219. }
  220. String mw_thickness_to_chord;//机翼 厚弦比
  221. /**
  222. *机翼 厚弦比
  223. */
  224. public void setMw_thickness_to_chord(String mw_thickness_to_chord) {
  225. this.mw_thickness_to_chord=mw_thickness_to_chord;
  226. }
  227. /**
  228. *机翼 厚弦比
  229. */
  230. public String getMw_thickness_to_chord() {
  231. return this.mw_thickness_to_chord;
  232. }
  233. String mwf_span_fraction_start;//襟翼 展向起始位置
  234. /**
  235. *襟翼 展向起始位置
  236. */
  237. public void setMwf_span_fraction_start(String mwf_span_fraction_start) {
  238. this.mwf_span_fraction_start=mwf_span_fraction_start;
  239. }
  240. /**
  241. *襟翼 展向起始位置
  242. */
  243. public String getMwf_span_fraction_start() {
  244. return this.mwf_span_fraction_start;
  245. }
  246. String mwf_span_fraction_end;//襟翼 展向终止位置
  247. /**
  248. *襟翼 展向终止位置
  249. */
  250. public void setMwf_span_fraction_end(String mwf_span_fraction_end) {
  251. this.mwf_span_fraction_end=mwf_span_fraction_end;
  252. }
  253. /**
  254. *襟翼 展向终止位置
  255. */
  256. public String getMwf_span_fraction_end() {
  257. return this.mwf_span_fraction_end;
  258. }
  259. String mwf_deflection;//襟翼 偏角
  260. /**
  261. *襟翼 偏角
  262. */
  263. public void setMwf_deflection(String mwf_deflection) {
  264. this.mwf_deflection=mwf_deflection;
  265. }
  266. /**
  267. *襟翼 偏角
  268. */
  269. public String getMwf_deflection() {
  270. return this.mwf_deflection;
  271. }
  272. String mwf_chord_fraction;//襟翼 弦向占比
  273. /**
  274. *襟翼 弦向占比
  275. */
  276. public void setMwf_chord_fraction(String mwf_chord_fraction) {
  277. this.mwf_chord_fraction=mwf_chord_fraction;
  278. }
  279. /**
  280. *襟翼 弦向占比
  281. */
  282. public String getMwf_chord_fraction() {
  283. return this.mwf_chord_fraction;
  284. }
  285. String mwf_configuration_type;//襟翼 类型
  286. /**
  287. *襟翼 类型
  288. */
  289. public void setMwf_configuration_type(String mwf_configuration_type) {
  290. this.mwf_configuration_type=mwf_configuration_type;
  291. }
  292. /**
  293. *襟翼 类型
  294. */
  295. public String getMwf_configuration_type() {
  296. return this.mwf_configuration_type;
  297. }
  298. String mwa_span_fraction_start;//副翼 展向起始位置
  299. /**
  300. *副翼 展向起始位置
  301. */
  302. public void setMwa_span_fraction_start(String mwa_span_fraction_start) {
  303. this.mwa_span_fraction_start=mwa_span_fraction_start;
  304. }
  305. /**
  306. *副翼 展向起始位置
  307. */
  308. public String getMwa_span_fraction_start() {
  309. return this.mwa_span_fraction_start;
  310. }
  311. String mwa_span_fraction_end;//副翼 展向终止位置
  312. /**
  313. *副翼 展向终止位置
  314. */
  315. public void setMwa_span_fraction_end(String mwa_span_fraction_end) {
  316. this.mwa_span_fraction_end=mwa_span_fraction_end;
  317. }
  318. /**
  319. *副翼 展向终止位置
  320. */
  321. public String getMwa_span_fraction_end() {
  322. return this.mwa_span_fraction_end;
  323. }
  324. String mwa_deflection;//副翼 偏角
  325. /**
  326. *副翼 偏角
  327. */
  328. public void setMwa_deflection(String mwa_deflection) {
  329. this.mwa_deflection=mwa_deflection;
  330. }
  331. /**
  332. *副翼 偏角
  333. */
  334. public String getMwa_deflection() {
  335. return this.mwa_deflection;
  336. }
  337. String mwa_chord_fraction;//副翼 弦向占比
  338. /**
  339. *副翼 弦向占比
  340. */
  341. public void setMwa_chord_fraction(String mwa_chord_fraction) {
  342. this.mwa_chord_fraction=mwa_chord_fraction;
  343. }
  344. /**
  345. *副翼 弦向占比
  346. */
  347. public String getMwa_chord_fraction() {
  348. return this.mwa_chord_fraction;
  349. }
  350. int hw_n_sections;//升降舵 平尾段数
  351. /**
  352. *升降舵 平尾段数
  353. */
  354. public void setHw_n_sections(int hw_n_sections) {
  355. this.hw_n_sections=hw_n_sections;
  356. }
  357. /**
  358. *升降舵 平尾段数
  359. */
  360. public int getHw_n_sections() {
  361. return this.hw_n_sections;
  362. }
  363. String hw_span;//升降舵 翼展
  364. /**
  365. *升降舵 翼展
  366. */
  367. public void setHw_span(String hw_span) {
  368. this.hw_span=hw_span;
  369. }
  370. /**
  371. *升降舵 翼展
  372. */
  373. public String getHw_span() {
  374. return this.hw_span;
  375. }
  376. String hw_mac;//升降舵 平均气动弦长
  377. /**
  378. *升降舵 平均气动弦长
  379. */
  380. public void setHw_mac(String hw_mac) {
  381. this.hw_mac=hw_mac;
  382. }
  383. /**
  384. *升降舵 平均气动弦长
  385. */
  386. public String getHw_mac() {
  387. return this.hw_mac;
  388. }
  389. String hw_sweep;//升降舵 后掠角
  390. /**
  391. *升降舵 后掠角
  392. */
  393. public void setHw_sweep(String hw_sweep) {
  394. this.hw_sweep=hw_sweep;
  395. }
  396. /**
  397. *升降舵 后掠角
  398. */
  399. public String getHw_sweep() {
  400. return this.hw_sweep;
  401. }
  402. String hw_aspect_ratio;//升降舵 展弦比
  403. /**
  404. *升降舵 展弦比
  405. */
  406. public void setHw_aspect_ratio(String hw_aspect_ratio) {
  407. this.hw_aspect_ratio=hw_aspect_ratio;
  408. }
  409. /**
  410. *升降舵 展弦比
  411. */
  412. public String getHw_aspect_ratio() {
  413. return this.hw_aspect_ratio;
  414. }
  415. String hw_area;//升降舵 机翼面积
  416. /**
  417. *升降舵 机翼面积
  418. */
  419. public void setHw_area(String hw_area) {
  420. this.hw_area=hw_area;
  421. }
  422. /**
  423. *升降舵 机翼面积
  424. */
  425. public String getHw_area() {
  426. return this.hw_area;
  427. }
  428. String hw_thickness_to_chord;//升降舵 厚弦比
  429. /**
  430. *升降舵 厚弦比
  431. */
  432. public void setHw_thickness_to_chord(String hw_thickness_to_chord) {
  433. this.hw_thickness_to_chord=hw_thickness_to_chord;
  434. }
  435. /**
  436. *升降舵 厚弦比
  437. */
  438. public String getHw_thickness_to_chord() {
  439. return this.hw_thickness_to_chord;
  440. }
  441. String hwe_span_fraction_start;//升降舵 展向起始位置
  442. /**
  443. *升降舵 展向起始位置
  444. */
  445. public void setHwe_span_fraction_start(String hwe_span_fraction_start) {
  446. this.hwe_span_fraction_start=hwe_span_fraction_start;
  447. }
  448. /**
  449. *升降舵 展向起始位置
  450. */
  451. public String getHwe_span_fraction_start() {
  452. return this.hwe_span_fraction_start;
  453. }
  454. String hwe_span_fraction_end;//升降舵 展向终止位置
  455. /**
  456. *升降舵 展向终止位置
  457. */
  458. public void setHwe_span_fraction_end(String hwe_span_fraction_end) {
  459. this.hwe_span_fraction_end=hwe_span_fraction_end;
  460. }
  461. /**
  462. *升降舵 展向终止位置
  463. */
  464. public String getHwe_span_fraction_end() {
  465. return this.hwe_span_fraction_end;
  466. }
  467. String hwe_deflection;//升降舵 偏角
  468. /**
  469. *升降舵 偏角
  470. */
  471. public void setHwe_deflection(String hwe_deflection) {
  472. this.hwe_deflection=hwe_deflection;
  473. }
  474. /**
  475. *升降舵 偏角
  476. */
  477. public String getHwe_deflection() {
  478. return this.hwe_deflection;
  479. }
  480. String hwe_chord_fraction;//升降舵 弦向占比
  481. /**
  482. *升降舵 弦向占比
  483. */
  484. public void setHwe_chord_fraction(String hwe_chord_fraction) {
  485. this.hwe_chord_fraction=hwe_chord_fraction;
  486. }
  487. /**
  488. *升降舵 弦向占比
  489. */
  490. public String getHwe_chord_fraction() {
  491. return this.hwe_chord_fraction;
  492. }
  493. int vw_n_sections;//垂尾 段数
  494. /**
  495. *垂尾 段数
  496. */
  497. public void setVw_n_sections(int vw_n_sections) {
  498. this.vw_n_sections=vw_n_sections;
  499. }
  500. /**
  501. *垂尾 段数
  502. */
  503. public int getVw_n_sections() {
  504. return this.vw_n_sections;
  505. }
  506. String vw_span;//垂尾 翼展
  507. /**
  508. *垂尾 翼展
  509. */
  510. public void setVw_span(String vw_span) {
  511. this.vw_span=vw_span;
  512. }
  513. /**
  514. *垂尾 翼展
  515. */
  516. public String getVw_span() {
  517. return this.vw_span;
  518. }
  519. String vw_mac;//垂尾 平均气动弦长
  520. /**
  521. *垂尾 平均气动弦长
  522. */
  523. public void setVw_mac(String vw_mac) {
  524. this.vw_mac=vw_mac;
  525. }
  526. /**
  527. *垂尾 平均气动弦长
  528. */
  529. public String getVw_mac() {
  530. return this.vw_mac;
  531. }
  532. String vw_sweep;//垂尾 后掠角
  533. /**
  534. *垂尾 后掠角
  535. */
  536. public void setVw_sweep(String vw_sweep) {
  537. this.vw_sweep=vw_sweep;
  538. }
  539. /**
  540. *垂尾 后掠角
  541. */
  542. public String getVw_sweep() {
  543. return this.vw_sweep;
  544. }
  545. String vw_aspect_ratio;//垂尾 展弦比
  546. /**
  547. *垂尾 展弦比
  548. */
  549. public void setVw_aspect_ratio(String vw_aspect_ratio) {
  550. this.vw_aspect_ratio=vw_aspect_ratio;
  551. }
  552. /**
  553. *垂尾 展弦比
  554. */
  555. public String getVw_aspect_ratio() {
  556. return this.vw_aspect_ratio;
  557. }
  558. String vw_area;//垂尾 机翼面积
  559. /**
  560. *垂尾 机翼面积
  561. */
  562. public void setVw_area(String vw_area) {
  563. this.vw_area=vw_area;
  564. }
  565. /**
  566. *垂尾 机翼面积
  567. */
  568. public String getVw_area() {
  569. return this.vw_area;
  570. }
  571. String vw_thickness_to_chord;//垂尾 厚弦比
  572. /**
  573. *垂尾 厚弦比
  574. */
  575. public void setVw_thickness_to_chord(String vw_thickness_to_chord) {
  576. this.vw_thickness_to_chord=vw_thickness_to_chord;
  577. }
  578. /**
  579. *垂尾 厚弦比
  580. */
  581. public String getVw_thickness_to_chord() {
  582. return this.vw_thickness_to_chord;
  583. }
  584. String f_length;//机身 总长
  585. /**
  586. *机身 总长
  587. */
  588. public void setF_length(String f_length) {
  589. this.f_length=f_length;
  590. }
  591. /**
  592. *机身 总长
  593. */
  594. public String getF_length() {
  595. return this.f_length;
  596. }
  597. String f_diameter;//机身 宽度
  598. /**
  599. *机身 宽度
  600. */
  601. public void setF_diameter(String f_diameter) {
  602. this.f_diameter=f_diameter;
  603. }
  604. /**
  605. *机身 宽度
  606. */
  607. public String getF_diameter() {
  608. return this.f_diameter;
  609. }
  610. int n_symmetry;//机舱 是否对称 0不对称 1对称
  611. /**
  612. *机舱 是否对称 0不对称 1对称
  613. */
  614. public void setN_symmetry(int n_symmetry) {
  615. this.n_symmetry=n_symmetry;
  616. }
  617. /**
  618. *机舱 是否对称 0不对称 1对称
  619. */
  620. public int getN_symmetry() {
  621. return this.n_symmetry;
  622. }
  623. String n_length;//机舱 长度
  624. /**
  625. *机舱 长度
  626. */
  627. public void setN_length(String n_length) {
  628. this.n_length=n_length;
  629. }
  630. /**
  631. *机舱 长度
  632. */
  633. public String getN_length() {
  634. return this.n_length;
  635. }
  636. String n_diameter;//机舱 直径
  637. /**
  638. *机舱 直径
  639. */
  640. public void setN_diameter(String n_diameter) {
  641. this.n_diameter=n_diameter;
  642. }
  643. /**
  644. *机舱 直径
  645. */
  646. public String getN_diameter() {
  647. return this.n_diameter;
  648. }
  649. String n_x;//机舱 原点位置x
  650. /**
  651. *机舱 原点位置x
  652. */
  653. public void setN_x(String n_x) {
  654. this.n_x=n_x;
  655. }
  656. /**
  657. *机舱 原点位置x
  658. */
  659. public String getN_x() {
  660. return this.n_x;
  661. }
  662. String n_y;//机舱 原点位置y
  663. /**
  664. *机舱 原点位置y
  665. */
  666. public void setN_y(String n_y) {
  667. this.n_y=n_y;
  668. }
  669. /**
  670. *机舱 原点位置y
  671. */
  672. public String getN_y() {
  673. return this.n_y;
  674. }
  675. String n_z;//机舱 原点位置z
  676. /**
  677. *机舱 原点位置z
  678. */
  679. public void setN_z(String n_z) {
  680. this.n_z=n_z;
  681. }
  682. /**
  683. *机舱 原点位置z
  684. */
  685. public String getN_z() {
  686. return this.n_z;
  687. }
  688. String network_tag;//动力网络 标签
  689. /**
  690. *动力网络 标签
  691. */
  692. public void setNetwork_tag(String network_tag) {
  693. this.network_tag=network_tag;
  694. }
  695. /**
  696. *动力网络 标签
  697. */
  698. public String getNetwork_tag() {
  699. return this.network_tag;
  700. }
  701. String fuel_consumption_rate;//动力网络 燃油消耗率
  702. /**
  703. *动力网络 燃油消耗率
  704. */
  705. public void setFuel_consumption_rate(String fuel_consumption_rate) {
  706. this.fuel_consumption_rate=fuel_consumption_rate;
  707. }
  708. /**
  709. *动力网络 燃油消耗率
  710. */
  711. public String getFuel_consumption_rate() {
  712. return this.fuel_consumption_rate;
  713. }
  714. int num_of_engines;//动力网络 发动机个数
  715. /**
  716. *动力网络 发动机个数
  717. */
  718. public void setNum_of_engines(int num_of_engines) {
  719. this.num_of_engines=num_of_engines;
  720. }
  721. /**
  722. *动力网络 发动机个数
  723. */
  724. public int getNum_of_engines() {
  725. return this.num_of_engines;
  726. }
  727. String engine_length;//动力网络 发动机长度
  728. /**
  729. *动力网络 发动机长度
  730. */
  731. public void setEngine_length(String engine_length) {
  732. this.engine_length=engine_length;
  733. }
  734. /**
  735. *动力网络 发动机长度
  736. */
  737. public String getEngine_length() {
  738. return this.engine_length;
  739. }
  740. String engine_diameter;//动力网络 发动机直径
  741. /**
  742. *动力网络 发动机直径
  743. */
  744. public void setEngine_diameter(String engine_diameter) {
  745. this.engine_diameter=engine_diameter;
  746. }
  747. /**
  748. *动力网络 发动机直径
  749. */
  750. public String getEngine_diameter() {
  751. return this.engine_diameter;
  752. }
  753. String bypass_ratio;//动力网络 涵道比
  754. /**
  755. *动力网络 涵道比
  756. */
  757. public void setBypass_ratio(String bypass_ratio) {
  758. this.bypass_ratio=bypass_ratio;
  759. }
  760. /**
  761. *动力网络 涵道比
  762. */
  763. public String getBypass_ratio() {
  764. return this.bypass_ratio;
  765. }
  766. String design_thrust;//动力网络 设计推力
  767. /**
  768. *动力网络 设计推力
  769. */
  770. public void setDesign_thrust(String design_thrust) {
  771. this.design_thrust=design_thrust;
  772. }
  773. /**
  774. *动力网络 设计推力
  775. */
  776. public String getDesign_thrust() {
  777. return this.design_thrust;
  778. }
  779. String takeoff_flap_deflection;//起飞设置 襟翼偏角
  780. /**
  781. *起飞设置 襟翼偏角
  782. */
  783. public void setTakeoff_flap_deflection(String takeoff_flap_deflection) {
  784. this.takeoff_flap_deflection=takeoff_flap_deflection;
  785. }
  786. /**
  787. *起飞设置 襟翼偏角
  788. */
  789. public String getTakeoff_flap_deflection() {
  790. return this.takeoff_flap_deflection;
  791. }
  792. String takeoff_v2_vs_ratio;//起飞设置 V2速度或失速速度
  793. /**
  794. *起飞设置 V2速度或失速速度
  795. */
  796. public void setTakeoff_v2_vs_ratio(String takeoff_v2_vs_ratio) {
  797. this.takeoff_v2_vs_ratio=takeoff_v2_vs_ratio;
  798. }
  799. /**
  800. *起飞设置 V2速度或失速速度
  801. */
  802. public String getTakeoff_v2_vs_ratio() {
  803. return this.takeoff_v2_vs_ratio;
  804. }
  805. String landing_flap_deflection;//着陆设置 襟翼偏角
  806. /**
  807. *着陆设置 襟翼偏角
  808. */
  809. public void setLanding_flap_deflection(String landing_flap_deflection) {
  810. this.landing_flap_deflection=landing_flap_deflection;
  811. }
  812. /**
  813. *着陆设置 襟翼偏角
  814. */
  815. public String getLanding_flap_deflection() {
  816. return this.landing_flap_deflection;
  817. }
  818. String landing_slat_deflection;//着陆设置 缝翼偏角
  819. /**
  820. *着陆设置 缝翼偏角
  821. */
  822. public void setLanding_slat_deflection(String landing_slat_deflection) {
  823. this.landing_slat_deflection=landing_slat_deflection;
  824. }
  825. /**
  826. *着陆设置 缝翼偏角
  827. */
  828. public String getLanding_slat_deflection() {
  829. return this.landing_slat_deflection;
  830. }
  831. String landing_vref_vs_ratio;//着陆设置 进场速度或失速速度
  832. /**
  833. *着陆设置 进场速度或失速速度
  834. */
  835. public void setLanding_vref_vs_ratio(String landing_vref_vs_ratio) {
  836. this.landing_vref_vs_ratio=landing_vref_vs_ratio;
  837. }
  838. /**
  839. *着陆设置 进场速度或失速速度
  840. */
  841. public String getLanding_vref_vs_ratio() {
  842. return this.landing_vref_vs_ratio;
  843. }
  844. String airport_tag;//机场 标签
  845. /**
  846. *机场 标签
  847. */
  848. public void setAirport_tag(String airport_tag) {
  849. this.airport_tag=airport_tag;
  850. }
  851. /**
  852. *机场 标签
  853. */
  854. public String getAirport_tag() {
  855. return this.airport_tag;
  856. }
  857. String airport_altitude;//机场 海拔高度
  858. /**
  859. *机场 海拔高度
  860. */
  861. public void setAirport_altitude(String airport_altitude) {
  862. this.airport_altitude=airport_altitude;
  863. }
  864. /**
  865. *机场 海拔高度
  866. */
  867. public String getAirport_altitude() {
  868. return this.airport_altitude;
  869. }
  870. String airport_delta_isa;//机场 ISA偏差
  871. /**
  872. *机场 ISA偏差
  873. */
  874. public void setAirport_delta_isa(String airport_delta_isa) {
  875. this.airport_delta_isa=airport_delta_isa;
  876. }
  877. /**
  878. *机场 ISA偏差
  879. */
  880. public String getAirport_delta_isa() {
  881. return this.airport_delta_isa;
  882. }
  883. String cruise_altitude;//巡航高度
  884. /**
  885. *巡航高度
  886. */
  887. public void setCruise_altitude(String cruise_altitude) {
  888. this.cruise_altitude=cruise_altitude;
  889. }
  890. /**
  891. *巡航高度
  892. */
  893. public String getCruise_altitude() {
  894. return this.cruise_altitude;
  895. }
  896. String cruise_mach;//巡航马赫数
  897. /**
  898. *巡航马赫数
  899. */
  900. public void setCruise_mach(String cruise_mach) {
  901. this.cruise_mach=cruise_mach;
  902. }
  903. /**
  904. *巡航马赫数
  905. */
  906. public String getCruise_mach() {
  907. return this.cruise_mach;
  908. }
  909. String envelope_machs;//飞行包线 马赫数
  910. /**
  911. *飞行包线 马赫数
  912. */
  913. public void setEnvelope_machs(String envelope_machs) {
  914. this.envelope_machs=envelope_machs;
  915. }
  916. /**
  917. *飞行包线 马赫数
  918. */
  919. public String getEnvelope_machs() {
  920. return this.envelope_machs;
  921. }
  922. String envelope_altitudes;//飞行包线 高度
  923. /**
  924. *飞行包线 高度
  925. */
  926. public void setEnvelope_altitudes(String envelope_altitudes) {
  927. this.envelope_altitudes=envelope_altitudes;
  928. }
  929. /**
  930. *飞行包线 高度
  931. */
  932. public String getEnvelope_altitudes() {
  933. return this.envelope_altitudes;
  934. }
  935. String stability_mach;//稳定性计算输入 马赫数
  936. /**
  937. *稳定性计算输入 马赫数
  938. */
  939. public void setStability_mach(String stability_mach) {
  940. this.stability_mach=stability_mach;
  941. }
  942. /**
  943. *稳定性计算输入 马赫数
  944. */
  945. public String getStability_mach() {
  946. return this.stability_mach;
  947. }
  948. String stability_altitude;//稳定性计算输入 海拔高度
  949. /**
  950. *稳定性计算输入 海拔高度
  951. */
  952. public void setStability_altitude(String stability_altitude) {
  953. this.stability_altitude=stability_altitude;
  954. }
  955. /**
  956. *稳定性计算输入 海拔高度
  957. */
  958. public String getStability_altitude() {
  959. return this.stability_altitude;
  960. }
  961. String minimal_flight_speed;//最小平飞速度
  962. /**
  963. *最小平飞速度
  964. */
  965. public void setMinimal_flight_speed(String minimal_flight_speed) {
  966. this.minimal_flight_speed=minimal_flight_speed;
  967. }
  968. /**
  969. *最小平飞速度
  970. */
  971. public String getMinimal_flight_speed() {
  972. return this.minimal_flight_speed;
  973. }
  974. String maximal_flight_speed;//最大平飞速度
  975. /**
  976. *最大平飞速度
  977. */
  978. public void setMaximal_flight_speed(String maximal_flight_speed) {
  979. this.maximal_flight_speed=maximal_flight_speed;
  980. }
  981. /**
  982. *最大平飞速度
  983. */
  984. public String getMaximal_flight_speed() {
  985. return this.maximal_flight_speed;
  986. }
  987. String rate_of_climb;//爬升率
  988. /**
  989. *爬升率
  990. */
  991. public void setRate_of_climb(String rate_of_climb) {
  992. this.rate_of_climb=rate_of_climb;
  993. }
  994. /**
  995. *爬升率
  996. */
  997. public String getRate_of_climb() {
  998. return this.rate_of_climb;
  999. }
  1000. String ceiling;//升限
  1001. /**
  1002. *升限
  1003. */
  1004. public void setCeiling(String ceiling) {
  1005. this.ceiling=ceiling;
  1006. }
  1007. /**
  1008. *升限
  1009. */
  1010. public String getCeiling() {
  1011. return this.ceiling;
  1012. }
  1013. String range;//航程
  1014. /**
  1015. *航程
  1016. */
  1017. public void setRange(String range) {
  1018. this.range=range;
  1019. }
  1020. /**
  1021. *航程
  1022. */
  1023. public String getRange() {
  1024. return this.range;
  1025. }
  1026. String time;//航时
  1027. /**
  1028. *航时
  1029. */
  1030. public void setTime(String time) {
  1031. this.time=time;
  1032. }
  1033. /**
  1034. *航时
  1035. */
  1036. public String getTime() {
  1037. return this.time;
  1038. }
  1039. String takeoff_field_length;//起飞场长
  1040. /**
  1041. *起飞场长
  1042. */
  1043. public void setTakeoff_field_length(String takeoff_field_length) {
  1044. this.takeoff_field_length=takeoff_field_length;
  1045. }
  1046. /**
  1047. *起飞场长
  1048. */
  1049. public String getTakeoff_field_length() {
  1050. return this.takeoff_field_length;
  1051. }
  1052. String landing_field_length;//着陆场长
  1053. /**
  1054. *着陆场长
  1055. */
  1056. public void setLanding_field_length(String landing_field_length) {
  1057. this.landing_field_length=landing_field_length;
  1058. }
  1059. /**
  1060. *着陆场长
  1061. */
  1062. public String getLanding_field_length() {
  1063. return this.landing_field_length;
  1064. }
  1065. String cm_alpha;//纵向静稳定导数
  1066. /**
  1067. *纵向静稳定导数
  1068. */
  1069. public void setCm_alpha(String cm_alpha) {
  1070. this.cm_alpha=cm_alpha;
  1071. }
  1072. /**
  1073. *纵向静稳定导数
  1074. */
  1075. public String getCm_alpha() {
  1076. return this.cm_alpha;
  1077. }
  1078. String cn_beta;//航向静稳定导数
  1079. /**
  1080. *航向静稳定导数
  1081. */
  1082. public void setCn_beta(String cn_beta) {
  1083. this.cn_beta=cn_beta;
  1084. }
  1085. /**
  1086. *航向静稳定导数
  1087. */
  1088. public String getCn_beta() {
  1089. return this.cn_beta;
  1090. }
  1091. String phugoid_zeta;//长周期模态(阻尼比)
  1092. /**
  1093. *长周期模态(阻尼比)
  1094. */
  1095. public void setPhugoid_zeta(String phugoid_zeta) {
  1096. this.phugoid_zeta=phugoid_zeta;
  1097. }
  1098. /**
  1099. *长周期模态(阻尼比)
  1100. */
  1101. public String getPhugoid_zeta() {
  1102. return this.phugoid_zeta;
  1103. }
  1104. String phugoid_omega_n;//长周期模态(频率)
  1105. /**
  1106. *长周期模态(频率)
  1107. */
  1108. public void setPhugoid_omega_n(String phugoid_omega_n) {
  1109. this.phugoid_omega_n=phugoid_omega_n;
  1110. }
  1111. /**
  1112. *长周期模态(频率)
  1113. */
  1114. public String getPhugoid_omega_n() {
  1115. return this.phugoid_omega_n;
  1116. }
  1117. String short_period_zeta;//短周期模态(阻尼比)
  1118. /**
  1119. *短周期模态(阻尼比)
  1120. */
  1121. public void setShort_period_zeta(String short_period_zeta) {
  1122. this.short_period_zeta=short_period_zeta;
  1123. }
  1124. /**
  1125. *短周期模态(阻尼比)
  1126. */
  1127. public String getShort_period_zeta() {
  1128. return this.short_period_zeta;
  1129. }
  1130. String short_period_omega_n;//短周期模态(频率)
  1131. /**
  1132. *短周期模态(频率)
  1133. */
  1134. public void setShort_period_omega_n(String short_period_omega_n) {
  1135. this.short_period_omega_n=short_period_omega_n;
  1136. }
  1137. /**
  1138. *短周期模态(频率)
  1139. */
  1140. public String getShort_period_omega_n() {
  1141. return this.short_period_omega_n;
  1142. }
  1143. String spiral_tau;//螺旋模态(时间常数)
  1144. /**
  1145. *螺旋模态(时间常数)
  1146. */
  1147. public void setSpiral_tau(String spiral_tau) {
  1148. this.spiral_tau=spiral_tau;
  1149. }
  1150. /**
  1151. *螺旋模态(时间常数)
  1152. */
  1153. public String getSpiral_tau() {
  1154. return this.spiral_tau;
  1155. }
  1156. String roll_tau;//滚转模态(时间常数)
  1157. /**
  1158. *滚转模态(时间常数)
  1159. */
  1160. public void setRoll_tau(String roll_tau) {
  1161. this.roll_tau=roll_tau;
  1162. }
  1163. /**
  1164. *滚转模态(时间常数)
  1165. */
  1166. public String getRoll_tau() {
  1167. return this.roll_tau;
  1168. }
  1169. String dutch_roll_zeta;//荷兰滚模态(阻尼比)
  1170. /**
  1171. *荷兰滚模态(阻尼比)
  1172. */
  1173. public void setDutch_roll_zeta(String dutch_roll_zeta) {
  1174. this.dutch_roll_zeta=dutch_roll_zeta;
  1175. }
  1176. /**
  1177. *荷兰滚模态(阻尼比)
  1178. */
  1179. public String getDutch_roll_zeta() {
  1180. return this.dutch_roll_zeta;
  1181. }
  1182. String dutch_roll_omega_n;//荷兰滚模态(频率)
  1183. /**
  1184. *荷兰滚模态(频率)
  1185. */
  1186. public void setDutch_roll_omega_n(String dutch_roll_omega_n) {
  1187. this.dutch_roll_omega_n=dutch_roll_omega_n;
  1188. }
  1189. /**
  1190. *荷兰滚模态(频率)
  1191. */
  1192. public String getDutch_roll_omega_n() {
  1193. return this.dutch_roll_omega_n;
  1194. }
  1195. }