~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to site-packages/dolfin/__init__.py

  • Committer: Anders Logg
  • Date: 2008-03-19 20:36:02 UTC
  • Revision ID: logg@simula.no-20080319203602-rwextpc97j2a8uor
Add simple computation of norms of functions in Python.
Example usage includes:

  norm(v, mesh)
  norm(u0 - u1, mesh)
  norm(v, mesh, 'Hdiv')

If the type is not specified, the standard L_2 norm is
computed. Possible norm types include:

  L_2:     norm(v, mesh, 'L2')
  H^1:     norm(v, mesh, 'H1')
  H^1_0:   norm(v, mesh, 'H10')
  H(div):  norm(v, mesh, 'Hdiv')
  H(curl): norm(v, mesh, 'Hcurl')

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
from constants import *
4
4
from assemble import *
 
5
from norm import *
5
6
from plot import *
6
7
from dolfin import *
7
8