Page MenuHomec4science

sludge_caracteristics.py
No OneTemporary

File Metadata

Created
Mon, Jul 14, 04:40

sludge_caracteristics.py

#!/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