% ============================================================================
% GetDragCoeff.m
% Author: Brent Dingle, Ph.D.
% Creation Date: 2020
%
% ============================================================================
function dragcoeff = GetDragCoeff(t, h)
  % currently assume constant, initial tests won't go that high
  dragcoeff = 0.6;        % Nm^2 / s^2
endfunction