Hello!
I have written a boot config by myself, but I just get a "converging" all the time. I'm wondering if I have done something wrong. Tried many times but still failed.
Here is the code. I use the Real scale booster to built the Delta.
GLOBAL vehicle IS LIST(
LEXICON(
"name", "Delta IV Common Booster Core",
"massTotal", 399238,
"massDry", 61362,
"gLim", 4.5,
"minThrottle", 0.56,
"engines", LIST(LEXICON("isp", 409, "thrust", 3370000)),
"staging", LEXICON(
"jettison", FALSE,
"ignition", FALSE
)
),
LEXICON(
"name", "DCSS",
"massTotal", 34645,
"massDry", 7444,
"engines", LIST(LEXICON("isp", 465.0, "thrust", 110100)),
"staging", LEXICON(
"jettison", TRUE,
"waitBeforeJettison", 5,
"ignition", TRUE,
"waitBeforeIgnition", 2,
"ullage", "rcs",
"ullageBurnDuration", 3,
"postUllageBurn", 2
)
)
).
GLOBAL sequence IS LIST(
LEXICON("time", -4, "type", "stage", "message", "RS-68 ignition"),
LEXICON("time", 0, "type", "stage", "message", "LIFT OFF"),
LEXICON("time", 90, "type", "stage", "message", "GEM 60 jettison"),
LEXICON("time", 300, "type", "jettison", "message", "Fairing jettison", "massLost", 1760*2)
).
GLOBAL controls IS LEXICON(
"launchTimeAdvance", 150,
"verticalAscentTime", 7,
"pitchOverAngle", 13,
"upfgActivation", 110
).
GLOBAL mission IS LEXICON(
"payload", 496,
"periapsis", 200,
"apoapsis", 200,
"inclination", 0
).
SWITCH TO 0.
CLEARSCREEN.
PRINT "Loaded boot file: DeltaIV_M+_(5,4)".