Question: Integration with Units()

Hi,

How do I integrate with Units[Standard]?

For example:


 

restart

with(Units[Standard]):

I__RMS__T := int((18*Unit('A')+9*t*Unit('s')*Unit('A')/(.9*Unit('s')))^2, t = 0.1e-1*Unit('s') .. 10*Unit('s'))

Error, (in Units:-Standard:-+) the units `1` and `s` have incompatible dimensions

 

I__RMS__T := int((18*Unit('A')+9*t*Unit('A')/(.9*Unit('s')))^2, t = 0.1e-1*Unit('s') .. 10*Unit('s'))

Error, (in Units:-Standard:-+) the units `A` and `A/s` have incompatible dimensions

 

 

 

It doesn't seem like I can around this. Is there a way to ignore the units error and just calculate the value?
 

Download test.mw

Please Wait...