learn-physics-0.6.2: Haskell code for learning physics

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

Physics.Learn.CarrotVec

Contents

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 #

A type for vectors.

Instances
Eq Vec # 
Instance details

Defined in Physics.Learn.CommonVec

Methods

(==) :: Vec -> Vec -> Bool #

(/=) :: Vec -> Vec -> Bool #

Show Vec # 
Instance details

Defined in Physics.Learn.CommonVec

Methods

showsPrec :: Int -> Vec -> ShowS #

show :: Vec -> String #

showList :: [Vec] -> ShowS #

VectorSpace Vec # 
Instance details

Defined in Physics.Learn.CarrotVec

Associated Types

type Scalar Vec :: * #

Methods

(*^) :: Scalar Vec -> Vec -> Vec #

InnerSpace Vec # 
Instance details

Defined in Physics.Learn.CarrotVec

Methods

(<.>) :: Vec -> Vec -> Scalar Vec #

AdditiveGroup Vec # 
Instance details

Defined in Physics.Learn.CarrotVec

Methods

zeroV :: Vec #

(^+^) :: Vec -> Vec -> Vec #

negateV :: Vec -> Vec #

(^-^) :: Vec -> Vec -> Vec #

StateSpace Vec # 
Instance details

Defined in Physics.Learn.StateSpace

Associated Types

type Diff Vec :: * #

Methods

(.-.) :: Vec -> Vec -> Diff Vec #

(.+^) :: Vec -> Diff Vec -> Vec #

type Scalar Vec # 
Instance details

Defined in Physics.Learn.CarrotVec

type Diff Vec # 
Instance details

Defined in Physics.Learn.StateSpace

type Diff Vec = Vec

xComp :: Vec -> Double #

x component

yComp :: Vec -> Double #

y component

zComp :: Vec -> Double #

z component

vec #

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 infixl 6 #

Add vectors

(^-^) :: AdditiveGroup v => v -> v -> v infixl 6 #

Group subtraction

(*^) :: VectorSpace v => Scalar v -> v -> v infixr 7 #

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 infixr 7 #

Inner/dot product

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

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 #

Unit vector in the x direction.

jHat :: Vec #

Unit vector in the y direction.

kHat :: Vec #

Unit vector in the z direction.

Orphan instances

VectorSpace Vec # 
Instance details

Associated Types

type Scalar Vec :: * #

Methods

(*^) :: Scalar Vec -> Vec -> Vec #

InnerSpace Vec # 
Instance details

Methods

(<.>) :: Vec -> Vec -> Scalar Vec #

AdditiveGroup Vec # 
Instance details

Methods

zeroV :: Vec #

(^+^) :: Vec -> Vec -> Vec #

negateV :: Vec -> Vec #

(^-^) :: Vec -> Vec -> Vec #