Cryocooler analysis at 4 K

%--------------------------------------------------------------------------
%	Copyright (c) 2018 Princeton Satellite Systems, Inc.
% All rights reserved.
%--------------------------------------------------------------------------

Tc = 4; % K
qC = logspace(-1,1); % lift power, W
[mass,eta,cOP] = CryocoolerBrake( qC, Tc ); % more types of coolers
Pin = qC./cOP;

Plot2D(qC,[Pin;mass],'Lift Power (W)',{'Input Power (W)','Mass (kg)'},...
  'ter Brake Model at 4 K','log')


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