From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.68.134.233 with SMTP id pn9mr16537804pbb.5.1391534765952; Tue, 04 Feb 2014 09:26:05 -0800 (PST) X-Received: by 10.182.29.2 with SMTP id f2mr300142obh.2.1391534765661; Tue, 04 Feb 2014 09:26:05 -0800 (PST) Path: border1.nntp.dca.giganews.com!nntp.giganews.com!c10no10046255igq.0!news-out.google.com!vg8ni12igb.0!nntp.google.com!uq10no9344513igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 4 Feb 2014 09:26:05 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=149.32.224.34; posting-account=Qh2kiQoAAADpCLlhT_KTYoGO8dU3n4I6 NNTP-Posting-Host: 149.32.224.34 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Kilogram constant defined in package System.Dim.Other_Prefixes (s-dmotpr.ads) From: Anh Vo Injection-Date: Tue, 04 Feb 2014 17:26:05 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: number.nntp.dca.giganews.com comp.lang.ada:184656 Date: 2014-02-04T09:26:05-08:00 List-Id: The Kilogram constants defined in package System.Dim.Other_Prefixes (s-dmot= pr.ads) look different compared to others such as Meter, Second,... In addi= tion, the values do not match with names in the comments on the right side.= I would like to know why. By the way, the Meter, Kilogram and Second const= ant are repeated here for easy discussion. -- SI prefixes for Meter pragma Warnings (Off); -- Turn off the all the dimension warnings ym : constant Length :=3D 1.0E-24; -- yocto zm : constant Length :=3D 1.0E-21; -- zepto am : constant Length :=3D 1.0E-18; -- atto fm : constant Length :=3D 1.0E-15; -- femto pm : constant Length :=3D 1.0E-12; -- pico nm : constant Length :=3D 1.0E-09; -- nano Gm : constant Length :=3D 1.0E+09; -- giga Tm : constant Length :=3D 1.0E+12; -- tera Pem : constant Length :=3D 1.0E+15; -- peta Em : constant Length :=3D 1.0E+18; -- exa Zem : constant Length :=3D 1.0E+21; -- zetta Yom : constant Length :=3D 1.0E+24; -- yotta -- SI prefixes for Kilogram yg : constant Mass :=3D 1.0E-27; -- yocto zg : constant Mass :=3D 1.0E-24; -- zepto ag : constant Mass :=3D 1.0E-21; -- atto fg : constant Mass :=3D 1.0E-18; -- femto pg : constant Mass :=3D 1.0E-15; -- pico ng : constant Mass :=3D 1.0E-12; -- nano Gg : constant Mass :=3D 1.0E+06; -- giga Tg : constant Mass :=3D 1.0E+09; -- tera Peg : constant Mass :=3D 1.0E+13; -- peta Eg : constant Mass :=3D 1.0E+15; -- exa Zeg : constant Mass :=3D 1.0E+18; -- zetta Yog : constant Mass :=3D 1.0E+21; -- yotta -- SI prefixes for Second ys : constant Time :=3D 1.0E-24; -- yocto zs : constant Time :=3D 1.0E-21; -- zepto as : constant Time :=3D 1.0E-18; -- atto fs : constant Time :=3D 1.0E-15; -- femto ps : constant Time :=3D 1.0E-12; -- pico ns : constant Time :=3D 1.0E-09; -- nano Gs : constant Time :=3D 1.0E+09; -- giga Ts : constant Time :=3D 1.0E+12; -- tera Pes : constant Time :=3D 1.0E+15; -- peta Es : constant Time :=3D 1.0E+18; -- exa Zes : constant Time :=3D 1.0E+21; -- zetta Yos : constant Time :=3D 1.0E+24; -- yotta =20 --...