Look at fusion losses for several fuels

Demonstrates Bremsstrahlung and Synchrotron. Considers D-T, D-3He, and p-B11.

See also: Bremsstrahlung, Synchrotron

------------------------------------------------------------------------
%--------------------------------------------------------------------------
%   Copyright (c) 2011 Princeton Satellite Systems, Inc.
%   All Rights Reserved.
%   2021.2 Update order of inputs to Synchrotron
%--------------------------------------------------------------------------

l       = {'D-He3', 'D-T', 'p-B11'};
nI      = [1e20 1e20];
tE      = logspace(0,3);

pB(1,:) = Bremsstrahlung( nI, [1 2], tE);
pB(2,:) = Bremsstrahlung( nI, [1 1], tE);
pB(3,:) = Bremsstrahlung( nI, [1 5], tE);

Plot2D(tE, pB, 'T_E (keV)','Power (MW/m^3)','Bremsstrahlung','log')
legend(l,'location','northwest');

L  = 1;
rW = 0.9;
b   = 7;

% p = Synchrotron( nI, zI, b, tE, L, rW )
pS(1,:) = Synchrotron( nI, [1 2], b, tE, L, rW );
pS(2,:) = Synchrotron( nI, [1 1], b, tE, L, rW );
pS(3,:) = Synchrotron( nI, [1 5], b, tE, L, rW );

Plot2D(tE, pS, 'T_E (keV)','Power (MW/m^3)','Synchrotron','log')
legend(l,'location','northwest');


%--------------------------------------