Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install sempy

How to install sempy

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install sempy
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.0.17
0.0.18 Failed View build log
0.0.17 Available View build log
0.0.14 Available View build log
0.0.12 Available View build log
0.0.10 Available View build log
0.0.9 Available View build log
0.0 Available View build log
Windows (64-bit)
0.0.17
0.0.18 Failed View build log
0.0.17 Available View build log
0.0.14 Available View build log
0.0.12 Available View build log
0.0.10 Available View build log
0.0.9 Available View build log
0.0 Available View build log
Mac OS X (10.5+)
0.0.18 Available View build log
0.0.17 Available View build log
0.0.14 Available View build log
0.0.12 Available View build log
0.0.10 Available View build log
0.0.9 Available View build log
0.0.2 Available View build log
0.0 Available View build log
Linux (32-bit)
0.0.18 Available View build log
0.0.17 Available View build log
0.0.14 Available View build log
0.0.12 Available View build log
0.0.10 Available View build log
0.0.9 Available View build log
0.0.2 Available View build log
0.0 Available View build log
Linux (64-bit)
0.0.18 Available View build log
0.0.17 Available View build log
0.0.14 Available View build log
0.0.12 Available View build log
0.0.10 Available View build log
0.0.9 Available View build log
0.0.2 Available View build log
0.0 Available View build log
 
Author
License
GPL
Lastest release
version 0.0.18 on Mar 3rd, 2011

Note: This software is in a pre-alpha state.

The main documentation for this package is located at www.sempy.org , but this page offers a minimal set of information to get started using Sempy.

About

Sempy is a numerical software package designed to solve partial differential equations arising from the analysis of fluid flow and heat transfer. It is written in Python and carries the intuitive syntax of this language. Furthermore, computational meshes can be imported from the Gmsh mesh generator, making Sempy flexible towards handling complex geometries.

Getting started

The quickest way to get started using the Sempy package is to install it with easy_install This can be achieved by e.g. typing:

$ easy_install sempy

on the command line. This requires an internet connection to work. Another possibility is to download the latest version as a zip or tar.gz file and then install it with:

$ python setup.py install

It might be necessary to use super user privileges on the above commands. For instance:

$ sudo easy_install sempy

Aslo, it might be necessary to run:

$ sudo easy_install --upgrade sempy

on a regular basis to obtain updated versions.

An example script

Solve the Poisson problem with a simple script:

import sempy

X = sempy.Space( filename = 'square', n = 4, dim = 2 )
A = sempy.operators.Laplacian( X ).matrix

f = sempy.Function( X, basis_coeff = 1.0 )
b = sempy.operators.Mass( X ).action_local( f.basis_coeff )
u = sempy.Function( X, basis_coeff = 0.0 )

[v, flag] = sempy.linsolvers.Krylov().solve( A, b, u.glob() )
u.basis_coeff = X.mapping_q( v )
u.plot()

Subscribe to package updates

Last updated Mar 3rd, 2011

Download Stats

Last month:2

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.