answersLogoWhite

0

That's difficult as because Nm is the unit of torque and Psi is the unit of pressure. The conversion to Nm to Lbft is as below Nm x 8.85 x 1/12 = ______ Lb.ft Cheers, Ashish

User Avatar

Wiki User

17y ago

What else can I help you with?

Continue Learning about Educational Theory

How do I convert volume of a cylinder from square inches to liters?

To convert the volume of a cylinder from square inches to liters, you first need to calculate the volume in cubic inches using the formula V = πr^2h. Then, convert cubic inches to cubic centimeters by multiplying by 16.387. Finally, convert cubic centimeters to liters by dividing by 1000.


How do i convert 12 inches into kilograms?

This is impossible. You cannot convert kilograms into inches or inches into kilograms. Kilograms are a measurement of mass. Inches a measurement of length.


How do you convert cgpa as uptu rule?

To convert CGPA (Cumulative Grade Point Average) to percentage as per UPTU (Uttar Pradesh Technical University) rules, you can multiply the CGPA by 10 to get the approximate percentage. For example, if your CGPA is 8.5, the equivalent percentage would be 85%.


Convert gallons of water to pounds?

To convert gallons of water to pounds, you can use the conversion factor of 1 gallon of water = 8.34 pounds. So, if you have 10 gallons of water, it would weigh 83.4 pounds (10 gallons x 8.34 pounds/gallon).


What is implicit and explicit data type conversion in C programming?

explicit type conversion is done by compile automatically for example: int x; float y=10.4545 // to convert the value of float into int type we use x=y; //automatic conversion while if we force to convert one data type to another then it is called implicit for example: int x; float y=10.4545 // to convert the value of float into int type we use x= (int)y; //forced conversion