1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- S Y S T E M . D I M . M K S --
9 -- Copyright (C) 2011-2013, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- Defines the MKS dimension system which is the SI system of units
34 -- Some other prefixes of this system are defined in a child package (see
35 -- System.Dim_Mks.Other_Prefixes) in order to avoid too many constant
36 -- declarations in this package.
38 -- The dimension terminology is defined in System.Dim_IO package
42 package System
.Dim
.Mks
is
44 e
: constant := Ada
.Numerics
.e
;
45 Pi
: constant := Ada
.Numerics
.Pi
;
47 -- Dimensioned type Mks_Type
49 type Mks_Type
is new Long_Long_Float
52 (Unit_Name
=> Meter
, Unit_Symbol
=> 'm', Dim_Symbol
=> 'L'),
53 (Unit_Name
=> Kilogram
, Unit_Symbol
=> "kg", Dim_Symbol
=> 'M'),
54 (Unit_Name
=> Second
, Unit_Symbol
=> 's', Dim_Symbol
=> 'T'),
55 (Unit_Name
=> Ampere
, Unit_Symbol
=> 'A', Dim_Symbol
=> 'I'),
56 (Unit_Name
=> Kelvin
, Unit_Symbol
=> 'K', Dim_Symbol
=> '@'),
57 (Unit_Name
=> Mole
, Unit_Symbol
=> "mol", Dim_Symbol
=> 'N'),
58 (Unit_Name
=> Candela
, Unit_Symbol
=> "cd", Dim_Symbol
=> 'J'));
60 -- SI Base dimensioned subtypes
62 subtype Length
is Mks_Type
64 Dimension
=> (Symbol
=> 'm',
68 subtype Mass
is Mks_Type
70 Dimension
=> (Symbol
=> "kg",
74 subtype Time
is Mks_Type
76 Dimension
=> (Symbol
=> 's',
80 subtype Electric_Current
is Mks_Type
82 Dimension
=> (Symbol
=> 'A',
86 subtype Thermodynamic_Temperature
is Mks_Type
88 Dimension
=> (Symbol
=> 'K',
92 subtype Amount_Of_Substance
is Mks_Type
94 Dimension
=> (Symbol
=> "mol",
98 subtype Luminous_Intensity
is Mks_Type
100 Dimension
=> (Symbol
=> "cd",
104 -- Initialize SI Base unit values
106 -- Turn off the all the dimension warnings for these basic assignments
107 -- since otherwise we would get complaints about assigning dimensionless
108 -- values to dimensioned subtypes (we can't assign 1.0*m to m).
110 pragma Warnings
(Off
, "*assumed to be*");
112 m
: constant Length
:= 1.0;
113 kg
: constant Mass
:= 1.0;
114 s
: constant Time
:= 1.0;
115 A
: constant Electric_Current
:= 1.0;
116 K
: constant Thermodynamic_Temperature
:= 1.0;
117 mol
: constant Amount_Of_Substance
:= 1.0;
118 cd
: constant Luminous_Intensity
:= 1.0;
120 pragma Warnings
(On
, "*assumed to be*");
122 -- SI Derived dimensioned subtypes
124 subtype Absorbed_Dose
is Mks_Type
126 Dimension
=> (Symbol
=> "Gy",
131 subtype Angle
is Mks_Type
133 Dimension
=> (Symbol
=> "rad",
136 subtype Area
is Mks_Type
142 subtype Catalytic_Activity
is Mks_Type
144 Dimension
=> (Symbol
=> "kat",
149 subtype Celsius_Temperature
is Mks_Type
151 Dimension
=> (Symbol
=> "°C",
155 subtype Electric_Capacitance
is Mks_Type
157 Dimension
=> (Symbol
=> 'F',
164 subtype Electric_Charge
is Mks_Type
166 Dimension
=> (Symbol
=> 'C',
171 subtype Electric_Conductance
is Mks_Type
173 Dimension
=> (Symbol
=> 'S',
180 subtype Electric_Potential_Difference
is Mks_Type
182 Dimension
=> (Symbol
=> 'V',
189 subtype Electric_Resistance
is Mks_Type
191 Dimension
=> (Symbol
=> "Ω",
198 subtype Energy
is Mks_Type
200 Dimension
=> (Symbol
=> 'J',
206 subtype Equivalent_Dose
is Mks_Type
208 Dimension
=> (Symbol
=> "Sv",
213 subtype Force
is Mks_Type
215 Dimension
=> (Symbol
=> 'N',
221 subtype Frequency
is Mks_Type
223 Dimension
=> (Symbol
=> "Hz",
227 subtype Illuminance
is Mks_Type
229 Dimension
=> (Symbol
=> "lx",
234 subtype Inductance
is Mks_Type
236 Dimension
=> (Symbol
=> 'H',
243 subtype Luminous_Flux
is Mks_Type
245 Dimension
=> (Symbol
=> "lm",
249 subtype Magnetic_Flux
is Mks_Type
251 Dimension
=> (Symbol
=> "Wb",
258 subtype Magnetic_Flux_Density
is Mks_Type
260 Dimension
=> (Symbol
=> 'T',
266 subtype Power
is Mks_Type
268 Dimension
=> (Symbol
=> 'W',
274 subtype Pressure
is Mks_Type
276 Dimension
=> (Symbol
=> "Pa",
282 subtype Radioactivity
is Mks_Type
284 Dimension
=> (Symbol
=> "Bq",
288 subtype Solid_Angle
is Mks_Type
290 Dimension
=> (Symbol
=> "sr",
293 subtype Speed
is Mks_Type
300 subtype Volume
is Mks_Type
306 -- Initialize derived dimension values
308 -- Turn off the all the dimension warnings for these basic assignments
309 -- since otherwise we would get complaints about assigning dimensionless
310 -- values to dimensioned subtypes.
312 pragma Warnings
(Off
, "*assumed to be*");
314 rad
: constant Angle
:= 1.0;
315 sr
: constant Solid_Angle
:= 1.0;
316 Hz
: constant Frequency
:= 1.0;
317 N
: constant Force
:= 1.0;
318 Pa
: constant Pressure
:= 1.0;
319 J
: constant Energy
:= 1.0;
320 W
: constant Power
:= 1.0;
321 C
: constant Electric_Charge
:= 1.0;
322 V
: constant Electric_Potential_Difference
:= 1.0;
323 F
: constant Electric_Capacitance
:= 1.0;
324 Ohm
: constant Electric_Resistance
:= 1.0;
325 Si
: constant Electric_Conductance
:= 1.0;
326 Wb
: constant Magnetic_Flux
:= 1.0;
327 T
: constant Magnetic_Flux_Density
:= 1.0;
328 H
: constant Inductance
:= 1.0;
329 dC
: constant Celsius_Temperature
:= 273.15;
330 lm
: constant Luminous_Flux
:= 1.0;
331 lx
: constant Illuminance
:= 1.0;
332 Bq
: constant Radioactivity
:= 1.0;
333 Gy
: constant Absorbed_Dose
:= 1.0;
334 Sv
: constant Equivalent_Dose
:= 1.0;
335 kat
: constant Catalytic_Activity
:= 1.0;
337 -- SI prefixes for Meter
339 um
: constant Length
:= 1.0E-06; -- micro (u)
340 mm
: constant Length
:= 1.0E-03; -- milli
341 cm
: constant Length
:= 1.0E-02; -- centi
342 dm
: constant Length
:= 1.0E-01; -- deci
343 dam
: constant Length
:= 1.0E+01; -- deka
344 hm
: constant Length
:= 1.0E+02; -- hecto
345 km
: constant Length
:= 1.0E+03; -- kilo
346 Mem
: constant Length
:= 1.0E+06; -- mega
348 -- SI prefixes for Kilogram
350 ug
: constant Mass
:= 1.0E-09; -- micro (u)
351 mg
: constant Mass
:= 1.0E-06; -- milli
352 cg
: constant Mass
:= 1.0E-05; -- centi
353 dg
: constant Mass
:= 1.0E-04; -- deci
354 g
: constant Mass
:= 1.0E-03; -- gram
355 dag
: constant Mass
:= 1.0E-02; -- deka
356 hg
: constant Mass
:= 1.0E-01; -- hecto
357 Meg
: constant Mass
:= 1.0E+03; -- mega
359 -- SI prefixes for Second
361 us
: constant Time
:= 1.0E-06; -- micro (u)
362 ms
: constant Time
:= 1.0E-03; -- milli
363 cs
: constant Time
:= 1.0E-02; -- centi
364 ds
: constant Time
:= 1.0E-01; -- deci
365 das
: constant Time
:= 1.0E+01; -- deka
366 hs
: constant Time
:= 1.0E+02; -- hecto
367 ks
: constant Time
:= 1.0E+03; -- kilo
368 Mes
: constant Time
:= 1.0E+06; -- mega
370 -- Other constants for Second
372 min
: constant Time
:= 60.0 * s
;
373 hour
: constant Time
:= 60.0 * min
;
374 day
: constant Time
:= 24.0 * hour
;
375 year
: constant Time
:= 365.25 * day
;
377 -- SI prefixes for Ampere
379 mA
: constant Electric_Current
:= 1.0E-03; -- milli
380 cA
: constant Electric_Current
:= 1.0E-02; -- centi
381 dA
: constant Electric_Current
:= 1.0E-01; -- deci
382 daA
: constant Electric_Current
:= 1.0E+01; -- deka
383 hA
: constant Electric_Current
:= 1.0E+02; -- hecto
384 kA
: constant Electric_Current
:= 1.0E+03; -- kilo
385 MeA
: constant Electric_Current
:= 1.0E+06; -- mega
387 pragma Warnings
(On
, "*assumed to be*");