Working on fixing the late Orbiter the early shuttle seems to work good.
But one question is the body flap.
"The body flap scale reads body flap positions from zero to 100 percent of software-allowed travel. Zero percent corresponds to full up (-11.7°) and 100 percent corresponds to full down (+22.5°). The small pointer at 34 percent is fixed and shows the trail position. "
"The BODY FLAP pushbutton indicator is also one pushbutton with separate AUTO and MAN lights, indicating the state of the body flap channel."
Right now I would say the body flap is set at Auto. Where in atmosphere is stays at the trail position. BUT I suppose if in manual you could control the body flap?
So right now I have this for trim/body flap.
//*******Body flap
static UINT bfGrp[1] = { GRP_Group2 };
static MGROUP_ROTATE BodyFlap(midx, bfGrp, 1,
_V(0, -2.199202, -12.13037), _V(-1, 0, 0), (float)(34.2 * RAD));
anim_bodyflap = CreateAnimation(0.34);
AddAnimationComponent(anim_bodyflap, 0, 1, &BodyFlap);
so range of the flap is 34.2 degrees.
if (status == 1)bodyflap = 0;
if (status == 3)bodyflap = .34;
status =1 launch
status 3 in orbit.
Do I have this wrong?