Based on the original Rocket Workbench on SourceForge in CVS at: https://sourceforge.net/projects/rocketworkbench
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
4.3 KiB

  1. global = (length_units = "meter"
  2. ,mass_units = "kg"
  3. )
  4. rocket = (name = "Meteor"
  5. ,cg = 1.0
  6. ,body = (type = "conic_nose" # Ogive, Elliptic
  7. # Conic, Parabolic
  8. ,length = 0.3 # meter
  9. ,diameter = 0.1 # meter
  10. # one of those
  11. ,mass = 0.1 # kg
  12. )
  13. ,body = (type = "tube"
  14. ,length = 1.3
  15. ,mass = 0.1
  16. )
  17. ,fin = (num = 4
  18. ,pos = 1.4 # distance from nose tip to leading
  19. # edge at the root
  20. ,root_chord = 0.2
  21. ,tip_chord = 0.1
  22. # distance between root and tip
  23. # leading edge measured parallel to
  24. # the rocket
  25. ,root_tip_d = 0.2
  26. ,semispan = 0.2
  27. ,body_radius = 0.05
  28. ,mass = 0.05 # of one fin
  29. )
  30. ,motor = (zpos = 2.5 # distance from nose tip
  31. ,rpos = 0.0 # axial distance
  32. ,diameter = 0.04
  33. ,length = 0.35
  34. ,empty_mass = 1.0
  35. ,full_mass = 10.0
  36. )
  37. ,tank = (zpos = 1.
  38. ,rpos = 0.0
  39. ,diameter = 0.05
  40. ,length = 1.
  41. ,empty_mass = 1.0
  42. ,full_mass = 10.0
  43. )
  44. ,other = (shape = "thick_cylinder"
  45. ,zpos = 0.2
  46. ,rpos = 0.0
  47. ,Ix = 1.
  48. ,Iy = 1.
  49. ,mass = 5.
  50. )
  51. )
  52. #rocket = (name = "Meteor",
  53. # body = (type = "ogive_nose" #Ogive, Elliptic
  54. # # Conic, Parabolic
  55. # ,length = 0.3
  56. # ,diameter = 0.06
  57. # ,density = 0.3
  58. # )
  59. # ,body = (type = "tube"
  60. # ,length = 1.5
  61. # ,density = 0.3
  62. # )
  63. # ,body = (type = "transition"
  64. # ,length = 0.2
  65. # ,density = 0.3
  66. #
  67. # )
  68. # ,body = (type = "tube"
  69. # ,length = 1.
  70. # ,diameter = 0.1
  71. # ,density = 0.3
  72. # )
  73. # ,fin = (num = 4
  74. # ,pos = 2.5 # position of the beginning of the root
  75. # ,root_chord = 0.2
  76. # ,tip_chord = 0.05
  77. # distance between root and tip
  78. # leading edge measured parallel to
  79. # the rocket
  80. # ,root_tip_d = 0.03
  81. # ,semispan = 0.02
  82. # )
  83. # ,motor = (zpos = 2.5 # distance from nose tip
  84. # ,rpos = 0.0 # axial distance
  85. # ,diameter = 0.04
  86. # ,length = 0.35
  87. # ,empty_mass = 1.0
  88. # ,full_mass = 10.0
  89. # )
  90. # ,tank = (zpos = 1.
  91. # ,rpos = 0.0
  92. # ,diameter = 0.05
  93. # ,length = 1.
  94. # ,empty_mass = 1.0
  95. # ,full_mass = 10.0
  96. # )
  97. # ,other = (shape = "thick_cylinder"
  98. # ,zpos = 0.2
  99. # ,rpos = 0.0
  100. # ,Ix = 1.
  101. # ,Iy = 1.
  102. # ,mass = 5.
  103. # )
  104. # )