I have a box and I want to apply a force in the direction that the bottom of the box is facing, given any Pitch, Roll, or Yaw rotation. At a resting point where pitch, roll, and yaw are 0, I know the downward force would be: x = 0, y = 0, z = -n, as the box is laying flat.
I also have the box's quaternion (qx, qy, qz, qw) available if that is helpful.
Here is a visual example showing my question:
How can I get this force using the objects rotation?


I expanded my search terms to finding a force direction from a quaternion and was able to find an excellent answer by a user named Dobbs:
Using the "forward vector" with a negative magnitude I was able to apply a constant force onto the top of my object, no matter the orientation.