packages feed

resistor-cube-0.0.1.2: resistor-cube.cabal

Name:                resistor-cube
Version:             0.0.1.2
Synopsis:            Compute total resistance of a cube of resistors
Description:
  This is an example of how to compute the total resistance
  of a non-trivial circuit of resistors.
  It demonstrates how to build the necessary matrix.
  We obtain the voltages and currents
  by solving simultaneous linear equations according to this matrix.
  .
  * For an explanation see <http://code.henning-thielemann.de/bob2019/main.pdf>.
  .
  * For a generalized version see the tests of the @linear-circuit@ package.
Homepage:            http://hub.darcs.net/thielema/resistor-cube
License:             BSD3
License-File:        LICENSE
Author:              Henning Thielemann
Maintainer:          haskell@henning-thielemann.de
Category:            Math
Build-Type:          Simple
Cabal-Version:       >=1.10

Source-Repository this
  Tag:         0.0.1.2
  Type:        darcs
  Location:    http://hub.darcs.net/thielema/resistor-cube

Source-Repository head
  Type:        darcs
  Location:    http://hub.darcs.net/thielema/resistor-cube

Executable resistor-cube
  Main-is:             Main.hs
  Build-Depends:
    lapack >=0.3.1 && <0.4,
    comfort-array >=0.4 && <0.5,
    base >=4.5 && <5
  Hs-Source-Dirs:      src
  Default-Language:    Haskell2010
  GHC-Options:         -Wall