Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121794291
reactor_operation.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jul 13, 23:16
Size
1 KB
Mime Type
text/x-python
Expires
Tue, Jul 15, 23:16 (2 d)
Engine
blob
Format
Raw Data
Handle
27353995
Attached To
R2010 molecular_data_processing
reactor_operation.py
View Options
#!/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
Log In to Comment