Skip to main content
1-Visitor
August 25, 2016
Solved

I want to find torque from standard power formula without changing equation to t=p*30/(pi.n)

  • August 25, 2016
  • 5 replies
  • 26354 views

I want to find torque from standard power forumla p=2piNT/60

i tried like

p=10kw

n=50 rpm

how to find T

Without making equation relating torque like

T=p*60/(2piN)

Best answer by Werner_E

Maybe it should be that way:

And next time please attach your sheet (additionally to your screenshots).

Werner

5 replies

21-Topaz II
August 25, 2016

Ptauomega.png

spatil-101-VisitorAuthor
1-Visitor
August 25, 2016

i am new what is the operator or sign used F.M.

21-Topaz II
August 25, 2016

See the following responses below

25-Diamond I
August 25, 2016

If you need the calculation more often with different arguments, you might consider creating a function for torque

In case the formula is more complicated and cannot be solved symbolically anymore, you will have to resort to a numerical solve block:

and of course you could turn this solve block in a function, too, if you like. You would simply write torque(P, omega):=Find(tau).

As you could see - when you define a variable with unit rpm, you already define omega = n* 2pi, not just n. And there is no need to manually convert minutes to seconds as Mathcad takes care of the correct units anyway.

After all, the suggested methods all seem overkill, as it would be to easy to simply do

but I guess you have more complicated formulas in mind which cannot solve for a variable that easy.

Werner

BTW, using the symbolical keyword "float" is dangerous and usually not recommended as it affects not only the display of the result but also the precision of the whole calculation. So you might lose significant precision!

spatil-101-VisitorAuthor
1-Visitor
August 25, 2016

Also suppose i want to shuffle the variable required, i.e. standard formula is P=w*T.

1. Torque for Shaft 1 (T1)

2. Power transmitted using (T1).

spatil-101-VisitorAuthor
1-Visitor
August 25, 2016

Capture.JPG

It is not working in Express Prime 3.1

21-Topaz II
August 25, 2016

Ptw.jpg

23-Emerald I
August 31, 2016

Straight up!

spatil-101-VisitorAuthor
1-Visitor
September 2, 2016

Now can tell how to find the unknown variable Drr..it get complicated to go simplify...

Capture.JPG

or

Capture.JPG

25-Diamond I
September 2, 2016

Your first example just returns the guess value because there is no constraint, just a function definition.

Your second example looks like it should work. We don't see what the error message is and can't play around with it as you didn't attach your sheet.

It looks like your formula for f is wrong, as your first summand is of dimension length^3 but the second is length^-3 !!

Werner_E25-Diamond IAnswer
25-Diamond I
September 2, 2016

Maybe it should be that way:

And next time please attach your sheet (additionally to your screenshots).

Werner