Create an optical link budget for an Alpha-Centauri mission.
Computes a link budget for transmission from an Earth-orbit-based station to a receiver in the Alpha Centauri system. Therefore there are no atmosphere losses. ------------------------------------------------------------------------- References: Lambert, S. G. and W. L. Casey (1995.) Laser Communications in Space. Artech, Boston. ------------------------------------------------------------------------- See also OpticalLinkBudget -------------------------------------------------------------------------
%-------------------------------------------------------------------------- % Copyright (c) 2011 Princeton Satellite Systems, Inc. % All rights reserved. %-------------------------------------------------------------------------- clear d; disp('Alpha-Centauri'); lightYearInM = 9.4605284e15; d.wavelength = 532e-9; % nd:YLF (Neodymium doped: Ytterbium Lithium Floride) d.transmitApertureDiameter = 0.2; % M d.thetaOffset = 0; % No offset d.transmitPower = 100; % W d.wavefrontError = 0; % Loss is exp(-2*pi*error/wavelength) d.range = 4.32*lightYearInM; % 41 AU d.receiverLoss = 1; % 0 to 1, 1 means no loss d.receiverPointingLoss = 1; % 0 to 1, 1 means no loss d.receiveApertureDiameter = 10; % Telescope diameter (m) powerReceived = OpticalLinkBudget( d ); fprintf('The power received is %.4g W. \n',powerReceived); %--------------------------------------
Alpha-Centauri The power received is 5.219e-19 W.