Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121824146
sludge_caracteristics.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, 04:40
Size
1 KB
Mime Type
text/x-python
Expires
Wed, Jul 16, 04:40 (2 d)
Engine
blob
Format
Raw Data
Handle
27397015
Attached To
R2010 molecular_data_processing
sludge_caracteristics.py
View Options
#!/usr/bin/env python
# -*- coding: utf-8 -*-
" module containing class SludgeCaracteristics"
##########################################################################
##########################################################################
class
SludgeCaracteristics
(
object
):
"""
class SludgeCaracteristics: stores different caracteristics of the biomass in the reactor, maybe some other will be added like size fraction
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def
__init__
(
self
):
"""__init__: sludge caracteristics members are initialised to None """
# Members ---------------------- #
# float SVI8
self
.
SVI8
=
None
# float bed_heigth
self
.
bed_heigth
=
None
# float SVI3
self
.
SVI3
=
None
# float TSS
self
.
TSS
=
None
# float VSS
self
.
VSS
=
None
def
__del__
(
self
):
"""__del__: not implemented """
pass
##########################################################################
if
__name__
==
'__main__'
:
test
=
SludgeCaracteristics
()
Event Timeline
Log In to Comment