cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

SuperMathcad

ValeryOchkov
24-Ruby IV

SuperMathcad

Fig. 1

a-sin_a.png

17 REPLIES 17

Fig. 2

sr.png

Only if one accepts that an angle *is* just the ratio of two lengths ... which hypothesis somewhat defies the observations of our eyes.

 

I prefer an alternative hypothesis in which the quantity angle is a base dimension within a system of units. This, to my eyes, makes more physical sense (how else does one capture the physical notion of rotation?).   The maths works out, ... it's just that most people won't like the 'New Units Maths' because it changes how they would do dimensional analysis.

 

Stuart

>Only if one accepts that an angle *is* just the ratio of two lengths 

Point please second!

radians. 

 

😈

 

Stuart

(seriously)

answer to VO.jpg

ChrisKaswer
15-Moonstone
(To:-MFra-)

Just like MFra, I find the same type of expected, error-free result ONLY when I use Mathcad 15...ah the good ol' days...😎

And yet, forgotten in years since Prime was a future prospect, is how some of us were looking forward to a 'clean sheet' Mathcad that would improve Mathcad by adding new features (eg, multi-dimensional arrays and full indexing support for nested arrays, extended control programmatic control over plot formatting, programmatic worksheet animation, greater programmatic access to objects, formatted strings (eg, get a string to evaluate to a (quote-symbol-less string, with full control over fonts, styles, etc (sort of a programmed Text Box), etc (I've got a list, a very long list ...)).

I think one thing that seems to have been lost is the desire to make Mathcad much better, not just live in hope that Prime will be as good as M15 one day. Ah well.

I do wish they'd left partial application in. It would have made working with Prime *so* much easier.

Could you please tell me what you mean by partial application in Mathcad? How is it missing in Prime?

 

Many thanks

StuartBruff
23-Emerald II
(To:mvenich)

Partial Application is where you can take a multi-argument function and construct a new function by assigning a value to one or more of the leading arguments but not all of them.  For example, in Mathcad 15 you could write

 

Define a two-parameter function power (same as exponentiation operator) power(x,y) := x^y
Define function Bin to raise 2 to the power of y by partially applying power to 2 Bin := power(2)
Evaluate Bin like any other 1-argument function Bin(8) = 256

 

Once you get used to how it looks, it's very useful for abbreviating function definitions, particularly so when, say, you have a 3+ argument function with the last two arguments being x & y or i & j and can then set the leading arguments when, say, using it into a 3D plot.

 

Another example to help make its utility clearer.  The built-in function matrix(m,n,f) takes two integers m & n and a two-argument function f(i,j).  matrix iterates over the matrix indices i = 0 .. m-1 and j = 0.. n-1, generating a matrix whose elements are f(i,j).

 

succ(m,i,j) := i + m*j

M(m,n) := matrix(m,n,succ(m))

 

M(3,3) should create a 3x3 matrix of column-wise successive integers. 

 

If you have programming, it could be done using a local function definition

 

M(m,n) := matrix(m,n,f(i,j)<-succ(m,i,j))

 

But I think the latter is less 'succ'inct and harder to read, particularly when there are long names or even expressions for the arguments, or multiple functions in a plot.

 

Unfortunately, Prime doesn't do it, nor, whilst I'm having a moan, does Prime allow local functions to be recursive; Mathcad 15 provided both these features.   

 

PTC deliberately removed partial application because it confused somebody when they left an argument out of a function <Sigh>. So we have a mathematical application removing a facility that every other programming language and their dogs are busy implementing ...

 

I think the lack of local recursion is just a specification / programming mistake. 

 

Regardless, I have a number of useful worksheets that are now broken. I could do a lot more with Prime (especially Express) if it had both. 

 

https://en.wikipedia.org/wiki/Partial_application

StuartBruff
23-Emerald II
(To:-MFra-)


@-MFra- wrote:

answer to VO.jpg

Why do you think there must be a constant?

 

Stuart 

-MFra-
21-Topaz II
(To:StuartBruff)

It is an example. In general, the individual terms of a polynomial (linear and non-linear), if they are dimensionless, everything is ok. But if one of them has units of measurement (for example the rad), then there must be homogeneity between the various terms (this is obvious). So if alpha is in radians and is added to something, this something must also be in radians (this too is obvious) and since sin (alpha) is dimensionless, it must necessarily be multiplied by a constant or a variable ( with the same dimension as alpha) which makes the term homogeneous with the others. Another example is the following relating to a differential equation:

answer to VO.jpg

StuartBruff
23-Emerald II
(To:-MFra-)


@-MFra- wrote:

It is an example. In general, the individual terms of a polynomial (linear and non-linear), if they are dimensionless, everything is ok. But if one of them has units of measurement (for example the rad), then there must be homogeneity between the various terms (this is obvious).

Agreed.

 


So if alpha is in radians and is added to something, this something must also be in radians (this too is obvious)

Also agreed.

 


and since sin (alpha) is dimensionless, 

But here's where we probably diverge.  Why do you think that sin(alpha) is dimensionless?

 

Stuart

 

 

Sorry,

What a (physical) meaning in this formula?

I didn't explain myself well!

that is a useful example to highlight the homogeneity of the units of measurement of the terms of an equation (in this case differential). This equation allows us to determine the effect of an electromagnetic field with pulsation omega0, in interaction with a particular medium. It polarizes a certain number of atoms or molecules creating electrical dipoles and therefore some dipole moments, it follows that the polarization of the same varies. The differential equation, therefore, allows us to determine the temporal trend of polarization. It must be associated with another differential equation relating to the concentrations of dipole moments.

pv-2.png

Sorry but the state equation of perfect gases is: PV = nRT. So it is not clear to me what you write.

Sorry the state equation of perfect gases is pV=T.

R is a coefficient between J/mole (a base unit of temperature) to K (one others unit of temperature).

Top Tags