Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121834414
reactor.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
Mon, Jul 14, 06:56
Size
1 KB
Mime Type
text/x-python
Expires
Wed, Jul 16, 06:56 (2 d)
Engine
blob
Format
Raw Data
Handle
27398808
Attached To
R2010 molecular_data_processing
reactor.py
View Options
#!/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
Log In to Comment