Earth

C - is the center of mass of the Earth and the Moon system.
A - is a point on the surface of the Earth.
O - is the center of the Earth.

CALCULATION RESULTS:
thetaalphagmacxacytotal g
000.00003210.00007820.00000009.8066039
30170.00003220.00007220.00002269.8066041
60350.00003260.00005560.00003919.8066046
90540.00003320.00003310.00004519.8066049
120750.00003370.00001050.00003919.8066045
1501050.0000341-0.00000600.00002269.8066039
1801800.0000343-0.00001210.00000009.8066036

acx - x component of centrifugal acceleration due to Earth-Moon revolution.
gm - gravitational acceleration due to the Moon.
total g - total g sensed at the location A.

double G = 6.67408e-11; // m3/kg/s2
double mm = 7.342e22; // kg
double d = 3.844e8; // m
double R = 6.371e6; // m

double d2 = 4.67e6; // distance between C and O; unit: m
double omega = 2.66e-6; // 1/s
double rx = d2 + R * cos( theta );
double ry = R * sin( theta );
double alpha_radian = atan2( ry, rx );
double rr = sqrt( rx * rx + ry * ry );
double gc = rr * omega * omega;
double acx = gc * cos( alpha );

dm = d + R * cos( theta )
gm = G * mm / ( dm * dm )

Tidal Bulge by Cal Tech / NASA