Performing operations and calculations involving dates requires that one acquires familiarity with some of Excel s Date and Time Functions.

Size: px
Start display at page:

Download "Performing operations and calculations involving dates requires that one acquires familiarity with some of Excel s Date and Time Functions."

Transcription

1 Performing operations and calculations involving dates requires that one acquires familiarity with some of Excel s Date and Time Functions. The DATEDIF worksheet Function in Excel calculates the difference between two dates that are given as input. One can specify if you want the difference returned in days, months or years based on the interval you specify within the function. The syntax of the DATEDIF Function is: where start_date is the initial date of interest, end_date is the end date or later date of interest. If the end_date is earlier than the start_date you will get the #NUM error returned, so be sure to enter your dates correctly. Interval can either be specified as d for days and then the days between the two dates are calculated, or m for months in which case the months between the two dates are calculated or y for years in which case the years between the two dates are calculated. In the case of m specified this means the number of complete months between the two dates, so let s say there is a difference of 2 months and 27 days between two dates the DATEDIF function will return 2 months, if there is difference of 2 months and 10 days between two dates, then if one uses m as the interval, 2 months will still be returned. When you specify y the same logic applies and the complete number of years between two dates is calculated. Additionally you can specify md as the interval in which case the function calculates the difference in days between the two dates without including the months or the years in the calculation, one can also specify yd as the interval in which case the difference is calculated in days without including the years in the calculation, or one can specify ym in this case the months between the two dates are specified without including the days and years in the calculation, All rights reserved to ExcelDemy.com. 1

2 So, let s get started with a simple example to illustrate how to use the DATEDIF Function. Table of Contents 1 Introduction 2 Calculating the difference in days between the two dates 3 Calculating the difference in months between the two dates 4 Download Working File 5 Conclusion Introduction Anaerobic digestion refers to a biological process, whereby a substrate is digested and the decomposition yields methane (CH 4 ) and carbon dioxide (CO 2 ), this entire process takes place in the absence of oxygen. The biomethane produced as a result of this process is considered to be a renewable energy source and can be used for electricity generation. Anaerobic digestion is divided into four main stages namely hydrolysis of the substrate, fermentation, acetogenesis, and methanogenesis. Anaerobic digestion takes place in a bioreactor when production of biofuel outputs is being considered. Different micro-organisms in the bioreactor are responsible for the different stages making up the degradation process. Hydrolysis refers to the breaking down of complex molecules that make up the substrate. Fermentation of the degradation products yielded by the hydrolysis stage results in the production of alcohols, carboxylic acids, hydrogen, and carbon dioxide. The acetogenesis stage uses hydrogen and carbon dioxide to produce acetate. The final step is methanogenesis which involves the production of the methane gas. The micro-organisms responsible for the entire process, are usually obtained from an inoculating sludge, this can be an inoculating wastewater sludge obtained from a wastewater treatment plant, fish wastewater sludge obtained from an aquaculture farm, pig sludge obtained from a farm, or solid municipal waste sludge obtained from a municipal waste facility. In our hypothetical example, a biochemist is evaluating the anaerobic digestion of green seaweed (the substrate) using four different sources of sludge separately, and the same bioreactor type (with the same settings) for each experimental run. He wants to see how All rights reserved to ExcelDemy.com. 2

3 long each inoculating sludge takes, to produce the optimum cumulative methane yield of 500 ml CH4/g VS. He wants to show the results for each sludge in days first and then months. He can, therefore, use the DATEDIF Function to deliver the results he wants. The source data is shown below. Calculating the difference in days between the two dates 1) In order to calculate the difference in days between the start date and the end date for experimental run #1001 (wastewater sludge), i.e the time it took to reach the cumulative optimum biomethane yield, in cell F5 enter the following formula: =DATEDIF(D5,E5, d ) All rights reserved to ExcelDemy.com. 3

4 2) Upon pressing CTRL-ENTER a value of 65 is delivered which means that there are 65 days between the two dates specified. In the context of the experiment, this means it took the bioreactor containing the wastewater sludge 65 days to reach the cumulative optimum biomethane yield. All rights reserved to ExcelDemy.com. 4

5 3) We can slightly adjust this formula to make the time period slightly more descriptive within the actual cell. In order to do this we delete the original formula, and enter the following formula which uses the concatenation operator to add the text days, in cell F5: =DATEDIF(D5,E5, d ) & days All rights reserved to ExcelDemy.com. 5

6 4) Upon pressing CTRL-ENTER the value 65 days is now returned. All rights reserved to ExcelDemy.com. 6

7 5) Since we used relative references we can drag the formula down the column. 6) Taking the results in context, we can now see that the pig sludge was the most efficient sludge when used in conjunction with the green seaweed substrate, since it produced the optimum cumulative biomethane yield, in the shortest number of days, as compared to the other inoculating sludge used. Calculating the difference in months between the two dates 1) In order to calculate the difference in months between the start date and the end date for experimental run #1001 (wastewater sludge), i.e the time it took to reach the cumulative optimum biomethane yield, in cell G5 enter the following formula: =DATEDIF(D5,E5, m ) All rights reserved to ExcelDemy.com. 7

8 2) Upon pressing CTRL-ENTER a value of 2 is delivered which means that there are 2 months between the two dates specified. In the context of the experiment, this means it took the bioreactor containing wastewater sludge, 2 months to reach the cumulative optimum biomethane yield. All rights reserved to ExcelDemy.com. 8

9 3) We can slightly adjust this formula to make the time period slightly more descriptive within the actual cell. In order to do this we delete the original formula, and enter the following formula which uses the concatenation operator to add the text months, in cell G5: =DATEDIF(D5,E5, m ) & months All rights reserved to ExcelDemy.com. 9

10 4) Upon pressing CTRL-ENTER the value 2 months is now returned. 5) Since we used relative references we can drag the formula down the column, in order to see the time difference expressed in months. All rights reserved to ExcelDemy.com. 10

11 6) The months data, of course, confirms what we saw with the days data with respect to the shortest interval between the two dates specified. We could, however, have a situation where the number of months between the two dates is the same as in the above example since the DATEDIF function returns complete months between two dates if m is specified. Experimental run #1001 and #1003 are shown as taking the same number of months since experimental run #1003 falls just short of 3 months and thus 2 months is delivered, and then we could then specify the days interval with the DATEDIF function in order to see the shortest time period truly reflected. And there you have it. Download Working File DATEDIFFunction Conclusion In order to perform calculations involving dates, one will frequently need to utilize different date functions. The DATEDIF function calculates the interval between two dates, and one All rights reserved to ExcelDemy.com. 11

12 can have this interval delivered in days, months, years or just days (excluding months and years), just days (excluding years) and just months (excluding days and years). Review Section: Test your Understanding 1) What is the DATEDIF Function used to calculate? 2) What is the syntax of the DATEDIF Function? 3) What are the different intervals that the DATEDIF Function can return? 4) Use the DATEDIF Function to calculate the age of an individual born on the 18 June 1980, and today s date (the current date) in years, months and then days. 11 SHARES FacebookTwitter Taryn N Taryn is a Microsoft Certified Professional, who has used Office Applications such as Excel and Access extensively, in her interdisciplinary academic career and work experience. She has a background in biochemistry, Geographical Information Systems (GIS) and biofuels. She enjoys showcasing the functionality of Excel in various disciplines. In her spare time when she s not exploring Excel or Access, she is into graphic design, amateur photography and caring for her two pets, Pretzel and Snoopy. All rights reserved to ExcelDemy.com. 12

Biogas Production from Lignocellulosic Biomass

Biogas Production from Lignocellulosic Biomass Biogas Production from Lignocellulosic Biomass Dr. Ram Chandra Scientist, Energy Bioscience Overseas Fellow Centre for Rural Development & Technology Indian Institute of Technology Delhi 1 Biomass to Energy

More information

"INOGATE Technical Secretariat & Integrated Programme in support of the Baku Initiative and the Eastern Partnership energy objectives" Project

INOGATE Technical Secretariat & Integrated Programme in support of the Baku Initiative and the Eastern Partnership energy objectives Project "INOGATE Technical Secretariat & Integrated Programme in support of the Baku Initiative and the Eastern Partnership energy objectives" Project B U I L D I N G P A R T N E R S H I P S F O R E N E R G Y

More information

IBBA Malmö Yara s Biogas Production Optimiser. Günter Doppelbauer / Sara Ekström 10 September 2015

IBBA Malmö Yara s Biogas Production Optimiser. Günter Doppelbauer / Sara Ekström 10 September 2015 IBBA Malmö Yara s Biogas Production Optimiser Günter Doppelbauer / Sara Ekström 10 September 2015 Yara Global Player with Sales to >150 Countries Yara Plants Joint Venture Plants Sales Officies Development

More information

Select and price substrates with AMPTS II Light

Select and price substrates with AMPTS II Light Select and price substrates with AMPTS II Light www.bioprocesscontrol.com Simplify the selection and pricing of substrates Determine a substrate s true energy content The AMPTS II Light allows users to

More information

UNIVERSITY OF WISCONSIN SYSTEM SOLID WASTE RESEARCH PROGRAM Student Project Report. Optimizing Biogas Output by Biological Means.

UNIVERSITY OF WISCONSIN SYSTEM SOLID WASTE RESEARCH PROGRAM Student Project Report. Optimizing Biogas Output by Biological Means. UNIVERSITY OF WISCONSIN SYSTEM SOLID WASTE RESEARCH PROGRAM Student Project Report Optimizing Biogas Output by Biological Means May 2014 Student Investigators: Stephanie Hands and Ryan Bartell Advisor:

More information

Steven Dickey. Abstract

Steven Dickey. Abstract A Comparison of Anaerobic Treatment Performance of Fish Sludge in High-Saline and Low-Saline Environments Based on Volatile Fatty Acid and Biogas Production Abstract Steven Dickey Mesophilic anaerobic

More information

Anaerobic Digestion in Orkney Pros and Cons

Anaerobic Digestion in Orkney Pros and Cons Anaerobic Digestion in Orkney Pros and Cons What is Anaerobic Digestion? Anaerobic digestion (AD) is a managed biological process in which biodegradable waste is broken down by naturally occurring micro-organisms

More information

UMWEKO GmbH, Dr Konrad Schleiss

UMWEKO GmbH, Dr Konrad Schleiss 3. Biology of anaerobic digestion (after Peter Weiland, Institute of Technology and Biosystems Engineering Federal Agricultural Research Centre, Braunschweig, Germany) Microbiology and biochemistry of

More information

From waste to fuel: bioconversion of domestic food wastes to energy carriers

From waste to fuel: bioconversion of domestic food wastes to energy carriers From waste to fuel: bioconversion of domestic food wastes to energy carriers M. Alexandropoulou 1,2, N. Menis 1, G. Antonopoulou 2, I. Ntaikou 2, G. Lyberatos 1,2 1 School of Chemical Engineering, National

More information

Organica is a registered trademark of the Keter Group Energy Division.

Organica is a registered trademark of the Keter Group Energy Division. Organica is a registered trademark of the Keter Group Energy Division. Every Day is Earth Day. 04 05 Without energy there is no life... but today s growing use of energy represents the greatest threat

More information

336098: DYNAMIC MODELLING AND SIMULATION OF ANAEROBIC DIGESTER FOR HIGH ORGANIC STRENGTH WASTE

336098: DYNAMIC MODELLING AND SIMULATION OF ANAEROBIC DIGESTER FOR HIGH ORGANIC STRENGTH WASTE 336098: DYNAMIC MODELLING AND SIMULATION OF ANAEROBIC DIGESTER FOR HIGH ORGANIC STRENGTH WASTE POOJA SHARMA, U K GHOSH, A K RAY Department of Polymer & Process Engineering Indian Institute of Technology,

More information

Linear and Exponential Kinetic Modelling for Biogas Production in Municipal Waste

Linear and Exponential Kinetic Modelling for Biogas Production in Municipal Waste Linear and Exponential Kinetic Modelling for Biogas Production in Municipal Waste M. M. Manyuchi* BioEnergy and Environmental Technology Centre University of Johannesburg, South Africa Department of Chemical

More information

Investigation of anaerobic digestion in a two-stage bioprocess producing hydrogen and methane

Investigation of anaerobic digestion in a two-stage bioprocess producing hydrogen and methane 15 th European biosolids and organic resources, Leeds, Nov. 2010 : Two-stage anaerobic digestion S. Hiligsmann 1 15 th European biosolids and organic resources Leeds 15-17 th nov. 2010 Investigation of

More information

INFLUENCE OF TEMPERATURE VARIATION ON BIOGAS YIELD FROM INDUSTRIAL WASTES AND ENERGY PLANTS

INFLUENCE OF TEMPERATURE VARIATION ON BIOGAS YIELD FROM INDUSTRIAL WASTES AND ENERGY PLANTS INFLUENCE OF TEMPERATURE VARIATION ON BIOGAS YIELD FROM INDUSTRIAL WASTES AND ENERGY PLANTS Kestutis Navickas, Kestutis Venslauskas, Arnas Petrauskas, Vidmantas Zuperka Aleksandras Stulginskis University,

More information

Biogas Production from Lignocellulosic Biomass

Biogas Production from Lignocellulosic Biomass Biogas Production from Lignocellulosic Biomass Dr. Ram Chandra Scientist, Energy Bioscience Overseas Fellow Centre for Rural Development & Technology Indian Institute of Technology Delhi 1 Introduction

More information

REALIZING RENEWABLE ENERGY POTENTIAL

REALIZING RENEWABLE ENERGY POTENTIAL REALIZING RENEWABLE ENERGY POTENTIAL BY Patrick Hirl, PE Renewable natural gas (RNG) is a universal fuel that enhances energy supply diversity; uses municipal, agricultural and commercial organic waste;

More information

EFFECT OF ANAEROBIC SLUDGE COMPOSITION ON A BIOGAS PRODUCTION

EFFECT OF ANAEROBIC SLUDGE COMPOSITION ON A BIOGAS PRODUCTION EFFECT OF ANAEROBIC SLUDGE COMPOSITION ON A BIOGAS PRODUCTION Małgorzata Cimochowicz-Rybicka Institute of Water Supply and Environmental Protection Cracow University of Technology, 31-155 Kraków, Warszawska

More information

Renewable gases : What are the challenges? François CAGNON CEDEC Gas DAY, February 18, 2013

Renewable gases : What are the challenges? François CAGNON CEDEC Gas DAY, February 18, 2013 Renewable gases : What are the challenges? François CAGNON CEDEC Gas DAY, February 18, 2013 RENEWABLE GASES: Definitions Biogas is the raw product of the biological process of anaerobic fermentation. Typically

More information

BIOREACTOR LANDFILLS: AN INNOVATIVE TECHNOLOGY FOR SUSTAINABLE MANAGEMENT OF SOLID WASTE. Rao Y. Surampalli

BIOREACTOR LANDFILLS: AN INNOVATIVE TECHNOLOGY FOR SUSTAINABLE MANAGEMENT OF SOLID WASTE. Rao Y. Surampalli BIOREACTOR LANDFILLS: AN INNOVATIVE TECHNOLOGY FOR SUSTAINABLE MANAGEMENT OF SOLID WASTE Rao Y. Surampalli Bioreactor Landfills Municipal solid waste landfills that utilize bulk liquids in an effort to

More information

Anaerobic Digestion of Sewage Wastewaters with Sludge and Rumen Fluid

Anaerobic Digestion of Sewage Wastewaters with Sludge and Rumen Fluid European International Journal of Science and Technology Vol. 3 No. 6 August, 2014 Anaerobic Digestion of Sewage Wastewaters with Sludge and Rumen Fluid * Fredrick M. Mwazighe a a Department of Chemistry,

More information

Biogas A Wet Gas Environment for Thermal Flow Meters

Biogas A Wet Gas Environment for Thermal Flow Meters Application Note Complex Technology Made Simple Biogas A Wet Gas Environment for Thermal Flow Meters A Stark Comparison Between Thermal Flow Meters Kurz Instruments, Inc. Summary In a recent project and

More information

Evaluation of Agricultural Wastes for Biogas Production

Evaluation of Agricultural Wastes for Biogas Production Thammasat International Journal of Science and Technology Vol. 19, No. 1, January-March 214 Evaluation of Agricultural Wastes for Biogas Production Malee Suntikunaporn *, Snunkheam Echaroj, and Warangkana

More information

KINETICS STUDIES OF FUNGAL BIOGAS PRODUCTION FROM CERTAIN AGRICULTURAL WASTE

KINETICS STUDIES OF FUNGAL BIOGAS PRODUCTION FROM CERTAIN AGRICULTURAL WASTE Bajopas olume 5 Number December, 01 http://dx.doi.org/10.31/bajopas.v5i.1 Bayero Journal of Pure and Applied Sciences, 5(): 79 83 Received: February 01 Accepted: August 01 ISSN 006 6996 KINETICS STUDIES

More information

What type of Digester Configurations should be employed to produce Biomethane from Grass Silage?

What type of Digester Configurations should be employed to produce Biomethane from Grass Silage? What type of Digester Configurations should be employed to produce Biomethane from Grass Silage? Nizami Abdul-Sattar, Biofuels Research Group, ERI T: 353 (0)21 4901995 F: 353 (0)21 4901932 E: nizami_pk@yahoo.com

More information

Waste to energy conversion Dr. Prasenjit Mondal Department of Chemical Engineering Indian Institute of Technology, Roorkee

Waste to energy conversion Dr. Prasenjit Mondal Department of Chemical Engineering Indian Institute of Technology, Roorkee Waste to energy conversion Dr. Prasenjit Mondal Department of Chemical Engineering Indian Institute of Technology, Roorkee Lecture 26 Energy production from Organic Wastes Through Anaerobic Digestion-1

More information

Application of Hycura in Municipal Waste Digestion Recovering Biogas

Application of Hycura in Municipal Waste Digestion Recovering Biogas Application of Hycura in Municipal Waste Digestion Recovering Biogas M. M. Manyuchi mmanyuchi@uj.ac.za C. Mbohwa cmbohwa@uj.ac.za E. Muzenda emuzenda@uj.ac.za S. Masebinu somasebinu@uj.ac.za Abstract Disposal

More information

CONVERSION OF SEAWEED BIOMASS INTO KETONE FUEL INTERMEDIATES THROUGH CARBOXYLATE PLATFORM PROCESSING

CONVERSION OF SEAWEED BIOMASS INTO KETONE FUEL INTERMEDIATES THROUGH CARBOXYLATE PLATFORM PROCESSING CONVERSION OF SEAWEED BIOMASS INTO KETONE FUEL INTERMEDIATES THROUGH CARBOXYLATE PLATFORM PROCESSING XIN CHEN, SAMPATH KARUNARATHNE, YANG YU, PAIGE CASE, M. CLAYTON WHEELER, G. PETER VAN WALSUM*, DEPARTMENT

More information

SEPARATE PRODUCTION OF HYDROGEN AND METHANE FROM ETHANOL WASTEWATER USING TWO-STAGE UASB SYSTEM

SEPARATE PRODUCTION OF HYDROGEN AND METHANE FROM ETHANOL WASTEWATER USING TWO-STAGE UASB SYSTEM SEPARATE PRODUCTION OF HYDROGEN AND METHANE FROM ETHANOL WASTEWATER USING TWO-STAGE UASB SYSTEM Songphol Jaikeaw a, Sumaeth Chavadej a,b, Malinee Leethochawalit *,c a The Petroleum and Petrochemical College,

More information

THE USE OF ULTRASOUND TO ACCELERATE THE ANAEROBIC DIGESTION OF WASTE ACTIVATED SLUDGE. Ewa Neczaj, Joanna Lach

THE USE OF ULTRASOUND TO ACCELERATE THE ANAEROBIC DIGESTION OF WASTE ACTIVATED SLUDGE. Ewa Neczaj, Joanna Lach THE USE OF ULTRASOUND TO ACCELERATE THE ANAEROBIC DIGESTION OF WASTE ACTIVATED SLUDGE Ewa Neczaj, Joanna Lach Technical University of Czestochowa, Institute of Environmental Engineering, BrzeŸnicka 60a,

More information

Razak, Gambang, Kuantan, Pahang, Malaysia. Faculty of Chemical and Natural Resources Engineering, Universiti Malaysia Pahang, Lebuhraya Tun

Razak, Gambang, Kuantan, Pahang, Malaysia. Faculty of Chemical and Natural Resources Engineering, Universiti Malaysia Pahang, Lebuhraya Tun IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY BIOMETHANATION OF SUGARCANE WASTEWATER BY ULTRASONIC MEMBRANE ANAEROBIC SYSTEM (UMAS) TO PRODUCE METHANE GAS Abdurahman, H. Nour*,

More information

Co Digestion Food Waste with Cow Manure for Efficient Biogas Generation

Co Digestion Food Waste with Cow Manure for Efficient Biogas Generation Co Digestion Food Waste with Cow Manure for Efficient Biogas Generation Akhouri Prashant Sinha I. INTRODUCTION In the present day energy has become a resource of primary importance. With the constant increase

More information

ORGANIC WASTE TREATMENT USING ANAEROBIC DIGESTION METHOD. L/O/G/O

ORGANIC WASTE TREATMENT USING ANAEROBIC DIGESTION METHOD.   L/O/G/O ORGANIC WASTE TREATMENT USING ANAEROBIC DIGESTION METHOD www.e-idaman.com L/O/G/O MALAYSIA WASTE COMPOSITION 1.60% 1.50% 0.60% 1.40% 2.40% 2.90% Sisa makanan 2.40% 5.80% Plastik 12.40% 44.10% Kertas Lampin

More information

Production from Organic Residues. Biogas

Production from Organic Residues. Biogas Biogas Production from Organic Residues Biogas Maxx 910 West End Ave, 10025 New York, NY www.biogasmaxx.com Contact: Leodegario Lopez, M.Eng. Rottaler Modell Network Tel: +1 917 2677936 Email: leo@biogasmaxx.com

More information

Anaerobic Co-Digestion of Municipal Sewage Sludge with Cow Dung at Different Ratio

Anaerobic Co-Digestion of Municipal Sewage Sludge with Cow Dung at Different Ratio Global Journal of Science Frontier Research: H Environment & Earth Science Volume 18 Issue 3 Version 1.0 Year 2018 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals

More information

Anaerobic Digestion not just biogas production. FARM BIOGAS Methane consulting cc

Anaerobic Digestion not just biogas production. FARM BIOGAS Methane consulting cc Anaerobic Digestion not just biogas production FARM BIOGAS Methane consulting cc Use of fire - the greatest achievement of the human race FARM BIOGAS Methane consulting cc Reduction of GHG s emission FARM

More information

ACKNOWLEDGEMENTS. I would like to thank Waste Management Inc., especially Mr.Gary Hater for providing

ACKNOWLEDGEMENTS. I would like to thank Waste Management Inc., especially Mr.Gary Hater for providing ACKNOWLEDGEMENTS I would like to thank Waste Management Inc., especially Mr.Gary Hater for providing me an opportunity to work on this project apart from extending funding. It s my pleasure to express

More information

Aerobic and Anaerobic Biodegradation. Danny Clark ENSO Bottles LLC 06/29/2010

Aerobic and Anaerobic Biodegradation. Danny Clark ENSO Bottles LLC 06/29/2010 2010 Aerobic and Anaerobic Biodegradation Danny Clark ENSO Bottles LLC 06/29/2010 Aerobic and Anaerobic Biodegradation A look into aerobic and anaerobic biodegradation By Danny Clark ENSO Bottles, LLC

More information

WASTEWATER TREATMENT. Lili sugiyarto

WASTEWATER TREATMENT. Lili sugiyarto WASTEWATER TREATMENT Lili sugiyarto Lili_sugiyarto@uny.ac.id The primary goal The removal and degradation of organic matter under controlled condition Three major steps Primary treatment Secondary treatment

More information

Chemical Process and Energy Resources Institute Centre for Research and Technology Hellas

Chemical Process and Energy Resources Institute Centre for Research and Technology Hellas Chemical Process and Energy Resources Institute Centre for Research and Technology Hellas AN ENVIRONMENTAL ASSESSMENT FOR ANAEROBIC DIGESTION OF BIOWASTE BASED ON LIFE CYCLE ANALYSIS PRINCIPLES Session

More information

First Let s Define some Terms the most important terms used with these concepts are:

First Let s Define some Terms the most important terms used with these concepts are: Primer - Working With Total Solids, Fixed Solids and Volatile Solids in Sludge and Biosolids Michael D. Doran, DEE Professor of Practice Department of Civil & Environmental Engineering University of Wisconsin-Madison

More information

Optimizing anaerobic digestion of agricultural substrates

Optimizing anaerobic digestion of agricultural substrates Optimizing anaerobic digestion of agricultural substrates Claudia Pabón Pereira MSc PhD candidate Tania Fernandes MSc PhD candidate Environmental Technology Anaerobic digestion process Rate limiting step

More information

7624 Riverview Road Cleveland, Ohio

7624 Riverview Road Cleveland, Ohio Management Plan for the Beneficial Use of Organic Residuals Presented to: Bioenergy Business Meeting in Minneapolis, MN April 25, 2007 Presented by: Bruce Bailey, CPSS/Ag/ESC Vice President of Technical

More information

Aerobic and Anaerobic Biodegradation

Aerobic and Anaerobic Biodegradation Polimernet Plastik San.Tic.Ltd.Şti. Tel:+90 216 393 77 46 / Email: info@polimernet.com www.polimernet.com 1 Aerobic and Anaerobic Biodegradation This document provides an in depth explanation, detailing

More information

KINETIC STUDY ON THE EFFECT OF WATER HYACINTHS IN FOODWASTE BIOGAS PRODUCTION

KINETIC STUDY ON THE EFFECT OF WATER HYACINTHS IN FOODWASTE BIOGAS PRODUCTION KINETIC STUDY ON THE EFFECT OF WATER HYACINTHS IN FOODWASTE BIOGAS PRODUCTION *K.K.Dinesh Kumar, **S.Rajakumar, ***S.Ayyappan *PG Student, **Assistant professor, Dept. Of Mechanical Engineering, Regional

More information

Anaerobic Digestion of Vegetable Waste

Anaerobic Digestion of Vegetable Waste Anaerobic Digestion of Vegetable Waste Azadeh Babaee, Jalal Shayegan * School of Chemical and Petroleum Engineering, Sharif University of Technology, Tehran, Iran shayegan@sharif.edu Fruit and vegetable

More information

The Next Generation of Biofuels

The Next Generation of Biofuels The Next Generation of Biofuels Ocean the final frontier What are biofuels? Why Biofuels! The Industry Pros and Cons By definition, a biofuel is a solid, liquid or gaseous fuel produced from non fossil

More information

Is it possible to start-up a biogas plant from manure in only 4 months?

Is it possible to start-up a biogas plant from manure in only 4 months? Is it possible to start-up a biogas plant from manure in only 4 months? Nordic Biogas Conference 2016-09-07 Erik Nordell Tekniska verken i Linköping AB, Sweden in co-operation with Greve Biogass AS, Tønsberg,

More information

FERMENTATIVE HYDROGEN PRODUCTION FROM FOOD-INDUSTRY WASTES

FERMENTATIVE HYDROGEN PRODUCTION FROM FOOD-INDUSTRY WASTES Proceedings of the 13 th International Conference on Environmental Science and Technology Athens, Greece, 5-7 September 213 FERMENTATIVE HYDROGEN PRODUCTION FROM FOOD-INDUSTRY WASTES M. ALEXANDROPOULOU

More information

Biofuel Generation from Grass

Biofuel Generation from Grass Karan Bhandari 1 1 Department of Environment Engineering, K.I.T s College of engineering, Kolhapur, Maharashtra, India ---------------------------------------------------------------------------------***------------------------------------------------------------------------------------

More information

METHANE PRODUCTION FROM STILLAGE

METHANE PRODUCTION FROM STILLAGE METHANE PRODUCTION FROM STILLAGE Vilis Dubrovskis, Imants Plume Latvia University of Agriculture vilisd@inbox.lv, imants.plume@inbox.lv Abstract. By-products from production of alcohol distilling dregs

More information

Introduction into Digester Biology

Introduction into Digester Biology Introduction into Digester Biology Workshop for international experts Oberschleißheim, 12 October 2015 Katrin Kayser 1 Conversion process 1. biochemical 2. physical Organic matter Digester biogas CHP Electricity

More information

VALORIZATION OF MAIZE SILAGE AND MUNICIPAL WASTEWATER SLUDGES: ENERGY PRODUCTION ENHANCED BY ULTRASONIC AND MICROWAVE PRE-TREATMENTS

VALORIZATION OF MAIZE SILAGE AND MUNICIPAL WASTEWATER SLUDGES: ENERGY PRODUCTION ENHANCED BY ULTRASONIC AND MICROWAVE PRE-TREATMENTS VALORIZATION OF MAIZE SILAGE AND MUNICIPAL WASTEWATER SLUDGES: ENERGY PRODUCTION ENHANCED BY ULTRASONIC AND MICROWAVE PRE-TREATMENTS B. Aylin ALAGÖZ Prof. Dr. Orhan YENİGÜN Prof. Dr. Ayşen ERDİNÇLER Boğaziçi

More information

Evaluation of composition and biogas production potential from seagrass (Halodule uninervis) native to Abu Dhabi.

Evaluation of composition and biogas production potential from seagrass (Halodule uninervis) native to Abu Dhabi. Available online at www.sciencedirect.com ScienceDirect Energy Procedia 75 (2015 ) 760 766 The 7 th International Conference on Applied Energy ICAE2015 Evaluation of composition and biogas production potential

More information

LITERATURE REVIEW CHAPTER Introduction. 2.2 Substrate removal in attached growth treatment process

LITERATURE REVIEW CHAPTER Introduction. 2.2 Substrate removal in attached growth treatment process LITERATURE REVIEW 2.1 Introduction CHAPTER 02 In attached growth processes the micro organisms responsible for the conversion of organic material or nutrients are attached to an inert packing material.

More information

ENERGY GENERATION FROM WASTE. Fatih HOŞOĞLU Operations Manager Istanbul Metropolitan Municipality Istanbul Environmental Management Company

ENERGY GENERATION FROM WASTE. Fatih HOŞOĞLU Operations Manager Istanbul Metropolitan Municipality Istanbul Environmental Management Company ENERGY GENERATION FROM WASTE Fatih HOŞOĞLU Operations Manager Istanbul Metropolitan Municipality Istanbul Environmental Management Company GENERAL INFORMATION The number of refugees in Turkey has reached

More information

The Carboxylate Platform

The Carboxylate Platform The Carboxylate Platform Nigel Horan Lecture Outline The industry why it should innovate What is the carboxylate platform? Potential benefits Retrofitting and new build Conclusions AD Industry Now over

More information

Making Waste Productive. Creating Energy from Waste

Making Waste Productive. Creating Energy from Waste Making Waste Productive Creating Energy from Waste 1 Creating Energy Inputs from Current Waste Outputs Organic material (waste) can be converted into energy (methane) through a process called anaerobic

More information

Respiration Worksheet. Respiration is the controlled release of energy from food. Types of Respiration. Aerobic Respiration

Respiration Worksheet. Respiration is the controlled release of energy from food. Types of Respiration. Aerobic Respiration Respiration Worksheet Respiration is the controlled release of energy from food! The food involved in respiration is usually! Internal respiration is controlled by which allow energy to be released in!

More information

Advantage of leachate recirculation on municipal solid waste biodegradation: experimental and field results

Advantage of leachate recirculation on municipal solid waste biodegradation: experimental and field results Advantage of leachate recirculation on municipal solid waste biodegradation: experimental and field results Mostafa A. Warith Department of Civil Engineering, Ryerson Polytechnic University 350 Victoria

More information

Greening the Gas Grid David Wall Senior Postdoc Researcher MaREI

Greening the Gas Grid David Wall Senior Postdoc Researcher MaREI Greening the Gas Grid David Wall Senior Postdoc Researcher MaREI IEA Bioenergy Task 37 report IEA Bioenergy Task 37 report Facilitating a future green gas grid through the production of renewable gas Biomethane

More information

THE ORGANIC WASTE FRACTIONS RATIO OPTIMIZATION IN THE ANAEROBIC CO-DIGESTION PROCESS FOR THE INCREASE OF BIOGAS YIELD

THE ORGANIC WASTE FRACTIONS RATIO OPTIMIZATION IN THE ANAEROBIC CO-DIGESTION PROCESS FOR THE INCREASE OF BIOGAS YIELD S1525 THE ORGANIC WASTE FRACTIONS RATIO OPTIMIZATION IN THE ANAEROBIC CO-DIGESTION PROCESS FOR THE INCREASE OF BIOGAS YIELD by a* Ana J. MOM^ILOVI], Gordana M. STEFANOVI] a, Predrag M. RAJKOVI] a, Nenad

More information

ENVE 424 Anaerobic Treatment

ENVE 424 Anaerobic Treatment ENVE 424 Anaerobic Treatment Lecture 3 The Microbiology of Anaerobic Treatment 2012 2013 Fall 27-28 Sept 2012 Assist. Prof. A. Evren Tugtas Anaerobic Digestion Ref: Gerardi M. H. The Microbiology of Anaerobic

More information

INTERNATIONAL JOURNAL OF ENVIRONMENTAL SCIENCES Volume 3, No 3, Copyright by the authors - Licensee IPA- Under Creative Commons license 3.

INTERNATIONAL JOURNAL OF ENVIRONMENTAL SCIENCES Volume 3, No 3, Copyright by the authors - Licensee IPA- Under Creative Commons license 3. INTERNATIONAL JOURNAL OF ENVIRONMENTAL SCIENCES Volume 3, No 3, 2012 Copyright by the authors - Licensee IPA- Under Creative Commons license 3.0 Research article ISSN 0976 4402 Anaerobic treatment of wastewater

More information

Simulation of a Hydrogen Production Process from Algae

Simulation of a Hydrogen Production Process from Algae A publication of CHEMICAL ENGINEERING TRANSACTIONS VOL. 27, 2012 Guest Editors: Enrico Bardone, Alberto Brucato, Tajalli Keshavarz Copyright 2012, AIDIC Servizi S.r.l., ISBN 978-88-95608-18-1; ISSN 1974-9791

More information

Large-scale Composting & Digestion Technology Options

Large-scale Composting & Digestion Technology Options Large-scale Composting & Digestion Technology Options COMPOST MATTERS IN BC FEBRUARY 27, 2014 SCOTT GAMBLE, P.ENG. CH2M HILL CANADA LTD. Passively Aerated & Turned Systems Static Piles Bunkers Windrow

More information

USING GEOTEXTILE FILTER AS BIOFILM MEDIA IN ANAEROBIC LANDFILL BIOREACTOR

USING GEOTEXTILE FILTER AS BIOFILM MEDIA IN ANAEROBIC LANDFILL BIOREACTOR USING GEOTEXTILE FILTER AS BIOFILM MEDIA IN ANAEROBIC LANDFILL BIOREACTOR YUSUF KÜÇÜKAĞA*, CEVAT YAMAN, BURCU PALA, GÜLŞAH DELİCE * Environmental Engineering Department, Gebze Technical University, TURKEY

More information

CH Four has extensive experience in providing organic management. engineering solutions for industrial, municipal and agricultural clients.

CH Four has extensive experience in providing organic management. engineering solutions for industrial, municipal and agricultural clients. I am Mark Bell, the Director of the proponent, Petawawa Biofuel LP. I am here today with Claire Allen, a process engineer with CH Four Biogas Inc. our technical partner CH Four has extensive experience

More information

Considerations for the Use of ORP in Wastewater Treatment Applications

Considerations for the Use of ORP in Wastewater Treatment Applications Considerations for the Use of ORP in Wastewater Applications Enos C. Inniss, Ph.D. Department of Civil and Environmental Engineering University of Texas at San Antonio Abstract Additional parameters like

More information

Natural Energy Solutions

Natural Energy Solutions Natural Energy Solutions Serving our customers with renewable natural gas Air Liquide has developed an efficient, state-of-the-art membranetechnology that makes upgrading biogas efficient and cost-effective,

More information

Anaerobic digestion = biogas process

Anaerobic digestion = biogas process Anaerobic digestion = biogas process Input Manure Organic household waste Industrial waste Sludge Products Energy: in the form of biogas (methane) Substitution of existing energy production Fertilizers:

More information

Becky Larson Assistant Professor and Extension Specialist Biological Systems Engineering November 24, 2015

Becky Larson Assistant Professor and Extension Specialist Biological Systems Engineering November 24, 2015 FROM WASTE TO WORTH ANAEROBIC DIGESTION Becky Larson Assistant Professor and Extension Specialist Biological Systems Engineering November 24, 2015 What is Anaerobic Digestion? Biological process Breakdown

More information

Anaerobic Degradation of Organics

Anaerobic Degradation of Organics Anaerobic Degradation of Organics Nur Hidayat Anaerobic sludge treatment methane production Anaerobic wastewater treatment - Anaerobic wastewater treatment Sedimentasi floc-forming bacteria dan recycling

More information

Biogas recovery from anaerobic digestion process of mixed fruit -vegetable wastes

Biogas recovery from anaerobic digestion process of mixed fruit -vegetable wastes Available online at www.sciencedirect.com Energy Procedia 32 (2013 ) 176 182 International Conference on Sustainable Energy Engineering and Application [ICSEEA 2012] Biogas recovery from anaerobic digestion

More information

Septicity. Midwest Contract Operations. Presented by: Ryan Hennessy. (Organic Acids/ Sulfide)

Septicity. Midwest Contract Operations. Presented by: Ryan Hennessy. (Organic Acids/ Sulfide) Septicity (Organic Acids/ Sulfide) Presented by: Ryan Hennessy Midwest Contract Operations Types of Organisms Microorganisms can be classified by the type of respiration they use Aerobes use aerobic respiration

More information

(c) Tertiary Further treatment may be used to remove more organic matter and/or disinfect the water.

(c) Tertiary Further treatment may be used to remove more organic matter and/or disinfect the water. ENERGY FROM SEWAGE Introduction - Sewage treatment, that is, the physical, chemical and biological processes used to clean industrial and domestic wastewater, has improved significantly over the past 20

More information

CH Four Biogas.

CH Four Biogas. CH Four Biogas www.chfour.ca 2 CH Four Biog Leaders in Canadian Biogas Tech gas hnology ENERGY Reducing waste and creating energy. That is the basis behind CH Four Biogas Inc., pioneers in the Canadian

More information

BOOSTING ENERGY PRODUCTION THROUGH CO-DIGESTION

BOOSTING ENERGY PRODUCTION THROUGH CO-DIGESTION BOOSTING ENERGY PRODUCTION THROUGH CO-DIGESTION Jennifer Dreyfus, Allwater, Adelaide, South Australia Pablo Kroff, Suez, Paris, France Ben van den Akker, SA Water, Adelaide, South Australia ABSTRACT Many

More information

UNIVERSITY OF WISCONSIN SYSTEM SOLID WASTE RESEARCH PROGRAM Student Project Report

UNIVERSITY OF WISCONSIN SYSTEM SOLID WASTE RESEARCH PROGRAM Student Project Report UNIVERSITY OF WISCONSIN SYSTEM SOLID WASTE RESEARCH PROGRAM Student Project Report Benefits of Food Waste as a Potential Substrate in a Dry Anaerobic Digester May 2013 Student Investigator: Ryan Bartell

More information

BIOGAS PRODUCTION POTENTIAL FROM AGRICULTURAL BIOMASS AND ORGANIC RESIDUES IN LATVIA

BIOGAS PRODUCTION POTENTIAL FROM AGRICULTURAL BIOMASS AND ORGANIC RESIDUES IN LATVIA BIOGAS PRODUCTION POTENTIAL FROM AGRICULTURAL BIOMASS AND ORGANIC RESIDUES IN LATVIA Vilis Dubrovskis, Vladimirs Kotelenecs, Eduards Zabarovskis, Arvids Celms, Imants Plume Latvia University of Agriculture,

More information

Improvement Anaerobic Digestion performance of Sewage Sludge by Co-digestion with Cattle Manure Raouf Hassan

Improvement Anaerobic Digestion performance of Sewage Sludge by Co-digestion with Cattle Manure Raouf Hassan International Journal of Scientific Research in Agricultural Sciences, 2(Proceedings), pp. 173-177, 2015 Available online at http://www.ijsrpub.com/ijsras ISSN: 2345-6795; 2015; Conference organizer retains

More information

Comparison between the Steady State Anaerobic Digestion Model and ADM1 for Anaerobic Digestion of Sewage Sludge

Comparison between the Steady State Anaerobic Digestion Model and ADM1 for Anaerobic Digestion of Sewage Sludge Research Article International Journal of Current Engineering and Technology E-ISSN 2277 4106, P-ISSN 2347-5161 2014 INPRESSCO, All Rights Reserved Available at http://inpressco.com/category/ijcet Comparison

More information

Using household food waste as a source of energy in a single-chamber microbial fuel cell

Using household food waste as a source of energy in a single-chamber microbial fuel cell Using household food waste as a source of energy in a single-chamber microbial fuel cell Antonopoulou G. 1,2, Ntaikou I. 1,2, Alexandropoulou M. 1,2, Tremouli A. 1, Pastore C. 3, Bitonto L. 3, Bebelis

More information

Integrated Process for the Production of Lipase and Methane from Olive Mill Wastewaters

Integrated Process for the Production of Lipase and Methane from Olive Mill Wastewaters Abstract Integrated Process for the Production of Lipase and Methane from Olive Mill Wastewaters C. Gonçalves*, M. Alves* and I. Belo* * IBB-Institute for Biotechnology and Bioengineering, Centre of Biological

More information

Biogas Production from Anaerobic Digestion of Fruit and Vegetable Waste from Johannesburg Market

Biogas Production from Anaerobic Digestion of Fruit and Vegetable Waste from Johannesburg Market 2016 7th International Conference on Biology, Environment and Chemistry Volume 98 of IPCBEE (2016) DOI: 10.7763/IPCBEE. 2016. V98. 15 Biogas Production from Anaerobic Digestion of Fruit and Vegetable Waste

More information

Sludge Workshop 3rd April 2017 Zagreb. Isabelle LEBLANC -

Sludge Workshop 3rd April 2017 Zagreb. Isabelle LEBLANC - Sludge Workshop 3rd April 2017 Zagreb Isabelle LEBLANC - isabelle.leblanc@veolia.com Waste water treatment produce Typical city of 100,000 PE (France) Conventional wastewater treatment plant Treated water

More information

Municipal Project Development Considerations. Mike Muffels MSc P.Eng. March 22, 2018

Municipal Project Development Considerations. Mike Muffels MSc P.Eng. March 22, 2018 Municipal Project Development Considerations Mike Muffels MSc P.Eng. March 22, 2018 Introduction and outline Landfill Gas 1. Feedstock Biogas Biomethane (RNG) WWTP Sludges Pre-Consumer Food Waste Post

More information

Improving Septic Tank Performance by Enhancing Anaerobic Digestion NOWRA Onsite Wastewater Mega-Conference

Improving Septic Tank Performance by Enhancing Anaerobic Digestion NOWRA Onsite Wastewater Mega-Conference Improving Septic Tank Performance by Enhancing Anaerobic Digestion NOWRA Onsite Wastewater Mega-Conference Christopher Jowett October 23, 2017 Outline Anaerobic 101 Important factors influencing treatment

More information

Anaerobic digestion of microalgal biomass in lab-scale digesters for the production of volatile fatty acids

Anaerobic digestion of microalgal biomass in lab-scale digesters for the production of volatile fatty acids Anaerobic digestion of microalgal biomass in lab-scale digesters for the production of volatile fatty acids Jean-Claude Frigon, Marvin Gruhn and Serge R. Guiot 11 th World Congress on Industrial Biotechnology.

More information

Study of Biodegradability of Organic Fraction of Municipal Solids Waste

Study of Biodegradability of Organic Fraction of Municipal Solids Waste Available online at www.sciencedirect.com Energy Procedia 19 (212 ) 239 248 Study of Biodegradability of Organic Fraction of Municipal Solids Waste K. Derbal 1a *, M. Bencheikh-lehocine 1, A. H. Meniai

More information

Anaerobic Digestion of Biomass Waste : A Comprehensive Review

Anaerobic Digestion of Biomass Waste : A Comprehensive Review 2018 IJSRSET Volume 4 Issue 4 Print ISSN: 2395-1990 Online ISSN : 2394-4099 Themed Section : Engineering and Technology Anaerobic Digestion of Biomass Waste : A Comprehensive Review ABSTRACT P. C. Roy*

More information

IEA Bioenergy Task 37 Energy from Biogas

IEA Bioenergy Task 37 Energy from Biogas Energy from Biogas Knowledge sharing opportunities for Australia during the 2016-2018 triennium A/Prof Bernadette McCabe NTL: Task 37 Bioenergy Australia Conference Brisbane, QLD, 14-16 Nov 2016 Overview

More information

Research Article Empirical Study on Factors Affecting Biogas Production

Research Article Empirical Study on Factors Affecting Biogas Production International Scholarly Research Network ISRN Renewable Energy Volume, Article ID 36959, 7 pages doi:.54//36959 Research Article Empirical Study on Factors Affecting Biogas Production Ravita D. Prasad

More information

The Methanogenic Treatment of Tannery Wastewater. Zhongbai Gao *, Xiaoxing Li

The Methanogenic Treatment of Tannery Wastewater. Zhongbai Gao *, Xiaoxing Li The Methanogenic Treatment of Tannery Wastewater Zhongbai Gao *, Xiaoxing Li China Leather & Footwear Industry Research Institute (CLFI), Beijing 100016, P. R. China Abstract: Anaerobic treatment by methanogenesis

More information

Greenlane Biogas Gas Cleanup Technology. Developments and Key Considerations.

Greenlane Biogas Gas Cleanup Technology. Developments and Key Considerations. Greenlane Biogas Gas Cleanup Technology. Developments and Key Considerations. Cash Cow. RNG for Transportation in Washington. University Place, July 16 th, 2013 www.americanbiogascouncil.org Our Company

More information

YOUR WASTEI OUR RESOURCE. OUR TECHNOLOGYI YOUR ENERGY.

YOUR WASTEI OUR RESOURCE. OUR TECHNOLOGYI YOUR ENERGY. YOUR WASTEI OUR RESOURCE. OUR TECHNOLOGYI YOUR ENERGY. COMPANY PROFILE 2009, JANUARY 1 ST SEBIGAS becomes part of S.E.C.I. Energia, the sub-holding company of the MACCAFERRI INDUSTRIAL GROUP, a business

More information

Modeling Chemical and Biological Processes of Solid Waste Anaerobic Digestion

Modeling Chemical and Biological Processes of Solid Waste Anaerobic Digestion Asheville 13-16 October 2002 The econd Intercontinental Landfill Research ymposium Decomposition Modeling Modeling Chemical and Biological Processes of olid Waste Anaerobic Digestion Vasily A. Vavilin

More information

Chapter 4: Advanced Wastewater Treatment for Phosphorous Removal

Chapter 4: Advanced Wastewater Treatment for Phosphorous Removal ENGI 9605 Advanced Wastewater Treatment Chapter 4: Advanced Wastewater Treatment for Phosphorous Removal Winter 2011 Faculty of Engineering & Applied Science 4.1 Phosphorous in wastewaters 1. Common forms

More information

An overview of the main research activities of the Biomass and Bioenergy Lab

An overview of the main research activities of the Biomass and Bioenergy Lab An overview of the main research activities of the Biomass and Bioenergy Lab Speaker: Cristiano Varrone Email: cristiano.varrone@enea.it Giulio Izzo, Giulia Massini, Antonella Signorini, Fabrizio De Poli,

More information

C7 Quick Revision Questions

C7 Quick Revision Questions C7 Quick Revision Questions H = Higher tier only SS = Separate science only Question 1... of 50 What does a finite resource mean? Answer 1... of 50 A resource that is being used up quicker than it is being

More information

Anaerobic Digestion (AD)

Anaerobic Digestion (AD) Anaerobic Digestion (AD) Process specifications and regulatory options under the Fertilizers Act- General Regulatory CFIA Updates Presented by: Amandeep Komal, CFIA June 09, 2016 2014 Her Majesty the Queen

More information