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.

56 lines
1.8 KiB

  1. simulation =
  2. (initial_conditions = (u = 0.0,
  3. v = 0.0,
  4. w = 0.0,
  5. P = 0.0,
  6. Q = 0.0,
  7. R = 0.0,
  8. latitude = 0.0,
  9. longitude = 0.0,
  10. altitude = 0.0,
  11. phi = 0.0,
  12. theta = 89.0,
  13. psi = 0.0
  14. ),
  15. rocket = (stage = (dry_mass = 1000., # (Head)
  16. Ix = 4390.,
  17. Iy = 318245.,
  18. Iz = 318245.,
  19. Cd = 0.15,
  20. Cd_data_file = "V2drag.dat",
  21. CL = 0.1,
  22. CB = 0.1,
  23. Cspin = 20.0,
  24. Cmoment = 6.32,
  25. Cdamping = 31.6,
  26. Diameter = 1.65,
  27. # this is the total duration during which the
  28. # stage is active, i.e. from the time the previous
  29. # stage were drop until this stage is drop.
  30. active_time = 1000.0,
  31. engine = (thrust = 250000.0,
  32. thrust_data_file = "V2thrust.dat",
  33. propellant_mass = 8935.,
  34. dry_mass = 2965.,
  35. mass_flow = 0.1,
  36. start_time = 0.0,
  37. burn_time = 65.,
  38. drop_time = 65.0,
  39. position = (x = -1.0,
  40. y = 0.0,
  41. z = 0.0),
  42. direction = (x = 1.0,
  43. y = 0.0,
  44. z = 0.0)
  45. )
  46. )
  47. )
  48. ,solution = (duration = 100.0,
  49. dt = 0.1,
  50. precision = 0.01)
  51. )