dimensional-tf 0.2.1 → 0.3
raw patch · 3 files changed
+39/−9 lines, 3 files
Files
- Numeric/Units/Dimensional/TF/Quantities.lhs +9/−5
- changelog.md +25/−0
- dimensional-tf.cabal +5/−4
Numeric/Units/Dimensional/TF/Quantities.lhs view
@@ -314,15 +314,19 @@ > type DAngularMomentum = Dim Pos2 Pos1 Neg1 Zero Zero Zero Zero > type AngularMomentum = Quantity DAngularMomentum -For these we don't bother defining new type synonyms for dimensionalities.-Is this rational?+> type Angle = PlaneAngle -- Abbreviation+> type DAngle = DPlaneAngle -- Abbreviation -> type Angle = PlaneAngle -- Abbreviation-> type Thrust = Force+> type Thrust = Force+> type DThrust = DForce++> type Torque = MomentOfForce+> type DTorque = DMomentOfForce+ > type EnergyPerUnitMass = SpecificEnergy+> type DEnergyPerUnitMass = DSpecificEnergy = References = [1] http://physics.nist.gov/Pubs/SP811/-
+ changelog.md view
@@ -0,0 +1,25 @@+0.3 (2014-02)+-------------+Brought inline with dimensional-0.13.++* Added `Torque`.+* Added D.. for the type synonym quantities (e.g., `Angle`).+++0.2 (2013-07)+-------------+++0.1.1 (2012-02)+---------------+++0.1.0.1 (2012-02)+-----------------+++0.1 (2012-02)+-------------+See the [announcement][1].++[1]: http://flygdynamikern.blogspot.se/2012/02/announce-dimensional-tf-010-statically.html
dimensional-tf.cabal view
@@ -1,10 +1,10 @@ Name: dimensional-tf-Version: 0.2.1+Version: 0.3 License: BSD3 License-File: LICENSE-Copyright: Bjorn Buckwalter 2006-2013+Copyright: Bjorn Buckwalter 2006-2014 Author: Bjorn Buckwalter-Maintainer: bjorn.buckwalter@gmail.com+Maintainer: bjorn@buckwalter.se Stability: experimental Homepage: http://dimensional.googlecode.com/ Synopsis: Statically checked physical dimensions, implemented@@ -33,7 +33,8 @@ Numeric.Units.Dimensional.TF.SIUnits, Numeric.Units.Dimensional.TF.NonSI Extra-source-files: README,- Test.hs+ changelog.md,+ Test.hs, Numeric/Units/Dimensional/TF/Test.hs, Numeric/Units/Dimensional/TF/QuantitiesTest.hs, examples/README,