Flight Question change the orbiter elements with the thruster

weiqi

New member
Joined
Feb 20, 2009
Messages
23
Reaction score
0
Points
0
I have added some thrusters to the satellite which I have created by myself. However, when I use the thrusters to change the Orbiter, the satellite just rolled around. I don't know what's the matter behind this, could anyone help me? Thank you!
 

Tommy

Well-known member
Joined
Aug 14, 2008
Messages
2,019
Reaction score
86
Points
48
Location
Here and now
Possibly the thrust vector is not aligned with the COG? Or double check your thruster groupings? You really don't give us much info to use diagnosing this.
 

Zatnikitelman

Addon Developer
Addon Developer
Joined
Jan 13, 2008
Messages
2,302
Reaction score
6
Points
38
Location
Atlanta, GA, USA, North America
Ok, is this a Spacecraft3 vessel or a .dll vessel?
If the former, did you specify an EX_MAIN section?
If the latter, how have you defined the thrusters in the source file?
 

weiqi

New member
Joined
Feb 20, 2009
Messages
23
Reaction score
0
Points
0
Ok, is this a Spacecraft3 vessel or a .dll vessel?
If the former, did you specify an EX_MAIN section?
If the latter, how have you defined the thrusters in the source file?
Thank you for paying attention to my question. It's a .dll vessel. If the thruster force vector doesn't pass through the satellite's center of gravity, it will make an angular accleration, don't think so? So I want to know what's the defination of the center of gravity in Orbiter or what should I do to find the coordinate of the grabity center?

Thanks for your help!
 

tblaxland

O-F Administrator
Administrator
Addon Developer
Webmaster
Joined
Jan 1, 2008
Messages
7,320
Reaction score
25
Points
113
Location
Sydney, Australia
So I want to know what's the defination of the center of gravity in Orbiter or what should I do to find the coordinate of the grabity center?
The centre of gravity is always {0,0,0} in local vessel coordinates. If you want to avoid a thruster making angular accelerations the thruster must act through that point or have a pair (or more) of thrusters so that their torque balances out. For example, these would be OK:

1. Thruster attack point {0,0,-2}, thruster direction {0,0,1}.
2. Thruster attack points {-1,0,-2},{1,0,-2}, thruster direction {0,0,1}.
 
Top