learn-physics-0.6.0.0: Haskell code for learning physics

Copyright(c) Scott N. Walck 2011-2014
LicenseBSD3 (see LICENSE)
MaintainerScott N. Walck <walck@lvc.edu>
Stabilityexperimental
Safe HaskellTrustworthy
LanguageHaskell98

Physics.Learn.CarrotVec

Description

This module defines some basic vector functionality. It uses the same internal data representation as SimpleVec, but declares Vec to be an instance of VectorSpace. We import zeroV, negateV, sumV, ^+^, ^-^ from AdditiveGroup, and *^, ^*, ^/, <.>, magnitude from VectorSpace.

CarrotVec exports exactly the same symbols as SimpleVec; they are just defined differently.

Synopsis

Documentation

data Vec Source

A type for vectors.

xComp :: Vec -> Double Source

x component

yComp :: Vec -> Double Source

y component

zComp :: Vec -> Double Source

z component

vec Source

Arguments

:: Double

x component

-> Double

y component

-> Double

z component

-> Vec 

Form a vector by giving its x, y, and z components.

(^+^) :: AdditiveGroup v => v -> v -> v

Add vectors

(^-^) :: AdditiveGroup v => v -> v -> v

Group subtraction

(*^) :: VectorSpace v => Scalar v -> v -> v

Scale a vector

(^*) :: (VectorSpace v, (~) * s (Scalar v)) => v -> s -> v infixl 7

Vector multiplied by scalar

(^/) :: (VectorSpace v, (~) * s (Scalar v), Fractional s) => v -> s -> v infixr 7

Vector divided by scalar

(<.>) :: InnerSpace v => v -> v -> Scalar v

Inner/dot product

(><) :: Vec -> Vec -> Vec infixl 7 Source

Cross product.

magnitude :: (InnerSpace v, (~) * s (Scalar v), Floating s) => v -> s

Length of a vector. See also magnitudeSq.

zeroV :: AdditiveGroup v => v

The zero element: identity for '(^+^)'

negateV :: AdditiveGroup v => v -> v

Additive inverse

sumV :: (Foldable f, AdditiveGroup v) => f v -> v

Sum over several vectors

iHat :: Vec Source

Unit vector in the x direction.

jHat :: Vec Source

Unit vector in the y direction.

kHat :: Vec Source

Unit vector in the z direction.