Package esys :: Package escript :: Module modelframe
[hide private]
[frames] | no frames]

Module modelframe


Author: Lutz Gross, l.gross@uq.edu.au

Copyright: Copyright (c) 2003-2009 by University of Queensland Earth Systems Science Computational Center (ESSCC) http://www.uq.edu.au/esscc Primary Business: Queensland, Australia

License: Licensed under the Open Software License version 3.0 http://www.opensource.org/licenses/osl-3.0.php

Classes [hide private]
  DataSource
Class for handling data sources, including local and remote files.
  ESySXMLCreator
Creates an XML Dom representation.
  ESySXMLParser
Parser for an ESysXML file.
  FailedTimeStepError
Exception which is thrown if the time step fails because of a step size that has been chosen to be too large.
  IterationDivergenceError
Exception which is thrown if there is no convergence of the iteration process at a time step.
  Link
A Link makes an attribute of an object callable:
  LinkableObject
An object that allows to link its attributes to attributes of other objects via a Link object.
  MissingLink
Exception which is thrown when a link is missing.
  Model
A Model object represents a process marching over time until a finalizing condition is fulfilled.
  NonPositiveStepSizeError
Exception which is thrown if the step size is not positive.
  ParameterSet
A class which allows to emphasize attributes to be written and read to XML.
  RestartManager
A restart manager which does two things: it decides when restart files were created (when doDump returns true) and manages directories for restart files.
  Simulation
A Simulation object is a special Model which runs a sequence of Models.
  SimulationBreakDownError
Exception which is thrown if the simulation does not manage to progress in time.
  _ParameterIterator
Functions [hide private]
 
_comp(a, b)
 
all(seq)
Returns True if no element in seq is None, False otherwise.
 
any(seq)
Returns True if not all elements in seq are None, False otherwise.
 
importName(modulename, name)
Imports a named object from a module in the context of this function, which means you should use fully qualified module paths.
Variables [hide private]
  __url__ = 'https://launchpad.net/escript-finley'
  stdout = <epydoc.docintrospecter._DevNull instance at 0x92f50ac>
Function Details [hide private]

importName(modulename, name)

 

Imports a named object from a module in the context of this function, which means you should use fully qualified module paths. Returns None on failure.

This function is from http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52241