Plan a simplified lunar transfer assuming you start in a geo transfer orbit.

This will result in the moon crashing into the spacecraft from behind. ------------------------------------------------------------------------ See also Constant, SS2O ------------------------------------------------------------------------

Contents

%-------------------------------------------------------------------------------
%   Copyright 1998 Princeton Satellite Systems, Inc. All rights reserved.
%-------------------------------------------------------------------------------

hPerigee     = 400; % km. Reasonable for Ariane

rPerigee     = hPerigee + Constant('Earth radius mean');
rGeoApogee   = 42167;
rLunarApogee = 384400;
mu           = Constant('mu earth');

Semi major axes of the two ellipses

%------------------------------------
aGeo           = 0.5*(rPerigee + rGeoApogee);
aLunar         = 0.5*(rPerigee + rLunarApogee);
vGeoTransfer   = sqrt(mu*(2/rPerigee - 1/aGeo));
vLunarTransfer = sqrt(mu*(2/rPerigee - 1/aLunar));

deltaV         = vLunarTransfer - vGeoTransfer;

Assume 20 N monopropellant hydrazine engines

%---------------------------------------------
iSp                = 200;  % sec
mPayload           = 50;   % kg
structuralFraction = 0.2;  % Ratio of structural mass to fuel mass
thrustTotal        = 40;   % 2 20 N engines

[mFuel, mTotal, mStructure] = SS2O( iSp, mPayload, structuralFraction, deltaV );

burnDuration       = deltaV*1000*mTotal/thrustTotal;

disp('A simple coplanar lunar transfer')
disp('--------------------------------')
disp(sprintf('Structural Fraction = %12.2f',structuralFraction))
disp(sprintf('Structure Mass      = %12.2f kg',mStructure))
disp(sprintf('Payload Mass        = %12.2f kg',mPayload))
disp(sprintf('Fuel    Mass        = %12.2f kg',mFuel))
disp(sprintf('Total   Mass        = %12.2f kg',mTotal))
disp(sprintf('Delta V             = %12.4f km/sec',deltaV ))
disp(sprintf('Total Thrust        = %12.2f N',thrustTotal))
disp(sprintf('Specific Impulse    = %12.2f sec',iSp))
disp(sprintf('Burn Duration       = %12.2f min',burnDuration/60))


%--------------------------------------
% PSS internal file version information
%--------------------------------------
A simple coplanar lunar transfer
--------------------------------
Structural Fraction =         0.20
Structure Mass      =         4.56 kg
Payload Mass        =        50.00 kg
Fuel    Mass        =        22.78 kg
Total   Mass        =        77.33 kg
Delta V             =       0.6843 km/sec
Total Thrust        =        40.00 N
Specific Impulse    =       200.00 sec
Burn Duration       =        22.05 min