Vessel BepiColombo

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
Code:
const double FUELMASS = 1400;
SetEmptyMass(1100);
So what would be the max thrust if all 4 ion thrusters were fired?
So isp is in m/s right?
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,632
Reaction score
2,351
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
Code:
const double FUELMASS = 1400;
SetEmptyMass(1100);
So what would be the max thrust if all 4 ion thrusters were fired?
So isp is in m/s right?


Yes. And you can't fire all four at once. Simply, because there is not enough electricity in the spacecraft.


Two engines at once is the limit and that then with reduced maximum thrust for both.
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,632
Reaction score
2,351
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
So the max thrust should be .23/2


Well, if you are using two engines, it should be 0.29/2 = 0.145


0.23 is the maximum thrust of one engine.


0.2 is the thrust with the optimal specific impulse.
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,632
Reaction score
2,351
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
Ok. So i will make it so only 2 fire and isp of .2


No - ISP is 43000 m/s at 200 mN thrust for one engine. But as said: If the MTM uses two engines, the electrical power is only enough for 290 mN thrust in total for both engines: 145 mN for one engine.

---------- Post added at 00:51 ---------- Previous post was at 00:11 ----------

In this PDF, you can find a performance plot of a T6 thruster, on page 6:

http://epic-src.eu/wp-content/uploads/23_EPICWorkshop2017_QinetiQ_EPIC_Madrid-2017.pdf
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
So have only 2 engines fires.
Code:
th_main[0] = CreateThruster(_V(0, 0, .3), _V(0, 0, 1), .29 / 2, tank3, ISP);
	th_main[1] = CreateThruster(_V(0, 0, .3), _V(0, 0, 1), .29 / 2, tank3, ISP);

const double ISP = 43000;
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,632
Reaction score
2,351
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
Yes - and that is switched during the mission to reduce tear and wear. Those new engines are much better than previous generations, but still they allow less on-off-cycles than a classic RCS thruster for example.
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
So here is the MPO
CKlMdy4.jpg


It has reaction wheels and rcs and thrust. I need to see what those amount are.
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
x0wJEd7.jpg

I need to fix the width of the panels.
tWACIOC.jpg


I have the 2 main vessels docked and the shield attached.
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
Thanks. Working on the MMO. I am redoing the body. But I have seen 2 versions. One with solar panels the entire length of the body and one not the length. Any ideas?
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
What did it look like?

So this is what I have for the MMO.
hsgwJ2W.jpg


I suppose the thing in the center should be sun tracking?


So do we have the launch vessel?
 
Last edited:

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
So this is what I have for the MMO:
Qdkwhu1.jpg


I looked at the fact sheet and it mentioned in the shield the launch part for the mmo.

So I will make a rotating attachment point. But at what rotational speed? And then I guess it would release and spin away?
 

gattispilot

Addon Developer
Addon Developer
Joined
Oct 17, 2007
Messages
8,735
Reaction score
2,703
Points
203
Location
Dallas, TX
Thanks.

So I suppose an attachment ment point that rotates and the MMO is attached. This point rotates to 15 rpm. And then press a key and release? I guess with some z force to move it away from the shield?

Not sure how the code of that earth tracking would be. Maybe similar to sun tracking?
 
Top