Parameter unit errors

Parameter unit errors

a2059514
Explorer Explorer
2,365 Views
2 Replies
Message 1 of 3

Parameter unit errors

a2059514
Explorer
Explorer

I have 2 parameters:

  • T1 = 60 ul
  • Dp1 = 250 mm

I'm trying to calculate another parameter (in mm) called Pd. This parameter is calculated T1 / Dp1. I've been trying to modify (in the equation) the types of variables so that it doesn't have an error. Whats the correct way of writing T1 / Dp1 with units so that my parameter PD (mm) doesn't end with an error.

0 Likes
Accepted solutions (1)
2,366 Views
2 Replies
Replies (2)
Message 2 of 3

johnsonshiue
Community Manager
Community Manager
Accepted solution

Hi! There are multiple ways to do that. The key is to make sure the units are the same on both side of the equal sign.

 

Option 1: ( T1 * 1 mm / Dp1 ) * 1 mm
Option 2: T1 / ( Dp1 / 1 mm ) * 1 mm

 

Many thanks!



Johnson Shiue ([email protected])
Software Test Engineer
0 Likes
Message 3 of 3

a2059514
Explorer
Explorer
Thanks!