Page MenuHomec4science

performances.py
No OneTemporary

File Metadata

Created
Mon, Jul 14, 07:03

performances.py

#!/usr/bin/env python
# -*- coding: utf-8 -*-
" module containing class Performances"
class Performances(object):
"""
class Performances: will be implemented in the future
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def __init__(self):
"""__init__: performances are initialized with None values for its removal efficiency values """
# Members ---------------------- #
# Float COD_removal
self.COD_removal = None
# Float NH4_removal
self.NH4_removal = None
# Float N_removal
self.N_removal = None
# Float P_removal
self.P_removal = None
def __del__(self):
"""__del__: not implemented """
pass
##########################################################################
if __name__ == '__main__':
test = Performances()

Event Timeline