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