Revision e72de8fd15482647700ff8819a7798840c97139b authored by Eric Heien on 01 August 2011, 18:54:31 UTC, committed by Eric Heien on 01 August 2011, 18:54:31 UTC
Merged regional and full tracer initialization routines
Added classes for cap boundaries
Currently roughly 1000 lines shorter than original code

1 parent 1231be7
Raw File
MultiC_FullSolver.py
#!/usr/bin/env python


from CoupledFullSolver import CoupledFullSolver


class MultiC_FullSolver(CoupledFullSolver):


    def initialize(self, application):
        self.myPlus2 = application.myPlus2
        self.remotePlus2 = application.remotePlus2

        CoupledFullSolver.initialize(self, application)
        return


# version
__id__ = "$Id$"

# End of file
back to top