Can pow_pos handle negative numbers?

There is a variable noted ‘qm’ .qm^3 can be defined as Pow_pos(qm,3) in cvx, but when qm<0,the result of pow_pos(qm,3) is zero. How can i do?

then qm^3 will be not convex but concave. Try using -pow_pos(-qm,3).