Revision ee814bcb75202da357dd77918889b6cddb3b7615 authored by Eh Tan on 05 October 2007, 20:02:02 UTC, committed by Eh Tan on 05 October 2007, 20:02:02 UTC
(No other CitcomS parameter uses CamelCase.)

Reworked the interaction of initial temperature and coupling. 
Created a new parameter exchange_initial_temperature. 

1 parent b0f818a
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