Page MenuHomec4science

reactor_operation.py
No OneTemporary

File Metadata

Created
Sun, Jul 13, 23:16

reactor_operation.py

#!/usr/bin/env python
# -*- coding: utf-8 -*-
" module containing class ReactorOperation"
##########################################################################
##########################################################################
class ReactorOperation(object):
"""
class ReactorOperation: stores the lengths of the different phases and information about aeration, to refine
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def __init__(self):
"""__init__: Documentation TODO """
# Members ---------------------- #
# int aerobic_mixing_length
self.aerobic_mixing_length = None
# int anaerobic_mixing_length
self.anaerobic_mixing_length = None
# string reactor_operation_description
self.reactor_operation_description = None
# int settling_time
self.settling_time = None
# int feedingLenght
self.feedingLenght = None
# boolean intermittent_aeration
self.intermittent_aeration = None
def __del__(self):
"""__del__: not implemented """
pass
##########################################################################
if __name__ == '__main__':
test = ReactorOperation()

Event Timeline