Page MenuHomec4science

reactor.py
No OneTemporary

File Metadata

Created
Mon, Jul 14, 06:56

reactor.py

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"module containing class Reactor "
##########################################################################
##########################################################################
class Reactor(object):
"""
class Reactor: store information about the reactor from were the biomass is sampled
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def __init__(self, reactorID):
"""__init__: a reactor is initialized with an ID and a working volume """
# Members ---------------------- #
# string reactorID
self.reactorID = reactorID
# Float working_volume
self.working_volume = None
def __del__(self):
"""__del__: not implemented """
pass
##########################################################################
if __name__ == '__main__':
test = Reactor('RB')

Event Timeline