• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bin/H01-Jul-2016-9116

eg/H01-Jul-2016-284146

lib/Physics/H01-Jul-2016-2,8941,454

t/H01-Jul-2016-323211

Build.PLH A D01-Jul-20161.3 KiB6250

ChangesH A D01-Jul-20164.6 KiB11097

MANIFESTH A D01-Jul-2016478 2322

META.jsonH A D01-Jul-20161.6 KiB6766

META.ymlH A D01-Jul-20161 KiB3837

READMEH A D01-Jul-20161.6 KiB6543

README

1Physics/Unit version 0.54
2=========================
3
4This tarball includes the following modules
5  Physics::Unit
6  Physics::Unit::Scalar
7  Physics::Unit::Scalar::Implementation - pod docs
8  Physics::Unit::Script
9  Physics::Unit::Script::GenPages
10  Physics::Unit::Implementation - pod docs
11
12Objects of class Physics::Unit define units of measurement that correspond
13to physical quantities.  This module allows you to manipulate these units,
14generate new derived units from other units, and convert from one unit
15to another.  Each unit is defined by a conversion factor and a
16dimensionality vector.
17
18Objects of type Physics::Unit::Scalar store physical quantities.  Each
19instance of a class that derives from Physics::Unit::Scalar holds the value
20of some type of measurable quantity.  When you use this module, several new
21classes are immediately available.  See the Derived Classes section of the
22documentation for a complete list
23
24The module Physics::Unit::ScalarSubtypes defines several classes that
25derive from Physics::Unit::Scalar, each corresponding to a different
26physical quantity.
27
28
29SEE ALSO
30
31The perldoc documentation for each of the above modules for more
32information.
33
34Example scripts in the eg/ directory.
35
36
37INSTALLATION
38
39To install this module, on Unix, use the following:
40
41  perl Build.PL
42  ./Build
43  ./Build test
44  ./Build install
45
46On Windows, from a command window:
47
48  perl Build.PL
49  Build
50  Build test
51  Build install
52
53DEPENDENCIES
54
55This module is pure Perl, and the depends only on Carp.
56
57
58COPYRIGHT AND LICENCE
59
60Copyright (C) 2003 Chris Maloney
61
62This library is free software; you can redistribute it and/or modify
63it under the same terms as Perl itself.
64
65