Example #1
0
    def __init__(self, name="CitcomS"):
        """Constructor. Inventory object is not initialized yet.
        """
        Application.__init__(self, name)

        # channel for debugging output
        self._info = journal.debug("application")
        return
Example #2
0
    def __init__(self, name="CitcomS"):
        '''Constructor. Inventory object is not initialized yet.
        '''
        Application.__init__(self, name)

        # channel for debugging output
        self._info = journal.debug("application")
        return
Example #3
0
 def __init__(self):
     Application.__init__(self, 'shock')
     self.modeller = None
     self.surfaceMesher = None
     self.layout = None
     self.controller = None
     self.fluid = None
     self.solid = None
     self.coupler = None
     return
Example #4
0
 def __init__(self):
     Application.__init__(self, 'shock')
     self.modeller = None
     self.surfaceMesher = None
     self.layout = None
     self.controller = None
     self.fluid = None
     self.solid = None
     self.coupler = None
     return
Example #5
0
    def __init__(self, name="coupled-application"):
        Application.__init__(self, name)

        self.solver = None
        self.solverCommunicator = None
        self.myPlus = []
        self.remotePlus = []

        self.comm = None
        self.rank = 0
        self.nodes = 0

        self._info = journal.debug(name)
        return
Example #6
0
    def __init__(self, name):
        mpiApplication.__init__(self, name)

        # This holds the root dictionary
        self._dictionarySource = None
        self._dictionary = Dictionary(StGermain.Base.IO.Dictionary.new())

        self.comm = None
        self.rank = None
        self.nodes = None
        self.solver = None
        #ccccc
        self.controller = None

        self._context = None

        return
Example #7
0
	def __init__( self, name ):
		mpiApplication.__init__( self, name )

		# This holds the root dictionary
		self._dictionarySource = None
		self._dictionary = Dictionary( StGermain.Base.IO.Dictionary.new() )

		self.comm = None
		self.rank = None
		self.nodes = None
		self.solver = None
		#ccccc
		self.controller = None

		self._context = None

		return
Example #8
0
 def __init__(self):
     Application.__init__(self, "simple")
     return
Example #9
0
        def __init__(self):
            Application.__init__(self, 'exchange')
            self.coupler = None
            self.modeller = None

            return
Example #10
0
 def __init__(self):
     Application.__init__(self, "simple")
     return
Example #11
0
 def __init__(self, name="citcom"):
     Application.__init__(self, name)
     self.exchanger = None
     return
Example #12
0
 def __init__(self, name="citcom"):
     Application.__init__(self, name)
     self.exchanger = None
     return
Example #13
0
 def __init__(self, name):
     base.__init__(self, name)
     self._normalizeSysArgv()
     return
Example #14
0
 def __init__(self):
     Application.__init__(self, "ports")
     return
Example #15
0
 def __init__(self):
     Application.__init__(self, "ports")
     return