#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#
# --------------------------------------------------------------------
#    Testing the influent/effluent/pipe/reactor classes.
#

from PooPyLab.utils import pfd, run

if __name__ == '__main__':

    import FOUR_STG_BARDEN 

    wwtp = FOUR_STG_BARDEN.construct()

    pfd.check(wwtp)

    pfd.show(wwtp)

    run.get_steady_state(wwtp, FOUR_STG_BARDEN.SRT,
                            mn='BDF',
                            fDO=True,
                            DOsat=10)

Example #2
0
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#
# --------------------------------------------------------------------
#    Testing the influent/effluent/pipe/reactor classes.
#

from PooPyLab.utils import pfd, run

if __name__ == '__main__':

    import MLE

    wwtp = MLE.construct()

    pfd.check(wwtp)

    pfd.show(wwtp)

    run.get_steady_state(wwtp,
                         target_SRT=MLE.SRT,
                         verbose=False,
                         diagnose=False,
                         mn='BDF',
                         fDO=True,
                         DOsat=10)
Example #3
0
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#
# --------------------------------------------------------------------
#    Testing the influent/effluent/pipe/reactor classes.
#

from PooPyLab.utils import pfd, run

if __name__ == '__main__':

    import CSTR

    wwtp = CSTR.construct()

    pfd.check(wwtp)

    pfd.show(wwtp)

    run.get_steady_state(wwtp, CSTR.SRT, False, False, 'BDF', True, 10)