Below are the lift and drag functions I used for the CST-100 capsule. The figures are small indeed, but not zero.
void VLiftCoeff(double aoa, double M, double Re, double *cl, double *cm, double *cd)
{
static const double step = RAD*30.0;
static const double istep = 1.0 / step...