Why are the symbolic units not evaluated by a square root?

11 Ansichten (letzte 30 Tage)
Lucas Clark
Lucas Clark am 12 Jan. 2020
Kommentiert: Paul am 15 Mär. 2024
clear, clc
u = symunit;
d = .025*u.m; %Automatically convert to meters
l = .6*u.m;
A = pi*d^2/4;
g = 9.81*u.m/u.s^2;
E = 207e9*u.Pa;
I = pi*d^4/64;
lambda = 76.5e3*u.N/u.m^3;
omega_n = vpa((pi/l)^2*(g*E*I/(A*lambda))^(1/2),4)
When I plug this in, the units stay the same inside the square root.
Why aren't they evaluated?

Akzeptierte Antwort

Star Strider
Star Strider am 12 Jan. 2020
It appears that the square root is still expressed as a square root, so the units remain the same within it:
omega_n =
27.42*(1037.0*(([Pa]*[m]^6)/([N]*[s]^2)))^(1/2)*(1/[m]^2)
Doing this:
[omega_n,omega_n_u] = separateUnits(omega_n)
produces this:
omega_n =
882.80792016869907152094706300452
omega_n_u =
1*((1/[N]^(1/2)*[Pa]^(1/2)*[m])/[s])
So the units convert correctly. It is necessary to specifically request the conversion.
  3 Kommentare
Lucas Clark
Lucas Clark am 12 Jan. 2020
So, I tried a few other things.
When I broke down the units of E from:
E = 207e9*u.Pa;
to
E = 207e9*u.N/u.m^2;
Then everything simplified very easily and I ended up with a value of 1/seconds.
I'm not sure what this means. Let me know if you understand why it didn't work the first time.
Thank you.
Star Strider
Star Strider am 12 Jan. 2020
My pleasure.
The reason it did not work the first time is that the units will not convert until you request that they be converted. This likely makes things easier for the Symbolic Math Toolbos, so that it does not have to convert and then re-convert interim results, converting them only when requested at the end.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

David Goodmanson
David Goodmanson am 13 Jan. 2020
Bearbeitet: David Goodmanson am 13 Jan. 2020
Hi Lucas,
try your original code but with the last two lines
omega_n = (pi/l)^2*(g*E*I/(A*lambda))^(1/2)
omega_n = vpa(simplify(omega_n),4)
omega_n = 882.8*(1/[s])
Then you don't have to do any conversions yourself, e.g Pa to SI.
  3 Kommentare
Breyonna
Breyonna am 14 Mär. 2024
I am hoping that there is a better way. I'm off to video tutorials.
Paul
Paul am 15 Mär. 2024
Maybe I'm missing something, but I don't unerstand what the issue is. One extra call to simplify seems to solve the problem. What is the downside of that?
u = symunit;
d = .025*u.m; %Automatically convert to meters
l = .6*u.m;
A = pi*d^2/4;
g = 9.81*u.m/u.s^2;
E = 207e9*u.Pa;
I = pi*d^4/64;
lambda = 76.5e3*u.N/u.m^3;
omega_n = vpa((pi/l)^2*(g*E*I/(A*lambda))^(1/2),4)
omega_n = 
omega_n = simplify(omega_n)
omega_n = 

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by