Post Reply 
Units
05-07-2018, 08:13 PM (This post was last modified: 05-07-2018 08:15 PM by DrD.)
Post: #2
RE: Units
Aside from the user guide, maybe something in this quick program will be useful?

Code:

// Provide a real number value for square meters (without units)

EXPORT units
BEGIN
  LOCAL sqmtrs;
  INPUT(sqmtrs);
  sqmtrs:=sqmtrs * 1_m^2;  
  RETURN CONVERT(sqmtrs / 1_min, 1_ft^2 / 1_s);
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Units - Gene222 - 05-07-2018, 06:43 PM
RE: Units - DrD - 05-07-2018 08:13 PM
RE: Units - Gene222 - 05-07-2018, 08:35 PM
RE: Units - Carsen - 05-07-2018, 09:13 PM



User(s) browsing this thread: 1 Guest(s)