diff --git a/.Rbuildignore b/.Rbuildignore index 0eb295b..b1dab27 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -13,3 +13,4 @@ ^index\.md$ ^README\.md$ ^R/\.setup\.R +^\.github$ diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml new file mode 100644 index 0000000..909fbdf --- /dev/null +++ b/.github/workflows/R-CMD-check.yaml @@ -0,0 +1,81 @@ +on: + push: + branches: + - master + - main + - dev + pull_request: + branches: + - master + - main + - dev + +name: R-CMD-check + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - {os: macOS-latest, r: 'release'} + - {os: ubuntu-20.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"} + - {os: windows-latest, r: 'devel'} + - {os: windows-latest, r: 'oldrel'} + - {os: windows-latest, r: 'release'} + + env: + R_REMOTES_NO_ERRORS_FROM_WARNINGS: true + RSPM: ${{ matrix.config.rspm }} + + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-r@master + with: + r-version: ${{ matrix.config.r }} + + - uses: r-lib/actions/setup-pandoc@master + + - name: Query dependencies + run: | + install.packages('remotes') + saveRDS(remotes::dev_package_deps(dependencies = TRUE), "depends.Rds", version = 2) + shell: Rscript {0} + + - name: Cache R packages + if: runner.os != 'Windows' + uses: actions/cache@v1 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-r-${{ matrix.config.r }}-3-${{ hashFiles('depends.Rds') }} + restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-3- + + - name: Install system dependencies + if: runner.os == 'Linux' + env: + RHUB_PLATFORM: linux-x86_64-ubuntu-gcc + run: | + Rscript -e "remotes::install_github('r-hub/sysreqs')" + sysreqs=$(Rscript -e "cat(sysreqs::sysreq_commands('DESCRIPTION'))") + sudo -s eval "$sysreqs" + - name: Install dependencies + run: | + remotes::install_deps(dependencies = TRUE) + remotes::install_cran("rcmdcheck") + shell: Rscript {0} + + - name: Check + run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check") + shell: Rscript {0} + + - name: Upload check results + if: failure() + uses: actions/upload-artifact@master + with: + name: ${{ runner.os }}-r${{ matrix.config.r }}-results + path: check diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml new file mode 100644 index 0000000..58a9d79 --- /dev/null +++ b/.github/workflows/pkgdown.yaml @@ -0,0 +1,49 @@ +on: + push: + branches: + - main + - master + - dev + +name: pkgdown + +jobs: + pkgdown: + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-r@master + + - uses: r-lib/actions/setup-pandoc@master + + - name: Query dependencies + run: | + install.packages('remotes') + saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) + writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") + shell: Rscript {0} + + - name: Cache R packages + uses: actions/cache@v2 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} + restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- + + - name: Install dependencies + run: | + remotes::install_deps(dependencies = TRUE) + install.packages("pkgdown", type = "binary") + shell: Rscript {0} + + - name: Install package + run: R CMD INSTALL . + + - name: Deploy package + run: | + git config --local user.email "actions@github.com" + git config --local user.name "GitHub Actions" + Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' diff --git a/.github/workflows/pr-commands.yaml b/.github/workflows/pr-commands.yaml new file mode 100644 index 0000000..0d3cb71 --- /dev/null +++ b/.github/workflows/pr-commands.yaml @@ -0,0 +1,51 @@ +on: + issue_comment: + types: [created] +name: Commands +jobs: + document: + if: startsWith(github.event.comment.body, '/document') + name: document + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + - uses: r-lib/actions/pr-fetch@master + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + - uses: r-lib/actions/setup-r@master + - name: Install dependencies + run: Rscript -e 'install.packages(c("remotes", "roxygen2"))' -e 'remotes::install_deps(dependencies = TRUE)' + - name: Document + run: Rscript -e 'roxygen2::roxygenise()' + - name: commit + run: | + git add man/\* NAMESPACE + git commit -m 'Document' + - uses: r-lib/actions/pr-push@master + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + style: + if: startsWith(github.event.comment.body, '/style') + name: style + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + - uses: r-lib/actions/pr-fetch@master + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + - uses: r-lib/actions/setup-r@master + - name: Install dependencies + run: Rscript -e 'install.packages("styler")' + - name: Style + run: Rscript -e 'styler::style_pkg()' + - name: commit + run: | + git add \*.R + git commit -m 'Style' + - uses: r-lib/actions/pr-push@master + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml new file mode 100644 index 0000000..4efc7ab --- /dev/null +++ b/.github/workflows/test-coverage.yaml @@ -0,0 +1,48 @@ +on: + push: + branches: + - master + - main + pull_request: + branches: + - master + - main + +name: test-coverage + +jobs: + test-coverage: + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-r@master + + - uses: r-lib/actions/setup-pandoc@master + + - name: Query dependencies + run: | + install.packages('remotes') + saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) + writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") + shell: Rscript {0} + + - name: Cache R packages + uses: actions/cache@v1 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} + restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- + + - name: Install dependencies + run: | + install.packages(c("remotes")) + remotes::install_deps(dependencies = TRUE) + remotes::install_cran("covr") + shell: Rscript {0} + + - name: Test coverage + run: covr::codecov() + shell: Rscript {0} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9f30333..0000000 --- a/.travis.yml +++ /dev/null @@ -1,31 +0,0 @@ -############################################################################## -### Autogenerated with R package kwb.pkgbuild v0.1.1 -### (installed from 'Github (kwb-r/kwb.pkgbuild@0ac3694)' source code on 2019-09-06) -### by calling the function kwb.pkgbuild::use_travis() -### (file created at: 2019-09-09 10:34:55) -############################################################################## - - -language: r -sudo: required -cache: packages -r_packages: -- remotes -- covr -matrix: - include: - - r: devel - - r: release - after_success: - - Rscript -e 'covr::codecov()' - before_deploy: - - Rscript -e 'remotes::install_cran("pkgdown")' - deploy: - provider: script - script: Rscript -e 'pkgdown::deploy_site_github(verbose = TRUE)' - skip_cleanup: 'true' - on: - branch: - - master - - dev - - r: oldrel diff --git a/DESCRIPTION b/DESCRIPTION index 74c7e38..1667770 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: kwb.endnote Title: Helper Functions for Analysing KWB Endnote Library (Exported as .xml) -Version: 0.1.0 +Version: 0.2.0 Authors@R: c(person(given = "Michael", family = "Rustler", @@ -13,6 +13,8 @@ Authors@R: role = "ctb", email = "hauke.sonnenberg@kompetenz-wasser.de", comment = c(ORCID = "0000-0001-9134-2871")), + person(given = "FAKIN", + role = "fnd"), person(given = "Kompetenzzentrum Wasser Berlin gGmbH (KWB)", role = "cph")) Description: Helper Functions For Analysing KWB Endnote Library @@ -35,7 +37,8 @@ Imports: tibble, tidyr, wordcloud2, - xml2 + xml2, + plotly Suggests: covr, knitr, @@ -46,5 +49,5 @@ Remotes: github::kwb-r/kwb.utils Encoding: UTF-8 LazyData: true -RoxygenNote: 6.1.1 +RoxygenNote: 7.1.1 VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 308aaac..d876a88 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,6 @@ # kwb.endnote 0.0.0.9000 +* Move to GitHub Actions as CI (from Travis/Appveyor) * Added a `NEWS.md` file to track changes to the package. * see https://style.tidyverse.org/news.html for writing a good `NEWS.md` diff --git a/R/check_for_differences.R b/R/check_for_differences.R index 6fb860c..ffc2561 100644 --- a/R/check_for_differences.R +++ b/R/check_for_differences.R @@ -17,8 +17,8 @@ #' ### Check differences between two different versions of "KWB_documents.xml" #' ############################################################################ #' -#' old_xml <- extdata_file("2019-01-14_KWB_documents.xml") -#' new_xml <- extdata_file("2019-07-09_KWB_documents.xml") +#' old_xml <- extdata_file("2020-05-25_KWB-documents.xml") +#' new_xml <- extdata_file("2020-06-17_KWB-documents.xml") #' old_list <- kwb.endnote::create_endnote_list(old_xml) #' new_list <- kwb.endnote::create_endnote_list(new_xml) #' old_df <- kwb.endnote::create_references_df(old_list) diff --git a/R/create_references_df_from_list.R b/R/create_references_df_from_list.R index b78fa35..604c7a0 100644 --- a/R/create_references_df_from_list.R +++ b/R/create_references_df_from_list.R @@ -1,3 +1,17 @@ +# colbind: Wrapper around dplyr::bind_cols(). Makes sure that no rows get lost +# if the data frame to add has no rows. +colbind <- function(df, df_2) { + if (nrow(df_2) == 0L) { + # Return the original data frame if the data frame to add has no columns + if (ncol(df_2) == 0L) { + return(df) + } + # Give the data frame to add one empty row (full of NA) + df_2 <- df_2[1L, ] + } + dplyr::bind_cols(df, df_2) +} + #' @noRd #' @keywords internal null_to_na <- function(x, na_fill = NA_character_) { @@ -154,6 +168,11 @@ record_list_to_df <- function(record_list, collapse = FALSE) { collapse_val = "", element = 1) } + + replace_newline_with_semicolon <- function(text) { + gsub("\r", ", ", text) + } + get_titles_style <- function(path) get_style(c("titles", path)) get_period_style <- function(path) get_style(c("periodical", path)) get_dates_style <- function(path) get_style(c("dates", path)) @@ -164,11 +183,11 @@ record_list_to_df <- function(record_list, collapse = FALSE) { ref_type_name = attr(get_record_entry("ref-type"), which = "name"), abstract = get_abstract(record_list, collapse) ) %>% - dplyr::bind_cols(get_keywords(record_list, collapse = collapse)) %>% - dplyr::bind_cols(get_authors(record_list, collapse = collapse)) %>% - dplyr::bind_cols(get_secondary_authors(record_list, collapse = collapse)) %>% - dplyr::bind_cols(get_tertiary_authors(record_list, collapse = collapse)) %>% - dplyr::bind_cols( + colbind(get_keywords(record_list, collapse = collapse)) %>% + colbind(get_authors(record_list, collapse = collapse)) %>% + colbind(get_secondary_authors(record_list, collapse = collapse)) %>% + colbind(get_tertiary_authors(record_list, collapse = collapse)) %>% + colbind( tibble::tibble( database_name = get_record_entry("database")[[1]], database_path = attr(get_record_entry("database"), which = "path"), @@ -191,13 +210,13 @@ record_list_to_df <- function(record_list, collapse = FALSE) { authaddress = get_style("auth-address"), edition = get_style("edition"), worktype = get_style("work-type"), - label = get_style("label"), + label = replace_newline_with_semicolon(get_style("label")), isbn = get_style("isbn"), - language = get_style("language") + language = replace_newline_with_semicolon(get_style("language")) ) ) %>% - dplyr::bind_cols(get_pdfurls(record_list, collapse = collapse)) %>% - dplyr::bind_cols(tibble::tibble( + colbind(get_pdfurls(record_list, collapse = collapse)) %>% + colbind(tibble::tibble( urls_related = get_style(c("urls", "related-urls", "url")), electronic_resource_num = get_style("electronic-resource-num"), custom1 = get_style("custom1"), diff --git a/R/helper.R b/R/helper.R index f464845..5275e72 100644 --- a/R/helper.R +++ b/R/helper.R @@ -20,7 +20,7 @@ colname_i <- function(name, i) { #' @export #' default_xml <- function() { - extdata_file("2019-07-09_KWB_documents.xml") + extdata_file("2020-06-17_KWB-documents.xml") } # first_of_element ------------------------------------------------------------- diff --git a/R/utils-pipe.R b/R/utils-pipe.R index fb8c818..e79f3d8 100644 --- a/R/utils-pipe.R +++ b/R/utils-pipe.R @@ -1,6 +1,6 @@ #' Pipe operator #' -#' See \code{magrittr::\link[magrittr]{\%>\%}} for details. +#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. #' #' @name %>% #' @rdname pipe diff --git a/README.md b/README.md index fac1793..f4465b6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Appveyor build Status](https://ci.appveyor.com/api/projects/status/jp6vfegit5c6hhwl?svg=true)](https://ci.appveyor.com/project/KWB-R/kwb-endnote) -[![Travis build Status](https://travis-ci.org/KWB-R/kwb.endnote.svg?branch=master)](https://travis-ci.org/KWB-R/kwb.endnote) +[![R-CMD-check](https://github.com/KWB-R/kwb.endnote/workflows/R-CMD-check/badge.svg)](https://github.com/KWB-R/kwb.endnote/actions?query=workflow%3AR-CMD-check) +[![pkgdown](https://github.com/KWB-R/kwb.endnote/workflows/pkgdown/badge.svg)](https://github.com/KWB-R/kwb.endnote/actions?query=workflow%3Apkgdown) [![codecov](https://codecov.io/github/KWB-R/kwb.endnote/branch/master/graphs/badge.svg)](https://codecov.io/github/KWB-R/kwb.endnote) [![Project Status](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/kwb.endnote)]() diff --git a/_pkgdown.yml b/_pkgdown.yml index 8f99bae..d9e3e9c 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -3,6 +3,10 @@ authors: href: https://mrustl.de Hauke Sonnenberg: href: https://github.com/hsonne + FAKIN: + href: https://www.kompetenz-wasser.de/en/project/fakin/ + html: Kompetenzzentrum Wasser Berlin gGmbH (KWB): href: https://www.kompetenz-wasser.de html: KWB-documents_20191205.enlEndNote1134113447<style face="normal" font="default" size="100%">Unterstützung der Kanalsanierungsplanung durch statistische und datengetriebene Alterungsmodelle</style>KWB-documents_20191205.enlEndNote1128112847<style face="normal" font="default" size="100%">Organische Spurenstoffe im Regenwasserabfluss Berlins – Jahresfrachten und Vergleich mit Abwassereinträgen</style>internal-pdf://2521957492/WIM 249 - Wicke et al.pdfKWB-documents_20191205.enlEndNote34434447<style face="normal" font="default" size="100%">Development of a planning instrument for CSO management - Cooperation of research, water utility and public water authority in the city of Berlin (presented by Kai Schroeder)</style>internal-pdf://3208930525/Schroeder-2010-344.pdfKWB-documents_20191205.enlEndNote37337347<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>internal-pdf://0507638504/Schroeder-2010-373.pdfKWB-documents_20191205.enlEndNote60160147<style face="normal" font="default" size="100%">Comparison of environmental impacts of tertiary filtration technologies for advanced phosphorus removal via Life Cycle Assessment</style>internal-pdf://2999488642/Remy-2013-601.pdfinternal-pdf://2658926442/Remy-2013-6012.pdfKWB-documents_20191205.enlEndNote46346347<style face="normal" font="default" size="100%">Sustainable sewage treatment plant of the future: Identifying global warming and energy optimization potentials with Life Cycle Assessment</style>internal-pdf://2789429503/Remy-2011-463.pdfinternal-pdf://2440450365/Remy-2011-4632.pdfKWB-documents_20191205.enlEndNote1133113327<style face="normal" font="default" size="100%">Assessment of baseline conditions for all case studies. Deliverable D.1.1.</style>internal-pdf://4179994627/D1.1-Assessment-of-baseline-conditions-for-all.pdfKWB-documents_20191205.enlEndNote1132113247<style face="normal" font="default" size="100%">Implementation of a fluorescence (FDOM) online measurement at an ozonation plant used for micropollutant elimination – operational aspects and comparison to UVA254, Ozone and Advanced Oxidation. Leading-edge science and technologies</style>internal-pdf://2411923777/2019_05_10_UsageOfFluorescence_IOA_draft.pdfKWB-documents_20191205.enlEndNote1131113147<style face="normal" font="default" size="100%">Einsatz einer Fluoreszenz-Onlinemessung zur Überwachung einer Ozonung zur Spurenstoffelimination - Betriebserfahrungen und Vergleich zum SAK254</style>internal-pdf://0573880737/2019_AachenerAbwassertage_Langfassung_mitDank_.pdfKWB-documents_20191205.enlEndNote1130113027<style face="normal" font="default" size="100%">Combining constructed wetlands and engineered treatment for water reuse, report WP3, Deliverable D3.1.</style>internal-pdf://2678269638/D3_1 Combining CW and engineered treatment for.pdfKWB-documents_20191205.enlEndNote1129112947<style face="normal" font="default" size="100%">Mikroschadstoffe im Regenwasser – Konzentrationen, Frachten und Vergleich mit Emissionen im Schmutzwasser</style>internal-pdf://0640384910/Wicke_31_Abw_Koll_Hamburg.pdfKWB-documents_20191205.enlEndNote1127112747<style face="normal" font="default" size="100%">Model-based prediction of pipe age for filling gaps in sewer asset data</style>internal-pdf://1489257713/SPN9_Riechel_et_al_abstract_rev.pdfKWB-documents_20191205.enlEndNote44944947<style face="normal" font="default" size="100%">Analysis of nanoparticles in treated domestic wastewater for improved understanding and prevention of membrane fouling</style>internal-pdf://1708606874/Schulz-2011-449.pdfinternal-pdf://3809887704/Schulz-2011-4492.pdfKWB-documents_20191205.enlEndNote97397317<style face="normal" font="default" size="100%">Hydrogeochemical and isotopic insights into mineralization processes and groundwater recharge from an intermittent monsoon channel to an overexploited aquifer in eastern Haryana (India)</style>KWB-documents_20191205.enlEndNote42642617<style face="normal" font="default" size="100%">Competitiveness of invasive and native cyanobacteria from temperate freshwaters under various light and temperature conditions</style>
internal-pdf://3552976117/Mehnert-2010-426.pdf
KWB-documents_20191205.enlEndNote49549517<style face="normal" font="default" size="100%">Operation of gravity-driven ultrafiltration prototype for decentralised water supply</style>
internal-pdf://1531126525/Boulestreau-2012-495.pdf
KWB-documents_20191205.enlEndNote828217<style face="normal" font="default" size="100%">Long term comparison of trace organics removal performances between conventional and membrane activated sludge processes</style>
internal-pdf://2135328711/Zühlke-2006-82.pdf
KWB-documents_20191205.enlEndNote71171117<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen</style>
internal-pdf://2102024956/Barjenbruch-2013-711.pdf
KWB-documents_20191205.enlEndNote1031103110<style face="normal" font="default" size="100%">Eignung von saisonalen Temperatursignalen zur Überwachung von Grundwasserfließzeiten bei der Uferfiltration und Grundwasseranreicherung in Berlin</style>internal-pdf://0638393930/Schwarzmüller-2017-1031.pdfKWB-documents_20191205.enlEndNote26826847<style face="normal" font="default" size="100%">Evidences of unknown anaerobically cell intern stored carbon source used for enhanced post-denitrification</style>internal-pdf://1448771267/Lesjean-2008-268.pdfKWB-documents_20191205.enlEndNote46846832<style face="normal" font="default" size="11">Optimization of flocculation for advanced phosphorus removal via microsieve filtration </style>internal-pdf://0369644274/Langer-2011-468.pdfKWB-documents_20191205.enlEndNote3133136<style face="normal" font="default" size="100%">Climate Change and Water - Technical Paper of the Intergovernmental Panel on Climate Change</style>internal-pdf://0789762170/Bates-2008-313.pdfKWB-documents_20191205.enlEndNote99299210<style face="normal" font="default" size="100%">Temperature measurements during Managed Aquifer Recharge for safeguarding subsurface travel times</style>internal-pdf://1076870471/Sprenger-2016-992.pdfKWB-documents_20191205.enlEndNote33633617<style face="normal" font="default" size="100%">Retention and Degradation of the cyanobacterial Toxin Cylindrospermopsin in Sediments - The Role of Sediment preconditioning and DOM composition</style>
internal-pdf://2726850704/Klitzke-2010-336.pdf
KWB-documents_20191205.enlEndNote7727<style face="normal" font="default" size="100%">Threshold Values for Oligotrophication of Lake Tegel and Schlachtensee, Berlin - Analysis of System Components and Causalities</style>internal-pdf://3378620233/Chorus-2004-7.pdfKWB-documents_20191205.enlEndNote55955917<style face="normal" font="default" size="100%">Transport of primidone, carbamazepine, and sulfamethoxazole in thermally treated sediments—laboratory column experiments</style>
internal-pdf://0345448979/Müller-2013-559.pdf
KWB-documents_20191205.enlEndNote97497432<style face="normal" font="default" size="100%">Indirect Potable Reuse: A Risk Assessment for Vendée Eau</style>internal-pdf://3354434734/Pacheco Fernández-2016-974.pdfKWB-documents_20191205.enlEndNote41941947<style face="normal" font="default" size="100%">A European initiative to define current research needs in managed aquifer recharge</style>internal-pdf://3197460149/Grützmacher-2010-419.pdfKWB-documents_20191205.enlEndNote69169127<style face="normal" font="default" size="100%">Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5: "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://2033853606/Schwarzmüller-2014-691.pdfinternal-pdf://3261290844/Schwarzmüller-2014-6912.pdfKWB-documents_20191205.enlEndNote40740727<style face="normal" font="default" size="100%">Preliminary report on data of all inorganic substances and physicochemical parameters listed in the Indian and German drinking water Standards from surface water and groundwater at the 3(+1) field sites</style>internal-pdf://4099223169/Pekdeger-2008-407.pdfKWB-documents_20191205.enlEndNote40440427<style face="normal" font="default" size="100%">Results on the background work and data integration of MAR systems for an Integrated Water Resource Management</style>internal-pdf://3970590197/Lorenzen-2007-404.pdfKWB-documents_20191205.enlEndNote2227<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel (Berlin-Brandenburg)</style>internal-pdf://2772938330/Kranz-2003-2.pdfKWB-documents_20191205.enlEndNote454527<style face="normal" font="default" size="100%">SCST, Technical interim report 2005</style>internal-pdf://0020946937/Pawlowski-2005-45.pdfKWB-documents_20191205.enlEndNote1087108732<style face="normal" font="default" size="100%">Energetic and economic evaluation of different scenarios for a biogas upgrading and power-to-gas technology at a wastewater treatment plant in Berlin</style>
internal-pdf://3050300144/Habibi-2018-1087.pdf
KWB-documents_20191205.enlEndNote1088108827<style face="normal" font="default" size="100%">5 Training Courses in the 5 regions for utility partners and stakeholders on pilotactivities</style>
internal-pdf://4282442590/Müller-2018-1088.pdf
KWB-documents_20191205.enlEndNote11411447<style face="normal" font="default" size="100%">Occurrence and Fate of Pharmaceuticals During Bank Filtration</style>internal-pdf://3392450310/Heberer-2003-114.PDFKWB-documents_20191205.enlEndNote26926932<style face="normal" font="default" size="100%">Nutzung zellinterner Speicherstoffe als Kohlenstoffquelle bei der nachgeschalteten Denitrifikation ohne Zugabe einer externen Kohlenstoffquelle</style>internal-pdf://2949152201/Nicke-2005-269.pdfKWB-documents_20191205.enlEndNote68068047<style face="normal" font="default" size="100%">Development of Ammonium Concentrations at a Riverbank Filtration Site in Delhi (India) – Water-Sediment Interactions from Infiltration to Production</style>internal-pdf://3103375448/FH DGG_2014_Groeschke.docxinternal-pdf://2081687054/Gröschke-2014-680.pdfKWB-documents_20191205.enlEndNote808017<style face="normal" font="default" size="100%">Enhanced post-denitrification without addition of an external carbon source in membrane bioreactors</style>
internal-pdf://2411956308/Vocks-2005-80.pdf
KWB-documents_20191205.enlEndNote22722747<style face="normal" font="default" size="11">Labor- und Praxistest von Onlinemesstechnik</style>KWB-documents_20191205.enlEndNote22622647<style face="normal" font="default" size="11">Onlinemesstechnik im Labor- und Praxistest</style>internal-pdf://2401471624/Barjenbruch-2009-226.pdfKWB-documents_20191205.enlEndNote535327<style face="normal" font="default" size="100%">Progress Report 2004 - Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://2267391021/Vocks-2004-53.pdfKWB-documents_20191205.enlEndNote60460447<style face="normal" font="default" size="100%">HTC-Check: Energiebilanz und Carbon Footprint von Referenztechnologien und HTC-Prozess bei der Klärschlammentsorgung</style>internal-pdf://3059538448/Remy-2013-604.pdfKWB-documents_20191205.enlEndNote1044104447<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://2808576077/Wicke-2017-1044.pdfKWB-documents_20191205.enlEndNote78978947<style face="normal" font="default" size="100%">Is Further Nitrogen Reduction in Surface Waters Economically Feasible?</style>internal-pdf://2858265545/Mutz-2015-789.pdfinternal-pdf://4240354405/Mutz-2015-7892.pdfKWB-documents_20191205.enlEndNote15115147<style face="normal" font="default" size="100%">Erfassung von jodorganischen Röntgenkontrastmitteln</style>KWB-documents_20191205.enlEndNote77677627<style face="normal" font="default" size="100%">Abschlussbericht Projekt Abluft „Vorversuche zur Abluftbehandlung auf der Kläranlage Schönerlinde“</style>internal-pdf://2497735255/Schubert-2014-776.pdfKWB-documents_20191205.enlEndNote23823847<style face="normal" font="default" size="11">State of Implementation of RTC in Berlin, Germany</style>internal-pdf://3317729629/Pawlowsky-Reusing-2007-238.pdfKWB-documents_20191205.enlEndNote73073047<style face="normal" font="default" size="100%">Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen</style>KWB-documents_20191205.enlEndNote62762727<style face="normal" font="default" size="100%">Life Cycle Assessment and Life Cycle Costing of tertiary treatment schemes</style>internal-pdf://2260400962/Remy-2013-627.pdfKWB-documents_20191205.enlEndNote48448447<style face="normal" font="default" size="100%">Energetischer Vergleich der erweiterten Oxidationsverfahren</style>internal-pdf://0288048787/Remy-2011-484.pdfKWB-documents_20191205.enlEndNote60760747<style face="normal" font="default" size="100%">Ökobilanzen als Entscheidungshilfen bei der Planung von Klärprozessen</style>internal-pdf://3313186028/Remy-2013-607.pdfKWB-documents_20191205.enlEndNote525227<style face="normal" font="default" size="100%">Final Report 2005 Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://3589774885/Vocks-2005-52.pdfKWB-documents_20191205.enlEndNote67267227<style face="normal" font="default" size="100%">Stickstofflimitation in Binnengewässern - Teilprojekt: Sensitivitätsanalyse zur Modellierung des Stickstoffumsatzes in Fließgewässern und Life Cycle Assessment von Reinigungsverfahren</style>internal-pdf://0355183787/Rouault-2014-672.pdfKWB-documents_20191205.enlEndNote46646632<style face="normal" font="default" size="100%">Determination of the carbonate scaling potential of drinking water abstraction wells from hydrochemical data using hydro-geochemical modelling software PhreeqC</style>internal-pdf://3080515564/Josse-2011-466.pdfKWB-documents_20191205.enlEndNote30230232<style face="normal" font="default" size="100%">Adaption eines neuartigen MBR-Prozesses auf Monosubstrat zur Untersuchung des mikrobiologischen Stoffwechsels mittels in-vivo C-MNR</style>internal-pdf://3041097431/Bost-2009-302.pdfinternal-pdf://3093919509/Bost-2009-3022.pdfKWB-documents_20191205.enlEndNote18418447<style face="normal" font="default" size="11">Development of a monitoring concept for combined sewer overflows - testing of modern online-sensors</style>internal-pdf://0724661288/Rettig-2009-184.pdfKWB-documents_20191205.enlEndNote62462427<style face="normal" font="default" size="100%">Guidelines for the use of online fouling monitoring in tertiary treatment</style>internal-pdf://2470877728/Boulestreau-2013-624.pdfKWB-documents_20191205.enlEndNote62562527<style face="normal" font="default" size="100%">Role of organic substances in tertiary treatment via oxidation and membrane filtration</style>internal-pdf://1902160298/Godehardt-2013-625.pdfKWB-documents_20191205.enlEndNote62662627<style face="normal" font="default" size="100%">Feasibility of the microsieve technology for advanced phosphorus removal</style>internal-pdf://3507393793/Langer-2013-626.pdfKWB-documents_20191205.enlEndNote62862827<style face="normal" font="default" size="100%">Abschlussbericht OXERAM 2</style>internal-pdf://3087355193/Miehe-2013-628.pdfKWB-documents_20191205.enlEndNote62362327<style face="normal" font="default" size="100%">Tertiary treatment combining ozonation and membrane filtration – Pilot scale investigations</style>internal-pdf://2766862141/Stüber-2013-623.pdfKWB-documents_20191205.enlEndNote75375317<style face="normal" font="default" size="100%">Challenges and opportunities of German-Chinese cooperation in water science and technology</style>
internal-pdf://2120482927/Chen-2015-753.pdf
KWB-documents_20191205.enlEndNote797917<style face="normal" font="default" size="100%">Impact of colloidal and soluble organic material on membrane performance in membrane bioreactors for municipal waste water treatment</style>
internal-pdf://4178584535/Rosenberger-2006-79.pdf
KWB-documents_20191205.enlEndNote21121147<style face="normal" font="default" size="100%">Bewertung von Strategien der Abflusssteuerung mittels Kanalnetzsimulation</style>internal-pdf://2268066614/Schroeder-2004-211.pdfKWB-documents_20191205.enlEndNote15415417<style face="normal" font="default" size="100%">Medikamente verlangen dem Klärwerk Höchstleistungen ab</style>KWB-documents_20191205.enlEndNote1085108527<style face="normal" font="default" size="100%">Reasons/conditions leading to the choice of the 5 pilots</style>
internal-pdf://1171120802/Christian-2018-1085.pdf
KWB-documents_20191205.enlEndNote1017101732<style face="normal" font="default" size="100%">Untersuchungen der Leistungsfähigkeit von bepflanzten Vertikalbodenfiltern zur Elimination von Spurenstoffen nach der Ozonung im Vergleich zu Sandfiltern</style>internal-pdf://0320872840/Weidlich-2017-1017.pdfKWB-documents_20191205.enlEndNote71071047<style face="normal" font="default" size="100%">CARISMO project: From wastewater treatment plant to power plant</style>internal-pdf://1443619152/Lesjean-2014-710.pdfKWB-documents_20191205.enlEndNote76076047<style face="normal" font="default" size="100%">Energiepositive Klärwerke: Innovationsprojekte am Kompetenzzentrum Wasser Berlin</style>internal-pdf://3192183244/Lesjean-2015-760.pdfKWB-documents_20191205.enlEndNote98898810<style face="normal" font="default" size="100%">Phosphorrecycling – Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote22822847<style face="normal" font="default" size="11">Vergleich von Online-Sensoren</style>internal-pdf://4152134886/Barjenbruch-2008-228.pdfKWB-documents_20191205.enlEndNote59759747<style face="normal" font="default" size="100%">Übersicht der Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1243820368/Remy-2013-597.pdfKWB-documents_20191205.enlEndNote98598510<style face="normal" font="default" size="100%">34. Bochumer Workshop: Kläranlage der Zukunft - Phosphorrecycling: Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote62962927<style face="normal" font="default" size="100%">Hydrothermal Carbonisation (HTC): Theoretical evaluation of selected schemes for municipal sludge treatment</style>internal-pdf://0521169592/Remy-2013-629.pdfKWB-documents_20191205.enlEndNote48248247<style face="normal" font="default" size="100%">Life Cycle Assessment: Quantifying environmental impacts of urban water management</style>internal-pdf://2176929298/Remy-2010-482.pdfKWB-documents_20191205.enlEndNote1067106717<style face="normal" font="default" size="100%">Sixty years of global progress in managed aquifer recharge</style>
internal-pdf://0616163992/Dillon-2018-1067.pdf
KWB-documents_20191205.enlEndNote52052047<style face="normal" font="default" size="11">Agricultural reuse of WWTP effluent and sludge: optimization + environmental footprint via LCA</style>internal-pdf://4050536848/Remy-2013-520.pdfKWB-documents_20191205.enlEndNote70370347<style face="normal" font="default" size="100%">Impulses on resource and energy efficient concepts for municipal wastewater treatment plants: the ‘resource / energy’ nexus</style>internal-pdf://2911339867/Lesjean-2014-703.pdfKWB-documents_20191205.enlEndNote1107110747<style face="normal" font="default" size="100%">Neues zur Auswahl geeigneter blau-grau-grüner Infrastrukturen für das Quartier</style>internal-pdf://3358193801/Matzinger-2019-1107.pdfKWB-documents_20191205.enlEndNote1106110647<style face="normal" font="default" size="100%">Integration eines partizipativen Ansatzes in den Planungsprozess</style>internal-pdf://2739131427/Nenz-2019-1106.pdfKWB-documents_20191205.enlEndNote93993947<style face="normal" font="default" size="100%">EU project P-REX (2012-2015) Phosphorus recovery from municipal wastewater: from prototype to market, Work area 4: Life Cycle Assessment</style>internal-pdf://0553223698/Mutz-2014-939.pdfinternal-pdf://3444541164/Mutz-2014-9392.pdfKWB-documents_20191205.enlEndNote94094047<style face="normal" font="default" size="100%">EU project DEMEAU (2012-2015) Demonstration of promising technologies to address emerging pollutants in water and wastewater, Work area 5: Fostering the uptake of novel technologies in the water sector</style>internal-pdf://2377287529/Mutz-2014-940.pdfinternal-pdf://3584919541/Mutz-2014-9402.pdfKWB-documents_20191205.enlEndNote30330332<style face="normal" font="default" size="100%">Wirtschaftliche Betrachtung semizentraler MBR-Anlagen in Abhängigkeit von den Reinigungszielen.</style>internal-pdf://2189104159/Schallehn-2009-303.pdfinternal-pdf://3841135709/Schallehn-2009-3032.pdfKWB-documents_20191205.enlEndNote60060047<style face="normal" font="default" size="100%">Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1936233763/Remy-2013-600.pdfKWB-documents_20191205.enlEndNote61161117<style face="normal" font="default" size="100%">The influence of local calibration on the quality of UV-VIS spectrometer measurements in urban stormwater monitoring</style>
internal-pdf://1077422315/Caradot-2013-611.pdfinternal-pdf://1958685605/Caradot-2013-6112.pdf
KWB-documents_20191205.enlEndNote61261217<style face="normal" font="default" size="100%">The evaluation of rainfall influence on CSO characteristics: the Berlin case study</style>
internal-pdf://0292106268/Sandoval-2013-612.pdfinternal-pdf://3118847682/Sandoval-2013-6122.pdf
KWB-documents_20191205.enlEndNote91991917<style face="normal" font="default" size="100%">How to dose powdered activated carbon in deep bed filtration for efficient micropollutant removal</style>
KWB-documents_20191205.enlEndNote19519547<style face="normal" font="default" size="11">Diffuse pollution and potential mitigation strategies - two case studies within the Aquisafe Project from agriculturally dominated Brittany (France)</style>internal-pdf://4081758504/Matzinger-2008-195.pdfKWB-documents_20191205.enlEndNote98498410<style face="normal" font="default" size="100%">Phosphorrückgewinnung aus Klärschlamm (Praxisbeispiel)</style>KWB-documents_20191205.enlEndNote98698610<style face="normal" font="default" size="100%">Klärschlamm: Phosphorstrategie infolge neuer rechtlicher Regelungen</style>KWB-documents_20191205.enlEndNote59959947<style face="normal" font="default" size="100%">Neue Verfahrenskombinationen der weitergehenden Abwasserbehandlung – Darstellung von Aufwand und Nutzen mit Methoden der Ökobilanzierung</style>internal-pdf://1830837210/Remy-2013-599.pdfKWB-documents_20191205.enlEndNote393927<style face="normal" font="default" size="100%">Progress Report No. 01 - Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater (SCST)</style>internal-pdf://3135153915/Luck-2004-39.pdfKWB-documents_20191205.enlEndNote414127<style face="normal" font="default" size="100%">Machbarkeitsstudie für die Einrichtung eines Informations- und Testzentrums Messtechnik (ITZM) im Wasser- und Abwasserbereich</style>internal-pdf://0860464735/Lühr-2004-41.pdfKWB-documents_20191205.enlEndNote11711717<style face="normal" font="default" size="100%">The impact of variably saturated conditions on hydrogeochemical changes during artificial recharge of groundwater</style>
internal-pdf://3990594449/Greskowiak-2005-117.pdf
KWB-documents_20191205.enlEndNote23723747<style face="normal" font="default" size="11">Räumlich und zeitlich hochaufgelöste Niederschlagsanalyse in Berlin als Randbedingung für die Abwasserförderung</style>KWB-documents_20191205.enlEndNote42942917<style face="normal" font="default" size="100%">Removal kinetics of organic compounds and sum parameters under field conditions for managed aquifer recharge</style>
internal-pdf://1483742312/Wiese-2011-429.pdf
KWB-documents_20191205.enlEndNote41741747<style face="normal" font="default" size="100%">Decision support system for the multi-objective optimization of bank filtration systems</style>internal-pdf://1544641589/Rustler-2010-417.pdfinternal-pdf://2607111284/Rustler-2010-4173.pdfinternal-pdf://2103860402/Rustler-2010-4171.pdfKWB-documents_20191205.enlEndNote11811817<style face="normal" font="default" size="100%">Removal of bulk dissolved organic carbon (DOC) and trace organic compounds by bank filtration and artificial recharge</style>
internal-pdf://2430295889/Grünheid-2005-118.pdf
KWB-documents_20191205.enlEndNote92092032<style face="normal" font="default" size="100%">Simulating Different Strategies of Storage Capacity Increase to Reduce Combined Sewer Overflows and Flooding</style>internal-pdf://2777573414/Alem-2015-920.pdfKWB-documents_20191205.enlEndNote71571532<style face="normal" font="default" size="100%">Modelling of Dynamic and Static Adaptation Measures for Combined Sewer System Optimisation: Case-Study of Wilmersdorf Catchment, Berlin</style>internal-pdf://0949679218/Salvan-2014-715.pdfKWB-documents_20191205.enlEndNote60860847<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung in Großklärwerken – eine Ökobilanz</style>internal-pdf://1243087713/Remy-2013-608.pdfKWB-documents_20191205.enlEndNote60660647<style face="normal" font="default" size="100%">Theoretische Energie- und CO2-Bilanz von Referenzverfahren und HTC-Prozess bei der Entsorgung kommunaler Klärschlämme</style>internal-pdf://2107687682/Remy-2013-606.pdfKWB-documents_20191205.enlEndNote48348347<style face="normal" font="default" size="100%">Agricultural reuse of WWTP effluent and sludge: Results of CoDiGreen</style>internal-pdf://3637266894/Remy-2012-483.pdfKWB-documents_20191205.enlEndNote8827<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor (ENREM) - Progress report 1- LIFE 04 ENV/D/058</style>internal-pdf://3016138838/Luck-2005-8.pdfKWB-documents_20191205.enlEndNote32832847<style face="normal" font="default" size="100%">UVA as control parameter for the effective ozonation of organic poolutants in secondary effluent</style>internal-pdf://2894623223/Bahr-2006-328.pdfKWB-documents_20191205.enlEndNote44844832<style face="normal" font="default" size="100%">Ökobilanz und wirtschaftlicher Vergleich verschiedener Phosphoreliminationsverfahren in Kläranlagen</style>internal-pdf://2916863077/Meinel-2011-448.pdfKWB-documents_20191205.enlEndNote46046032<style face="normal" font="default" size="11">Risk assessment of the wastewater-reuse strategy of Braunschweig concerning impacts on the environment and human health</style>internal-pdf://3582480467/Seis-2011-460.pdfKWB-documents_20191205.enlEndNote20820847<style face="normal" font="default" size="11">Pharmaceutical residues in the urban water cycle - An overview of the state of the art</style>internal-pdf://3311432573/Schröder-2009-208.pdfKWB-documents_20191205.enlEndNote18818847<style face="normal" font="default" size="100%">Brunnenmanagement – ein Forschungsvorhaben zur Optimierung des Betriebs von Brunnenanlagen</style>internal-pdf://0592869250/Wittstock-2009-188.pdfKWB-documents_20191205.enlEndNote1001100117<style face="normal" font="default" size="100%">Phosphorus recovery from municipal and fertilizer wastewater: China's potential and perspective</style>
KWB-documents_20191205.enlEndNote1066106627<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser</style>internal-pdf://0859022840/Schwarzmüller-2018-1066.pdfKWB-documents_20191205.enlEndNote1065106527<style face="normal" font="default" size="100%">Entwicklung einer Monitorstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin Tiefwerder und - Spandau - Zusatzbericht zur Bestimmung der thermischen Retardation. Development of a strategy for continuous monitoring of flow times from aquifer recharge and bank filtration to drinking water wells at Berlin Tiefwerder and Spandau - additional report for the determination of thermal retardation</style>internal-pdf://2824906169/Sprenger-2018-1065.pdfKWB-documents_20191205.enlEndNote1092109227<style face="normal" font="default" size="100%">D 1.3: Compendium of best practices for advanced primary treatment</style>internal-pdf://4112669454/Schubert-2018-1092.pdfKWB-documents_20191205.enlEndNote1091109127<style face="normal" font="default" size="100%">D2.1 Advanced Control strategy for Nitrogen Removal</style>internal-pdf://3925564112/Schubert-2018-1091.pdfKWB-documents_20191205.enlEndNote1093109327<style face="normal" font="default" size="100%">D 1.2: Design and performance of advanced primary treatment with microscreen</style>internal-pdf://0799365965/Olsson-2018-1093.pdfKWB-documents_20191205.enlEndNote1089108927<style face="normal" font="default" size="100%">5 REPORTS ON THE LEGISLATIVE/ADMINISTRATIVE FRAMEWORKS IN THE INVOLVED REGION – STRUCTURE AND QUESTIONNAIRE</style>
internal-pdf://1850729357/Müller-2018-1089.pdf
KWB-documents_20191205.enlEndNote17317327<style face="normal" font="default" size="100%">Kausale Zusammenhänge zwischen den Signalen einer optischen Multiparametersonde und Biofilmwachstum in wasserführenden Rohrnetzen - Erste Untersuchungen</style>internal-pdf://3521971630/Mittenzwey-2006-173.pdfKWB-documents_20191205.enlEndNote1036103627<style face="normal" font="default" size="100%">Deliverable D3.2: Show case of the environmental benefits and risk assessment of reuse schemes</style>internal-pdf://2421269347/Kraus-2016-1036.pdfKWB-documents_20191205.enlEndNote54454432<style face="normal" font="default" size="100%">Evaluation of different cleaning methods on the fouling rate of organic membranes. </style>internal-pdf://3331081080/Hattke-2012-544.pdfKWB-documents_20191205.enlEndNote49649627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report </style>internal-pdf://1420911657/Staub-2012-496.pdfKWB-documents_20191205.enlEndNote1126112627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report - confidential</style>internal-pdf://1454680212/Staub-2012-4962.pdfKWB-documents_20191205.enlEndNote25925947<style face="normal" font="default" size="100%">Filtration characterisation methods in MBR systems: a practical comparison</style>internal-pdf://0914321770/De la Torre-2008-259.pdfinternal-pdf://3298521513/De la Torre-2008-2592.pdfKWB-documents_20191205.enlEndNote61361347<style face="normal" font="default" size="100%">Optimal sampling strategy for local calibration of UV-VIS spectrometers in urban drainage monitoring</style>internal-pdf://2875218753/N-2013-613.pdfKWB-documents_20191205.enlEndNote44544547<style face="normal" font="default" size="100%">Application of online water quality sensors for integrated CSO impact assessment in Berlin (Gemany)</style>internal-pdf://2238797763/Caradot-2011-445.pdfKWB-documents_20191205.enlEndNote61461447<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies – state-of-the-art and perspectives</style>internal-pdf://0698781026/Caradot-2013-614.pdfKWB-documents_20191205.enlEndNote95795747<style face="normal" font="default" size="100%">The benefits of deterioration modelling to support sewer asset management strategies</style>internal-pdf://3874975480/Caradot-2016-957.pdfKWB-documents_20191205.enlEndNote83583547<style face="normal" font="default" size="100%">The influence of data availability on the performance of sewer deterioration modelling</style>internal-pdf://1964841889/Caradot-2015-835.pdfKWB-documents_20191205.enlEndNote83483447<style face="normal" font="default" size="100%">The potential of deterioration modelling to support sewer asset management</style>internal-pdf://0280321486/Caradot-2015-834.pdfKWB-documents_20191205.enlEndNote57057047<style face="normal" font="default" size="100%">The use of continuous sewer and river monitoring data for CSO characterization and impact assessment</style>internal-pdf://2071543557/Caradot-2013-570.pdfKWB-documents_20191205.enlEndNote33933947<style face="normal" font="default" size="100%">Operation of a 5 m</style><style face="superscript" font="default" size="100%">3</style><style face="normal" font="default" size="100%">/d Gravity-driven Ultrafiltration Unit for Decentralised Water Supply</style>internal-pdf://4029443741/Boulestreau-2010-339.pdfKWB-documents_20191205.enlEndNote32732747<style face="normal" font="default" size="100%">Pilot scale ozonation of treated municipal effluent for removal of pharmaceutical compopunds and pathogens</style>internal-pdf://4009194053/Bahr-2005-327.pdfKWB-documents_20191205.enlEndNote1075107527<style face="normal" font="default" size="100%">TestTools – Entwicklung und Validierung von schnellen Testmethoden zum Spurenstoffverhalten in technischen und natürlichen Barrieren des urbanen Wasserkreislaufs</style>internal-pdf://2724954824/Zietzschmann-2018-1075.pdfKWB-documents_20191205.enlEndNote65965932<style face="normal" font="default" size="100%">Screening of different sewage sludge disposal routes regarding the energy demand with focus on hydrothermal carbonisation</style>internal-pdf://2389013815/Warneke-2013-659.pdfKWB-documents_20191205.enlEndNote76876847<style face="normal" font="default" size="100%">Betriebserfahrungen einer Ozonungsanlage zur Spurenstoffeliminierung mittels SAK</style><style face="subscript" font="default" size="100%">254</style><style face="normal" font="default" size="100%">-Differenz-Regelung</style>internal-pdf://4084496634/Stapf-2015-768.pdfinternal-pdf://3256998600/Stapf-2015-7682.pdfKWB-documents_20191205.enlEndNote72672627<style face="normal" font="default" size="100%">Geological CO2 storage and other emerging subsurface activities - Best practice: monitoring strategy & methods for groundwater protection</style>internal-pdf://0265678973/Menz-2014-726.pdfKWB-documents_20191205.enlEndNote76776747<style face="normal" font="default" size="100%">Application of Ultraviolet Absorption Measurement for Closed-loop Control of Tertiary Ozonation</style>internal-pdf://3549719910/Stapf-2015-767.pdfinternal-pdf://3362196797/Stapf-2015-7672.pdfKWB-documents_20191205.enlEndNote99399347<style face="normal" font="default" size="100%">Impacts of suspended solids, water temperature and dilution on TrOC elimination and UVA254 reduction by laboratory scale ozonation of secondary effluent</style>internal-pdf://1235209285/Stapf-2016-993.pdfinternal-pdf://2406816387/Stapf-2016-9932.pdfKWB-documents_20191205.enlEndNote34134147<style face="normal" font="default" size="11">Einfluss der Schalthäufigkeit auf die Brunnenalterung</style>internal-pdf://1075573324/Schwarzmüller-2009-341.pdfKWB-documents_20191205.enlEndNote18718727<style face="normal" font="default" size="100%">Comparison of direct and indirect diagnosis tools and methods to determine and distinguish clogging</style>internal-pdf://2389915074/Schwarzmüller-2009-187.pdfKWB-documents_20191205.enlEndNote18518527<style face="normal" font="default" size="11">State of the art of (1) The distinction of well ageing types and their extension; (2.1) Monitoring and diagnosis; (2.2) Maintenance; (3.1) Well design and construction and (3.2) Operation</style>internal-pdf://1951118825/Schwarzmüller-2009-185.pdfKWB-documents_20191205.enlEndNote1045104532<style face="normal" font="default" size="100%">Modellierung der Spurenstoffelimination im Klärwerksablauf durch Ozonung im Labormaßstab. Erprobung alternativer Indikatoren zur Abschätzung der Ozon- und OH-Radikalexposition</style>internal-pdf://3341684842/Rau-2017-1045.pdfKWB-documents_20191205.enlEndNote99699617<style face="normal" font="default" size="100%">Einfluss von Ozonung oder Aktivkohleadsorption zur weitergehenden Entfernung organischer Spurenstoffe auf den Energieaufwand und CO2-Fußabdruck einer Kläranlage</style>
internal-pdf://0509980595/Mutz-2017-996.pdf
KWB-documents_20191205.enlEndNote1062106232<style face="normal" font="default" size="100%">Qualitätssicherung von UV-Onlinedaten bei der Ozonierung kommunalen Abwassers - Identifizierung von Fouling mittels Onlinedatenanalyse zur Optimierung der Betriebsführung</style>internal-pdf://4270798414/Mauch-2018-1062.pdfKWB-documents_20191205.enlEndNote12712747<style face="normal" font="default" size="100%">Estimating of the solute transport parameters retardation factor and decay coefficient of pharmaceutical residues using the program visual CXTFIT</style>internal-pdf://2778503321/Licht-2006-127.pdfKWB-documents_20191205.enlEndNote13413417<style face="normal" font="default" size="100%">Investigation of groundwater residence times during bank filtration in Berlin - a multi-tracer approach</style>
internal-pdf://0881678587/Massmann-2007-134.pdf
KWB-documents_20191205.enlEndNote66866817<style face="normal" font="default" size="100%">KURAS gestartet: Neue Konzepte für Berlin</style>
internal-pdf://3362320290/Matzinger-2014-668.pdf
KWB-documents_20191205.enlEndNote25125132<style face="normal" font="default" size="11">Modélisation du transport de matières en suspension dans le réseau d’assainissement de Berlin</style>internal-pdf://4204889728/Lemaire-2003-251.pdfKWB-documents_20191205.enlEndNote666647<style face="normal" font="default" size="100%">Germination of Cylindrospermopsis raciborskii and Aphanizomenon species under natural and experimental conditions</style>internal-pdf://1273140621/Tingwey-2006-66.pdfKWB-documents_20191205.enlEndNote58158127<style face="normal" font="default" size="100%">WELLMA-DNA: Microbiological investigations in Gabachot and Boulac</style>internal-pdf://0199960791/Thronicker-2011-581.pdfKWB-documents_20191205.enlEndNote27927927<style face="normal" font="default" size="100%">Resource recovery and removal of pharmaceutical residues Treatment of separate collected urine</style>internal-pdf://1832391570/Tettenbron-2007-279.pdfKWB-documents_20191205.enlEndNote38638647<style face="normal" font="default" size="100%">Near Natural Mitigation Zones for Agricultural Runoff Management to Protect Drinking Water Supplies: A French-German-US research collaboration.</style>internal-pdf://3366015902/Tedesco-2010-386.pdfKWB-documents_20191205.enlEndNote19119147<style face="normal" font="default" size="11">Mitigation of contaminants in rural and semi-rural environments to protect surface water for drinking water supply - the Aquisafe-project</style>internal-pdf://3798447156/Strube-2007-191.pdfKWB-documents_20191205.enlEndNote20320327<style face="normal" font="default" size="11">The utility of agricultural constructed wetlands</style>internal-pdf://3120738444/Stouder-2009-203.pdfKWB-documents_20191205.enlEndNote65865832<style face="normal" font="default" size="100%">Geological CO2 storage and shale gas exploitation: Monitoring methods to be used for at the different project phases</style>internal-pdf://2683481555/Stevens-2013-658.pdfKWB-documents_20191205.enlEndNote50550517<style face="normal" font="default" size="100%">Best data handling practices in water-related research</style>
internal-pdf://3142198122/Sonnenberg-2013-505.pdfinternal-pdf://1115275490/Sonnenberg-2013-5052.pdf
KWB-documents_20191205.enlEndNote53453447<style face="normal" font="default" size="100%">A new look on old data: Usability of continuously measured discharge rates to monitor the ageing of drinking water abstraction wells.</style>internal-pdf://3141158095/Schwarzmüller-2012-534.pdfKWB-documents_20191205.enlEndNote22122127<style face="normal" font="default" size="11">Instationäre, hydronumerische 1D-Berechnung von Wasserstand und Durchfluss in der Stauhaltung Charlottenburg (Spree und Kanäle) für die Abflussjahre 2002 bis 2007</style>internal-pdf://3093729063/Schumacher-2008-221.pdfKWB-documents_20191205.enlEndNote24924927<style face="normal" font="default" size="11">Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung der Mischwasserentlastungen am Beispiel eines Starkregenereignisses im September 2005</style>internal-pdf://3050669056/Schumacher-2007-249.pdfKWB-documents_20191205.enlEndNote202047<style face="normal" font="default" size="100%">Model-based evaluation of a level dependant real-time control for sewage pump stations</style>internal-pdf://1245154128/Schroeder-2004-20.pdfKWB-documents_20191205.enlEndNote585817<style face="normal" font="default" size="100%">Distribution and regulation of the originally tropical cyanobacterium Cylindrospermopsis raciborskii at its northern limits</style>internal-pdf://3739194984/Rücker-2006-58.pdfKWB-documents_20191205.enlEndNote1074107432<style face="normal" font="default" size="100%">Optimierung der chemischen Reinigung einer kapillaren Nanofiltration im Pilotmaßstab zur Aufbereitung von anoxischem Grundwasser</style>internal-pdf://0639249289/Rohde-2018-1074.pdfKWB-documents_20191205.enlEndNote1059105917<style face="normal" font="default" size="100%">Bewertung verschiedener Modellansätze zur Vorhersage des Zustands von Abwasserkanälen am Beispiel von Berlin</style>
internal-pdf://3194698134/Riechel-2018-1059.pdf
KWB-documents_20191205.enlEndNote27727727<style face="normal" font="default" size="100%">Sanitärkonzepte zur seperaten Behandlung von Urin, Fäkalien und Grauwasser (SCST) - Layman Report</style>internal-pdf://3322773764/Peter-Fröhlich-2007-277.pdfKWB-documents_20191205.enlEndNote70170127<style face="normal" font="default" size="100%">Identification of existing mitigation systems that can attenuate nitrates during high flow events from drained, agricultural fields</style>internal-pdf://3075006591/Périllon-2010-701.pdfKWB-documents_20191205.enlEndNote56156132<style face="normal" font="default" size="100%">Vergleichende Ökobilanz von weitergehenden Stickstoffeliminierungsverfahren in Großkläranlagen</style>internal-pdf://0003026655/Mutz-2013-561.pdfKWB-documents_20191205.enlEndNote19219232<style face="normal" font="default" size="11">Analyse de la nature, de l’occurrence et des risques de contamination d’eau de surface par des pollutions diffuses en milieu rural et semi-rural en Europe</style>internal-pdf://4062164956/Morel-Fatio-2007-192.pdfKWB-documents_20191205.enlEndNote58758727<style face="normal" font="default" size="100%">RIKO-1 Synthesebericht</style>internal-pdf://0703079602/Menz-2013-587.pdfKWB-documents_20191205.enlEndNote57757727<style face="normal" font="default" size="100%">Efficiency of H2O2 treatment - Documentation of data acquisition and recommendation of optimized procedure</style>internal-pdf://0762327250/Menz-2011-577.pdfKWB-documents_20191205.enlEndNote53053027<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change (Deliverable 5.4.2)</style>internal-pdf://2160871137/Matzinger-2012-530.pdfKWB-documents_20191205.enlEndNote45045027<style face="normal" font="default" size="100%">Ammonia toxicity: Impact assessment of combined sewer overflows on the River Spree in Berlin</style>internal-pdf://0325342406/Matzinger-2011-450.pdfKWB-documents_20191205.enlEndNote77177132<style face="normal" font="default" size="100%">Risk inventory for impacts of emerging subsurface activities on groundwater</style>internal-pdf://1085163934/Massat-2012-771.pdfKWB-documents_20191205.enlEndNote42042017<style face="normal" font="default" size="100%">Comparative studies on the retardation and reduction of glyphosate during subsurface passage</style>
internal-pdf://1434589844/Litz-2011-420.pdf
KWB-documents_20191205.enlEndNote83683627<style face="normal" font="default" size="100%">Results of sewer deterioration modelling in Braunschweig. Internal Report 2.1</style>internal-pdf://4285449886/Kästner-2015-836.pdfKWB-documents_20191205.enlEndNote69269217<style face="normal" font="default" size="100%">Chancen für Phosphorrückgewinnung und -recycling aus dem Abwasserpfad in Europa</style>
internal-pdf://3940109612/Kabbe-2014-692.pdf
KWB-documents_20191205.enlEndNote20120127<style face="normal" font="default" size="11">Effects of vegetation and glyphosate on denitrification in constructed wetlands - Feasibility test of technical scale simulation</style>internal-pdf://0669233744/Jacinthe-2009-201.pdfKWB-documents_20191205.enlEndNote39839827<style face="normal" font="default" size="100%">Relevance and opportunities of RBF systems in developing and newly-industrialised countries</style>internal-pdf://1931829853/Hülshoff-2009-398.pdfKWB-documents_20191205.enlEndNote36136127<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in France</style>internal-pdf://1982818764/Hoa-2009-361.pdfKWB-documents_20191205.enlEndNote39039027<style face="normal" font="default" size="100%">Literature Study on Redox Control for Infiltration Ponds and other Subsurface Systems</style>internal-pdf://3122090832/Grützmacher-2011-390.pdfKWB-documents_20191205.enlEndNote39739717<style face="normal" font="default" size="100%">Performances and fouling control of a flat sheet membrane in a MBR pilot plant</style>
internal-pdf://2486967119/Grélot-2010-397.pdf
KWB-documents_20191205.enlEndNote99599532<style face="normal" font="default" size="100%">Spurenstoffelimination mittels Ozon im Labormaßstab unter Berücksichtigung der Wasserqualität sowie weiterer Einflussfaktoren</style>internal-pdf://2116955358/Hilbrandt-2016-995.pdfKWB-documents_20191205.enlEndNote1078107832<style face="normal" font="default" size="100%">Multivariate Datenanalyse zur Erfassung und Typisierung von Quellen umweltchemischer Frachten im Berliner Regenwasser</style>KWB-documents_20191205.enlEndNote20720732<style face="normal" font="default" size="11">Sensitivity Analysis Using SimLab: Application for the German Standard ATV-A 128</style>internal-pdf://2795615050/Brun-2009-207.pdfKWB-documents_20191205.enlEndNote68768732<style face="normal" font="default" size="100%">Micropollutants in Berlin’s urban rainwater runoff</style>internal-pdf://2853810648/Holsteijn-2014-687.pdfKWB-documents_20191205.enlEndNote96796732<style face="normal" font="default" size="100%">Abschätzung der Verweilzeit bei der Untergrundpassage am Grundwasseranreicherungsstandort Berlin-Spandau anhand der Umwelttracer Temperatur und stabile Isotope - Masterarbeit</style>KWB-documents_20191205.enlEndNote75475432<style face="normal" font="default" size="100%">Vergleichende Untersuchungen zur Abwasserdesinfektion vor einer Nutzung als Bewässerungswasser</style>internal-pdf://3089700122/Graß-2015-754.pdfinternal-pdf://3259635079/DMS Florian Graß.docxKWB-documents_20191205.enlEndNote70070032<style face="normal" font="default" size="100%">Untersuchungen zur Morphologie eisenoxidierender Grundwasserbakterien und ihrer Toleranz gegenüber Wasserstoffperoxid</style>internal-pdf://3763317585/Kutun-2010-700.pdfKWB-documents_20191205.enlEndNote75575532<style face="normal" font="default" size="100%">Comparison of UV Irradiation and Performic Acid Dosing for Agricultural Wastewater Reuse in Braunschweig</style>internal-pdf://1585398431/Reichelt-2015-755.pdfinternal-pdf://2293646154/DMS Ludwig Reichelt.docxKWB-documents_20191205.enlEndNote53153132<style face="normal" font="default" size="100%">Tracerversuch zum Nachweis von Undichtigkeiten am Beispiel eines Vertikalfilterbrunnens des Wasserwerks Jungfernheide (Berlin).</style>internal-pdf://2752136321/Steinhöfel-2012-531.pdfKWB-documents_20191205.enlEndNote41241232<style face="normal" font="default" size="100%">Kosten-Nutzen-Analyse zur optimierten Instandhaltungs- und Neubauplanung am Beispiel ausgewählter Trinkwasserbrunnen der Berliner Wasserbetriebe</style>internal-pdf://2677956589/Brinkmann-2011-412.pdfKWB-documents_20191205.enlEndNote29329332<style face="normal" font="default" size="11">Spatially and temporally scaled inverse hydraulic modelling, multi tracer transport modelling and interaction with geochemical processes at a highly transient bank filtration site</style>internal-pdf://1654028225/Wiese-2006-293.pdfKWB-documents_20191205.enlEndNote1094109432<style face="normal" font="default" size="100%">Bewertung der Mikrosiebung im großtechnischen Maßstab als erweiterte Vorklärung unter biologischen und ökonomischen Aspekten</style>internal-pdf://2258852794/Dühmke-2018-1094.pdfKWB-documents_20191205.enlEndNote54554532<style face="normal" font="default" size="100%">Advanced wastewater treatment by the implementation of a ceramic membrane. Studienarbeit</style>internal-pdf://1426931851/Stein-2012-545.pdfKWB-documents_20191205.enlEndNote25025032<style face="normal" font="default" size="11">Untersuchungen zur integrierten Modellierung von Freispiegel- und Druckabfluss im Berliner Abwassersystem</style>internal-pdf://1735951251/Sonnenberg-2006-250.pdfKWB-documents_20191205.enlEndNote1096109632<style face="normal" font="default" size="100%">Ressourcenschonende Abwasserbehandlung im ländlichen Raum - Prüfung der Rahmenbedingungen für die technische Umsetzbarkeit eines energieeffizienteren Behandlungskonzeptes</style>internal-pdf://2195152005/Herrmann-2016-1096.pdfKWB-documents_20191205.enlEndNote27127132<style face="normal" font="default" size="100%">Auslegung und Optimierung eines Speichertanks für eine Membranbelebungsanlage</style>internal-pdf://2104393567/Villwock-2005-271.pdfKWB-documents_20191205.enlEndNote49749732<style face="normal" font="default" size="100%">Optimization of abstraction costs for a drinking water well field</style>internal-pdf://2139441911/Vautrin-2012-497.pdfKWB-documents_20191205.enlEndNote25425432<style face="normal" font="default" size="11">Modélisation et campagne de mesures sur le bassin-versant Berlin VII</style>internal-pdf://0192119621/Souchon-2001-254.pdfKWB-documents_20191205.enlEndNote17917932<style face="normal" font="default" size="11">Bemessung eines Mischwasserspeichers in der Spree mittels numerischer Langzeitsimulation und Analyse ausgewählter Unsicherheiten</style>internal-pdf://0379696476/Sonnenberg-2008-179.pdfKWB-documents_20191205.enlEndNote53653632<style face="normal" font="default" size="100%">Advanced Wastewater Treatment Through the Combination of Flocculation, Microsieve Filtration and UV-Disinfection.</style>internal-pdf://1321879078/Schermann-2012-536.pdfKWB-documents_20191205.enlEndNote21721732<style face="normal" font="default" size="11">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://0555585475/Riechel-2009-217.pdfKWB-documents_20191205.enlEndNote32432432<style face="normal" font="default" size="11">Anwendungsgrenzen automatisierter Datenanalyse zur quantitativen Diagnose von Brunnenalterungsprozessen aus der zeitlichen Änderung der Brunnenergiebigkeit auf Basis kontinuierlicher Messungen von Betriebsparametern am Beispiel der Brunnengalerie Tegel-Hohenzollernkanal der Berliner Wasserbetriebe</style>internal-pdf://3310186281/Martin-2009-324.pdfKWB-documents_20191205.enlEndNote53753732<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration - Process optimization for dynamic operation and discussion of effects on operating cost.</style>internal-pdf://1824671535/Lardon-2012-537.pdfKWB-documents_20191205.enlEndNote25325332<style face="normal" font="default" size="11">Modelisation d’un Reseau d’Assainissement, Berlin VIII</style>internal-pdf://2568849102/Laborde-2003-253.pdfKWB-documents_20191205.enlEndNote17117132<style face="normal" font="default" size="11">Untersuchungen zur Verbundsteuerung des Berliner Entwässerungssystems</style>internal-pdf://4056922232/Huß-2005-171.pdfKWB-documents_20191205.enlEndNote21621632<style face="normal" font="default" size="11">Räumlich differenzierte Modellierung des Stofftransportes im Niederschlagsabfluss von urbanen Flächen am Beispiel des Einzugsgebietes Ruschegraben, Berlin</style>internal-pdf://2523697575/Helling-2008-216.pdfKWB-documents_20191205.enlEndNote88088032<style face="normal" font="default" size="100%">Stickstoffentfernung durch Wasserlinsen – Umsetzung eines energieeffizienten Verfahrens zur Reinigung ammoniumreicher Abwässer</style>internal-pdf://3639685532/Heller-2016-880.pdfKWB-documents_20191205.enlEndNote25225232<style face="normal" font="default" size="11">Modelisation des Sous-Bassins Versants Berlin V et XII, Tests de Scenarios d’Amelioration</style>internal-pdf://1505789817/Daspres-2004-252.pdfKWB-documents_20191205.enlEndNote23423432<style face="normal" font="default" size="11">Modellbasierte Untersuchung zur Wirksamkeit einer Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://2639890921/Behrends-2008-234.pdfKWB-documents_20191205.enlEndNote25625632<style face="normal" font="default" size="100%">Kohlenstoffmassenbilanz in der anaeroben Zone zur Überprüfung der Speicherstoffdynamik im ENREM-Prozess</style>internal-pdf://3512566488/Baumer-2006-256.pdfKWB-documents_20191205.enlEndNote1097109732<style face="normal" font="default" size="100%">Vergleichende Bilanzierung von zwei SB-Reaktoren der Abwasserreinigung während der straßenweisen Umstellung auf eine erweiterte Vorklärung</style>internal-pdf://0820665524/Franke-2017-1097.pdfKWB-documents_20191205.enlEndNote65765732<style face="normal" font="default" size="100%">Modelling the impacts of combined sewer overflows on the Berlin River Spree</style>internal-pdf://0316105294/Uldack-2013-657.pdfKWB-documents_20191205.enlEndNote79679632<style face="normal" font="default" size="100%">Ökobilanz zu Maßnahmen der Nährstoffreduktion im Kanalnetz</style>internal-pdf://1882960229/Ehrenreich-2015-796.pdfKWB-documents_20191205.enlEndNote97597532<style face="normal" font="default" size="100%">Oxygen delivering processes in groundwater and their relevance for iron-related well clogging processes - A case study on the quaternary aquifers of Berlin</style>internal-pdf://1450158864/Menz-2016-975.pdfKWB-documents_20191205.enlEndNote27227232<style face="normal" font="default" size="100%">Extensive Biological Nutrients Removal in Membrane Bioreactors</style>internal-pdf://2925492348/Vocks-2008-272.pdfKWB-documents_20191205.enlEndNote38938927<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation</style>internal-pdf://2008700679/Hübner-2010-389.pdfKWB-documents_20191205.enlEndNote767617<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation on enhanced biological nutrients removal and trace organics elimination in membrane bioreactor (MBR)</style>
internal-pdf://0392201778/Lesjean-2005-76.pdf
KWB-documents_20191205.enlEndNote787847<style face="normal" font="default" size="100%">Zusammenhang zwischen Membranfouling und gelösten Substanzen in Membranbelebungsreaktoren</style>internal-pdf://3570174956/Rosenberger-2003-78.pdfKWB-documents_20191205.enlEndNote31131147<style face="normal" font="default" size="100%">The Potential of River Bank Filtration for Reducing Chemical Pollutants and Pathogens from River Water ion Megacities: The New Delhi Experience</style>internal-pdf://1705014078/Sprenger-2009-311.pdfKWB-documents_20191205.enlEndNote14314317<style face="normal" font="default" size="100%">Assessing the Effect of Pumping Regimes on Bank Filtration</style>
internal-pdf://1508090847/Wiese-2004-143.pdf
KWB-documents_20191205.enlEndNote29129127<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii und Cylindrospermopsin in Gewässern der Berliner Region Vorkommen, Ursachen, Auswirkungen</style>internal-pdf://1485731886/Wiedner-2005-291.pdfKWB-documents_20191205.enlEndNote55355327<style face="normal" font="default" size="100%">Preliminary models and system design. Deliverable 5.2</style>internal-pdf://0865615933/Adlakha-2012-553.pdfKWB-documents_20191205.enlEndNote55455427<style face="normal" font="default" size="100%">Report on pilot and full-scale trials performed in Braunschweig on codigestion and thermal hydrolysis - Workpackage 3</style>internal-pdf://1253458636/Klein-2012-554.pdfKWB-documents_20191205.enlEndNote63763727<style face="normal" font="default" size="100%">Development of a Catalogue on European MAR Sites - Documentation</style>internal-pdf://2974534039/Scheibler-2012-637.pdfKWB-documents_20191205.enlEndNote69969927<style face="normal" font="default" size="100%">Results of pilot-scale dewatering trials performed in Braunschweig Assessment of various operational factors on centrifugation performances (Project Decamax, Work Package 2)</style>internal-pdf://2405858640/Fülling-2014-699.pdfKWB-documents_20191205.enlEndNote73873827<style face="normal" font="default" size="100%">Database of baseline data for study sites - Deliverable 5.1</style>internal-pdf://0144574779/Adlakha-2012-738.pdfKWB-documents_20191205.enlEndNote76276217<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>
internal-pdf://3302723632/Wicke-2015-762.pdf
KWB-documents_20191205.enlEndNote77877847<style face="normal" font="default" size="100%">Monitoring of runoff water quality from green and gravel roofs with bitumen membranes</style>internal-pdf://3368711269/Schubert-2015-778.pdfKWB-documents_20191205.enlEndNote79179147<style face="normal" font="default" size="100%">Austrag und Rückhalt von Mecoprop durch Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://3493310072/Riechel-2015-791.pdfKWB-documents_20191205.enlEndNote8578575<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change</style>
internal-pdf://4142838706/Matzinger-2015-857.pdf
KWB-documents_20191205.enlEndNote93893817<style face="normal" font="default" size="100%">Bedeutung oxidativer Prozesse in der Trinkwasseraufbereitung und Abwasserreinigung</style>
internal-pdf://1438483705/Prasse-2014-938.pdf
KWB-documents_20191205.enlEndNote95095027<style face="normal" font="default" size="100%">Catalogue of European MAR applications</style>internal-pdf://1573163476/Schreiber-2012-950.pdfKWB-documents_20191205.enlEndNote95395327<style face="normal" font="default" size="100%">Database of baseline data for study sites</style>internal-pdf://2014418176/Adlakha-2012-953.pdfKWB-documents_20191205.enlEndNote95495427<style face="normal" font="default" size="100%">Preliminary models and system design</style>internal-pdf://0231773736/Adlakha-2012-954.pdfKWB-documents_20191205.enlEndNote97697647<style face="normal" font="default" size="100%">Wellbore Skin in Mine Dewatering and Drinking Water Supply: Field Observation, Mineralogy and Hydraulic Effect</style>internal-pdf://3995256054/Weidner-2016-976.pdfKWB-documents_20191205.enlEndNote97797717<style face="normal" font="default" size="100%">Einfluss von Standortfaktoren auf die Brunnenalterung: Klassifizierung der Berliner Trinkwasserbrunnen und Quantifizierung ihres Alterungspotentials</style>
KWB-documents_20191205.enlEndNote1070107027<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.2: Recommendations for WWTP operators, municipalities and WWTP technology providers willing to engage in renewable energy market</style>internal-pdf://0934116392/Helleskov Ravn-2018-1070.pdfKWB-documents_20191205.enlEndNote1104110447<style face="normal" font="default" size="100%">Berücksichtigung vielfältiger Ziele der Regenwasserbewirtschaftung in der Planung - Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://0702068422/Matzinger-2019-1104.pdfKWB-documents_20191205.enlEndNote1105110547<style face="normal" font="default" size="100%">Maßnahmenplanung für die Regenwasserbewirtschaftung in Berlin Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://2452402236/Matzinger-2019-1105.pdfKWB-documents_20191205.enlEndNote1109110927<style face="normal" font="default" size="100%">Einsatzmöglichkeiten für Nährstoffrezyklate im Ökolandbau - Abschlussbericht des Projektes nurec4org</style>internal-pdf://1700780674/Kraus-2019-1109.pdfKWB-documents_20191205.enlEndNote65065047<style face="normal" font="default" size="100%">Development of a European MAR catalogue</style>internal-pdf://0210908144/Scheibler-2013-650.pdfinternal-pdf://2486604654/Scheibler-2013-6502.pdfKWB-documents_20191205.enlEndNote1060106017<style face="normal" font="default" size="100%">Practical benchmarking of statistical and machine learning models for predicting the condition of sewer pipes in Berlin, Germany</style>
internal-pdf://3644410872/Caradot-2018-1060.pdf
KWB-documents_20191205.enlEndNote86586517<style face="normal" font="default" size="100%">Inventory of Managed Aquifer Recharge sites in Europe – historical development, current situation and perspectives</style>
internal-pdf://3302492098/Sprenger-submitted-865.pdf
KWB-documents_20191205.enlEndNote80580527<style face="normal" font="default" size="100%">Managing Aquifer Recharge - Subsurface treatment, storage and recovery</style>internal-pdf://2143154451/Sprenger-2015-805.pdfKWB-documents_20191205.enlEndNote1064106427<style face="normal" font="default" size="100%">Challenges and technological approaches for tackling emerging contaminants in drinking and wastewater</style>internal-pdf://1276093834/Stein-2018-1064.pdfKWB-documents_20191205.enlEndNote101010105<style face="normal" font="default" size="100%">Phosphor – der Flaschenhals des Lebens</style>KWB-documents_20191205.enlEndNote92392310<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://1310289891/Stapf-2014-923.pdfinternal-pdf://1412919517/Stapf-2014-9232.pdfKWB-documents_20191205.enlEndNote74374310<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://0750786304/Stapf-2014-743.pdfinternal-pdf://0048895916/Stapf-2014-7432.pdfKWB-documents_20191205.enlEndNote97897810<style face="normal" font="default" size="100%">Zielorientierte Regenwasserbewirtschaftung zur Verbesserung der Lebensqualität und der Umweltbedingungen in der Stadt</style>internal-pdf://2836496065/Rouault-2016-978.pdfKWB-documents_20191205.enlEndNote8558555<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions</style>
internal-pdf://0516496904/Riechel-2015-855.pdf
KWB-documents_20191205.enlEndNote101810185<style face="normal" font="default" size="100%">Gewässerschutz durch kombinierte dezentrale und zentrale Maßnahmen der Regenwasserbewirtschaftung - Modellstudie am Beispiel Berlins</style>internal-pdf://2258607745/Riechel-2017-1018.pdfKWB-documents_20191205.enlEndNote102210225<style face="normal" font="default" size="100%">Klima- und Demografieszenarien für die urbane Abwasserentsorgung</style>internal-pdf://1922735963/Riechel-2017-1022.pdfKWB-documents_20191205.enlEndNote100610065<style face="normal" font="default" size="100%">Assessing environmental impacts and benefits of wastewater treatment plants</style>KWB-documents_20191205.enlEndNote100510055<style face="normal" font="default" size="100%">Life Cycle Assessment of processes for P recycling</style>KWB-documents_20191205.enlEndNote72172110<style face="normal" font="default" size="100%">Technischer Nachweis eines innovativen Konzepts für ein energie-positives Klärwerk</style>internal-pdf://2531780004/Remy-2014-721.pdfKWB-documents_20191205.enlEndNote79879810<style face="normal" font="default" size="100%">Integrating Ozonation or Adsorption on Activated Carbon into Tertiary Wastewater Treatment: Environmental Impacts with Life Cycle Assessment</style>internal-pdf://3498751120/Mutz-2015-798.pdfinternal-pdf://1787147564/Mutz-2015-7983.pdfinternal-pdf://2421142953/Mutz-2015-7981.pdfKWB-documents_20191205.enlEndNote102610265<style face="normal" font="default" size="100%">Potenziale der Regenwasserbewirtschaftung im Siedlungsbestand</style>internal-pdf://1119512723/Matzinger-2017-1026.pdfKWB-documents_20191205.enlEndNote94494410<style face="normal" font="default" size="100%">Proof of concept for an innovative energy positive wastewater treatment scheme</style>internal-pdf://1837468433/Lesjean-2014-944.pdfKWB-documents_20191205.enlEndNote105410545<style face="normal" font="default" size="100%">Ökobilanzieller Vergleich der konventionellen P-Düngemittelproduktion aus Rohphosphat mit der Phosphorrückgewinnung aus dem Abwasserpfad</style>KWB-documents_20191205.enlEndNote98798710<style face="normal" font="default" size="100%">Anforderungen an das P-Recycling</style>KWB-documents_20191205.enlEndNote1008100810<style face="normal" font="default" size="100%">Stand und Perspektiven beim Phosphorrecycling</style>KWB-documents_20191205.enlEndNote1009100910<style face="normal" font="default" size="100%">Circular Economy – Challenges and Opportunities for Phosphorus Recovery & Recycling from Wastes in Europe</style>KWB-documents_20191205.enlEndNote81881810<style face="normal" font="default" size="100%">P-Rückgewinnung und Recycling in Europa - Schlussfolgerungen aus dem Projekt P-REX</style>internal-pdf://2559516112/Kabbe-2015-818.pdfKWB-documents_20191205.enlEndNote1011101110<style face="normal" font="default" size="100%">Kreislaufwirtschaft? - Von der Phosphorrückgewinnung zum tatsächlichen Recycling</style>KWB-documents_20191205.enlEndNote90890810<style face="normal" font="default" size="100%">Phosphorrückgewinnung und -recycling aus Abwasser in Europa</style>internal-pdf://3927592995/Kabbe-2015-908.pdfKWB-documents_20191205.enlEndNote101310135<style face="normal" font="default" size="100%">Circular Economy – Bridging the gap between Phosphorus Recovery and Recycling</style>KWB-documents_20191205.enlEndNote35535547<style face="normal" font="default" size="100%">A European Initiative to Define Current Research Needs in Managed Aquifer Recharge</style>internal-pdf://3382257253/Gesche Gruetzmacher_A European Initiative_ISMA.pdfKWB-documents_20191205.enlEndNote28628627<style face="normal" font="default" size="11">NASRI Natural and Artificial Systems for Recharge and Infiltration Period 2001-2002</style>internal-pdf://1756172843/Fritz-2002-286.pdfKWB-documents_20191205.enlEndNote11311317<style face="normal" font="default" size="100%">Occurrence, fate, and removal of pharmaceutical residues in the aquatic environment: a review of recent research data</style>
internal-pdf://1915531076/Heberer-2002-113.PDF
KWB-documents_20191205.enlEndNote747417<style face="normal" font="default" size="100%">Process configurations adapted to membrane bioreactors for enhanced biological phosphorous and nitrogen removal</style>
internal-pdf://3379015180/Lesjean-2002-74.pdf
KWB-documents_20191205.enlEndNote28528547<style face="normal" font="default" size="11">Integrated Sewage Management - Setup of an integrated strategy for the control of the Berlin sewage system</style>internal-pdf://0878804004/Schroeder-2002-285.pdfKWB-documents_20191205.enlEndNote181847<style face="normal" font="default" size="100%">Integrated Sewage Management - Setup of networked models for analysis and improvement of the Berlin sewage system</style>internal-pdf://3109923553/Schroeder-2002-18.pdfKWB-documents_20191205.enlEndNote727217<style face="normal" font="default" size="100%">Membranbelebungsverfahren mit vermehrter biologischer Phosphorelimination (EBPR)</style>
internal-pdf://3152784019/Adam-2003-72.pdf
KWB-documents_20191205.enlEndNote888847<style face="normal" font="default" size="100%">Using the Tritium/Helium Age Dating Method to characterise two river recharged aquifer systems in Germany</style>internal-pdf://0607104384/Massmann-2003-88.pdfKWB-documents_20191205.enlEndNote191947<style face="normal" font="default" size="100%">Integriertes Abwasser Management – Aufbau eines integrierten Modells zur Optimierung des Berliner Abwasser Systems</style>internal-pdf://2293082022/Schroeder-2003-19.pdfKWB-documents_20191205.enlEndNote818147<style face="normal" font="default" size="100%">Langzeituntersuchungen zur Entfernung organischer Spurenstoffe mit zwei Membranbelebungsanlagen im Vergleich zu einem konventionellen Klärwerk</style>internal-pdf://1461750327/Zühlke-2003-81.pdfKWB-documents_20191205.enlEndNote474727<style face="normal" font="default" size="100%">Application of Liquid Chromatography-Online Carbon Detection (LC-OCD) to the understanding of organic fouling in membrane bioreactors (MBRs)</style>internal-pdf://1984538597/Laabs-2004-47.pdfKWB-documents_20191205.enlEndNote757547<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation of Membrane Bioreactor Process configurations for biological advanced nutrients removal from municipal wastewater</style>KWB-documents_20191205.enlEndNote898917<style face="normal" font="default" size="100%">Investigating the influence of treated sewage in ground- and surface water using wastewater indicators in Berlin, Germany</style>
internal-pdf://2872157635/Massmann-2004-89.pdf
KWB-documents_20191205.enlEndNote6627<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von Röntgenkontrastmitteln - Zwischenbericht</style>internal-pdf://0304063065/Pineau-2004-6.pdfKWB-documents_20191205.enlEndNote565647<style face="normal" font="default" size="100%">Planung und Bau einer Membranbelebungsanlage für die semizentrale Erschließung eines Siedlungsgebietes in einem empfindlichen Gebiet</style>internal-pdf://1234280612/Gnirß-2005-56.pdfKWB-documents_20191205.enlEndNote3327<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von iodorganischen Röntgenkontrastmitteln in Krankenhäusern</style>internal-pdf://2463473563/Pineau-2005-3.pdfKWB-documents_20191205.enlEndNote111147<style face="normal" font="default" size="100%">Assessment of global pump station control strategies on the basis of numerical modelling</style>internal-pdf://2135334655/Schroeder-2005-11.pdfKWB-documents_20191205.enlEndNote575717<style face="normal" font="default" size="100%">Influence of unsteady membrane bioreactor operation on EPS formation and filtration resistance</style>
internal-pdf://0449289687/Drews-2006-57.pdf
KWB-documents_20191205.enlEndNote10710747<style face="normal" font="default" size="100%">Fate of bulk organics during bank filtration of wastewater-impacted surface waters</style>internal-pdf://3643383036/Grünheid-2006-107.pdfKWB-documents_20191205.enlEndNote10910947<style face="normal" font="default" size="100%">Fate of trace organic pollutants during bank filtration and groundwater recharge</style>internal-pdf://3637009181/Grünheid-2006-109.pdfKWB-documents_20191205.enlEndNote10510547<style face="normal" font="default" size="100%">Simulating bank filtration and artificial recharge on a technical scale</style>internal-pdf://3159881532/Grützmacher-2006-105.pdfKWB-documents_20191205.enlEndNote10410447<style face="normal" font="default" size="100%">On the behaviour of microcystins in saturated porous medium</style>internal-pdf://1593744558/Grützmacher-2006-104.pdfKWB-documents_20191205.enlEndNote10310347<style face="normal" font="default" size="100%">Are there limits to cyanobacterial toxin (microcystin) elimination by sand passage?</style>internal-pdf://3453328480/Grützmacher-2006-103.pdfKWB-documents_20191205.enlEndNote11011047<style face="normal" font="default" size="100%">Clogging processes in a bank filtration system in the littoral zone of Lake Tegel (Germany)</style>internal-pdf://2128649234/Gunkel-2006-110.pdfKWB-documents_20191205.enlEndNote11211247<style face="normal" font="default" size="100%">Occurrence, transport, attenuation and removal of pharmaceutical residues in the aquatic environment and their relevance for drinking water supply in urban areas</style>internal-pdf://1439538132/Heberer-2006-112.pdfKWB-documents_20191205.enlEndNote11511547<style face="normal" font="default" size="100%">Physicochemical changes in pore water in the sandy littoral zone of Lake Tegel during bank filtration</style>internal-pdf://2427492958/Hoffmann-2006-115.pdfKWB-documents_20191205.enlEndNote11611617<style face="normal" font="default" size="100%">Calculating the effect of natural attenuation during bank filtration</style>
internal-pdf://3455752735/Holzbecher-2006-116.pdf
KWB-documents_20191205.enlEndNote50150117<style face="normal" font="default" size="100%">The Influence of Redox Conditions on Phage Transport - Enclosure Experiments and Modeling</style>
internal-pdf://4000850529/Holzbecher-2006-501.pdf
KWB-documents_20191205.enlEndNote11911947<style face="normal" font="default" size="100%">On the construction of flowpath vector fields</style>internal-pdf://0911579601/Holzbecher-2006-119.pdfKWB-documents_20191205.enlEndNote12012047<style face="normal" font="default" size="100%">Simulation of bacteriophage populations during sub-surface passage</style>internal-pdf://1743100806/Holzbecher-2006-120.pdfKWB-documents_20191205.enlEndNote12112147<style face="normal" font="default" size="100%">A coupled transport and reaction model for long column experiments simulating bank filtration</style>internal-pdf://3982859080/Horner-2006-121.pdfKWB-documents_20191205.enlEndNote12412447<style face="normal" font="default" size="100%">Ist die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>internal-pdf://1746836218/Jekel-2006-124.pdfKWB-documents_20191205.enlEndNote24724727<style face="normal" font="default" size="11">Auswirkungen urbaner Nutzungen auf den Stoffhaushalt und die Biozönosen von Tieflandflüssen unter besonderer Berücksichtigung der Mischwasserentlastung</style>internal-pdf://3948381637/Leszinski-2006-247.pdfKWB-documents_20191205.enlEndNote13713717<style face="normal" font="default" size="100%">The impact of variable temperatures on the redox conditions and the behaviour of pharmaceutical residues during artificial recharge</style>
internal-pdf://4286772912/Massmann-2006-137.pdf
KWB-documents_20191205.enlEndNote13613647<style face="normal" font="default" size="100%">The impact of alternating redox conditions on groundwater chemistry during artificial recharge in Berlin</style>internal-pdf://3333396555/Massmann-2006-136.pdfKWB-documents_20191205.enlEndNote13513547<style face="normal" font="default" size="100%">Evaluation of the hydrochemical conditions during bank filtration and artificial recharge in Berlin</style>internal-pdf://3960772605/Massmann-2006-135.pdfKWB-documents_20191205.enlEndNote14014047<style face="normal" font="default" size="100%">Fate and transport of pharmaceutical residues during bank filtration</style>internal-pdf://3146815423/Mechlinski-2006-140.pdfKWB-documents_20191205.enlEndNote14114147<style face="normal" font="default" size="100%">Visual CXTFIT - a user-friendly simulation tool for modelling one-dimensional transport, sorption and degradation processes during bank filtration</style>internal-pdf://2409928483/Nützmann-2006-141.pdfKWB-documents_20191205.enlEndNote101027<style face="normal" font="default" size="100%">ISM - Integrated Sewage Management - Final Research Report</style>internal-pdf://0375035574/Pawlowsky-Reusing-2006-10.pdfKWB-documents_20191205.enlEndNote28128127<style face="normal" font="default" size="100%">Ecological assessment of alternative sanitation concepts with Life Cycle Assessment</style>internal-pdf://1761770610/Remy-2006-281.pdfKWB-documents_20191205.enlEndNote676717<style face="normal" font="default" size="100%">Phylogenetic characterisation of the three cyanobacteria species Anabaena bergii, Aphanizomenon ovalisporum and Aphanizomenon aphanizomenoides (order Nostocales)</style>
internal-pdf://1200526796/Stüken-2006-67.pdf
KWB-documents_20191205.enlEndNote646417<style face="normal" font="default" size="100%">Distribution of three alien cyanobacterial species (Nostocales) in northeast Germany: Cylindrospermopsis raciborskii, Anabaena bergii and Aphanizomenon aphanizomenoides</style>
internal-pdf://2415302170/Stüken-2006-64.pdf
KWB-documents_20191205.enlEndNote14614647<style face="normal" font="default" size="100%">Hydraulic and transport modelling of bank filtration at Lake Tegel (Berlin)</style>internal-pdf://4006581567/Wiese-2006-146.pdfKWB-documents_20191205.enlEndNote434327<style face="normal" font="default" size="100%">Pilotuntersuchungen zur kombinierten oxidativ-biologischen Behandlung von Klärwerksabläufen für die Entfernung von organischen Spuren- und Wirkstoffen und zur Desinfektion</style>internal-pdf://3229062385/Bahr-2007-43.pdfKWB-documents_20191205.enlEndNote41141127<style face="normal" font="default" size="100%">Watergy: Energy and Water Efficiency in Municipal Water Supply and Wastewater Treatment - </style><style face="italic" font="default" size="100%">Cost-Effective Savings of Water and Energy</style>internal-pdf://0624321367/Barry-2007-411.pdfKWB-documents_20191205.enlEndNote25825817<style face="normal" font="default" size="100%">Comparison of nutrient degradation in small scale membrane bioreactors fed with synthetic/domestic wastewater</style>
internal-pdf://3375071897/Bracklow-2007-258.pdf
KWB-documents_20191205.enlEndNote26026017<style face="normal" font="default" size="100%">Impact of ambient conditions on SMP elimination and rejection in MBR</style>
internal-pdf://1192264267/Drews-2007-260.pdf
KWB-documents_20191205.enlEndNote26126147<style face="normal" font="default" size="100%">Does fouling in MBR depend on SMP? </style>internal-pdf://0706988939/Drews-2007-261.pdfKWB-documents_20191205.enlEndNote606017<style face="normal" font="default" size="100%">Occurrence of the Cyanobacterial Toxin Cylindrospermopsin in Northeast Germany</style>
internal-pdf://4195718292/Fastner-2007-60.pdf
KWB-documents_20191205.enlEndNote959517<style face="normal" font="default" size="100%">Naturnahe Grundwassergewinnung - Ergebnisse eines umfangreichen, interdisziplinären Forschungsvorhabens zur künstlichen Grundwasseranreicherung und Uferfiltration</style>
internal-pdf://2718497586/Fritz-2007-95.pdf
KWB-documents_20191205.enlEndNote26526547<style face="normal" font="default" size="100%">Design criteria for semi-central sanitation with low pressure network and membrane bioreactor – the ENREM project</style>internal-pdf://1676575058/Gnirss-2007-265.pdfKWB-documents_20191205.enlEndNote10110147<style face="normal" font="default" size="100%">Impact of temperature on biodegradation of bulk and trace organics during soil passage in an indirect reuse system</style>internal-pdf://3986448131/Grünheid-2007-101.pdfKWB-documents_20191205.enlEndNote10210217<style face="normal" font="default" size="100%">Cyanobakterientoxine bei der Uferfiltration. Unter welchen Umständen ist ihre Elimination sicher?</style>
internal-pdf://2804555418/Grützmacher-2007-102.pdf
KWB-documents_20191205.enlEndNote10610647<style face="normal" font="default" size="100%">Prozesse der Elimination von Cyanobakterientoxinen bei der Infiltration</style>internal-pdf://0656512085/Grützmacher-2007-106.pdfKWB-documents_20191205.enlEndNote12212217<style face="normal" font="default" size="100%">lst die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>
internal-pdf://3258473167/Jekel-2007-122.PDF
KWB-documents_20191205.enlEndNote24824827<style face="normal" font="default" size="11">Immissionsorientierte Bewertung von Mischwasserentlastungen in Tieflandflüssen</style>internal-pdf://1558086906/Leszinski-2007-248.pdfKWB-documents_20191205.enlEndNote1721726<style face="normal" font="default" size="11">12 Jahre Pilotbetrieb Karolinenhöhe - Zusammenfassende Auswertung</style>
internal-pdf://0186023541/Liese-2007-172.pdf
KWB-documents_20191205.enlEndNote12912917<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration - Investigation of residues of phenazone-type analgesics </style>
internal-pdf://2768525875/Massmann-2007-129.pdf
KWB-documents_20191205.enlEndNote13313317<style face="normal" font="default" size="100%">Trinkwassergewinnung in urbanen Räumen - Erkenntnisse zur Uferlfiltration in Berlin</style>
internal-pdf://1076124055/Massmann-2007-133.pdf
KWB-documents_20191205.enlEndNote28228227<style face="normal" font="default" size="100%">Final report for task 8 of the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST) , Fertilizer Usage</style>internal-pdf://1280146983/Muskolus-2007-282.pdfKWB-documents_20191205.enlEndNote707047<style face="normal" font="default" size="100%">Consideration of online rainfall measurement and now casting for RTC of the combined sewage system</style>internal-pdf://4116877173/Rouault-2007-70.pdfKWB-documents_20191205.enlEndNote626217<style face="normal" font="default" size="100%">Concentrations of particulate and dissolved cylindrospermopsin in 21 Aphanizomenon-dominated temperate lakes</style>
internal-pdf://4045443963/Rücker-2007-62.pdf
KWB-documents_20191205.enlEndNote696947<style face="normal" font="default" size="100%">Implementation of a decision support system for global pump station control in Berlin</style>internal-pdf://2245104429/Schroeder-2007-69.pdfKWB-documents_20191205.enlEndNote27427447<style face="normal" font="default" size="100%">Impact of two different excess sludge removal strategies on the performance of a membrane bioreactor system</style>internal-pdf://0451463934/Vocks-2007-274.pdfKWB-documents_20191205.enlEndNote656517<style face="normal" font="default" size="100%">Climate change affects timing and size of populations of an invasive cyanobacterium in temperate regions</style>
internal-pdf://1116967569/Wiedner-2007-65.pdf
KWB-documents_20191205.enlEndNote1681686<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area -Occurrence, Causes and Consequences (CYLIN)</style>internal-pdf://2124363951/Wiedner-2008-168.pdfKWB-documents_20191205.enlEndNote29229227<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area: Occurrence, Causes and Consequences</style>internal-pdf://0977867557/Wiedner-2007-292.pdfKWB-documents_20191205.enlEndNote14414417<style face="normal" font="default" size="100%">Infiltration of surface water into groundwater under transient pressure gradients</style>
internal-pdf://3101069906/Wiese-2007-144.pdf
KWB-documents_20191205.enlEndNote14514547<style face="normal" font="default" size="100%">Inverse Modelling of Aquitard Structures using Pilot Points and Regularisation</style>internal-pdf://2145882628/Wiese-2007-145.pdfKWB-documents_20191205.enlEndNote23323327<style face="normal" font="default" size="11">Ermittlung prozessbestimmender / -begrenzender Parameter bei MW-Zufluss auf Kläranlagen. Prüfung der Übertragbarkeit auf die Kläranlagen Berlins</style>internal-pdf://2595261920/Barjenbruch-2008-233.pdfKWB-documents_20191205.enlEndNote20620647<style face="normal" font="default" size="11">Projekt SPREE2011 - Entwicklung von Off-Shore Speicherräumen mit integrierter Klärtechnik zur Vermeidung von Mischwassereinleitungen in Gewässer</style>internal-pdf://0131432209/Gantner-2008-206.pdfKWB-documents_20191205.enlEndNote26626647<style face="normal" font="default" size="100%">Membrane Technique in a Freight Container for Advanced Nutrients Removal - The ENREM Demonstration Project</style>internal-pdf://1935247147/Gnirss-2008-266.pdfKWB-documents_20191205.enlEndNote32132147<style face="normal" font="default" size="100%">Organic Trace Substances Relevant for Drinking Water. Assessing their Elimination through Bank Filtration – Phase 1</style>internal-pdf://2551637891/Grützmacher-2008-321.pdfKWB-documents_20191205.enlEndNote43443417<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of antimicrobial residues during bank filtration</style>
internal-pdf://0975838796/Heberer-2008-434.pdf
KWB-documents_20191205.enlEndNote36336327<style face="normal" font="default" size="100%">International Market Survey on Membrane-Based Products for Decentralised Water Supply (POU and SSS Units) </style>internal-pdf://1547200894/Hoa-2008-363.pdfKWB-documents_20191205.enlEndNote22522527<style face="normal" font="default" size="11">International practices and standards of Rainwater Harvesting in urban and peri-urban environment and current R&D projects</style>internal-pdf://4058404350/Jaulhac-2008-225.pdfKWB-documents_20191205.enlEndNote13113117<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration – Investigation of residues of phenazone-type analgesics</style>
internal-pdf://1310415333/Massmann-2008-131.pdf
KWB-documents_20191205.enlEndNote43243217<style face="normal" font="default" size="100%">Seasonal and spatial distribution of redox zones during lake bank filtration in Berlin, Germany</style>
internal-pdf://0549199280/Massmann-2008-432.pdf
KWB-documents_20191205.enlEndNote13913917<style face="normal" font="default" size="100%">Identification of processes affecting excess airformation during natural bank filtration and managed aquifer recharge</style>
internal-pdf://0856455541/Massmann-2008-139.pdf
KWB-documents_20191205.enlEndNote21821827<style face="normal" font="default" size="11">Immissionsrichtlinien für Mischwassereinleitungen</style>internal-pdf://1905955005/Matzinger-2008-218.pdfKWB-documents_20191205.enlEndNote19419447<style face="normal" font="default" size="11">Assessing the effectiveness of a constructed wetland for water quality mitigation in Brittany (France) - A case study within the Aquisafe project</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://2368778614/Matzinger-2008-194.pdfKWB-documents_20191205.enlEndNote19319347<style face="normal" font="default" size="11">Analysis of source water contamination in rural and semi-rural areas in Europe and United States</style>internal-pdf://0880785310/Morel-Fatio-2008-193.pdfKWB-documents_20191205.enlEndNote21321347<style face="normal" font="default" size="11">The HSG Guideline Document for Modelling Integrated Urban Wastewater Systems</style>internal-pdf://2250739823/Muschalla-2008-213.pdfKWB-documents_20191205.enlEndNote21421447<style face="normal" font="default" size="11">Integrated modelling of the impact from Combined Sewer Overflows on the water quality of slow-flowing lowland rivers</style>internal-pdf://0207065121/Pawlowsky-Reusing-2008-214.pdfKWB-documents_20191205.enlEndNote18218227<style face="normal" font="default" size="11">Spurenstoffe in Mischwassereinleitungen</style>internal-pdf://3887314658/Plume-2008-182.pdfKWB-documents_20191205.enlEndNote23023027<style face="normal" font="default" size="11">Analyse der zeitlich hochaufgelösten Niederschlagsdaten 2002 in Berlin</style>internal-pdf://1649118266/Reimer-2008-230.pdfKWB-documents_20191205.enlEndNote21021047<style face="normal" font="default" size="11">Simplification of dynamic flow routing models using hybrid modelling approaches - two case studies</style>internal-pdf://1915333501/Rouault-2008-210.pdfinternal-pdf://0144354236/Rouault-2008-2102.pdfKWB-documents_20191205.enlEndNote21521547<style face="normal" font="default" size="11">A water quality based method for the assessment of CSO impact on receiving waters in Berlin</style>internal-pdf://3220148959/Schroeder-2008-215.pdfKWB-documents_20191205.enlEndNote22222227<style face="normal" font="default" size="11">Literature Review on the Open Modelling Interface and Environment (OpenMI)</style>internal-pdf://0440241803/Sonnenberg-2008-222.pdfKWB-documents_20191205.enlEndNote40840827<style face="normal" font="default" size="11">Occurrence and fate of microbial pathogens and organic trace compounds at riverbank filtration sites in Delhi, India</style>internal-pdf://0831546370/Sprenger-2008-408.pdfKWB-documents_20191205.enlEndNote23223227<style face="normal" font="default" size="11">Entwicklung eines Optimierungsmodells für die Abwasserverteilung in Berlin und Implementierung im algebraischen Modellierungssystem GAMS</style>internal-pdf://3891629614/Steinbach-2008-232.pdfKWB-documents_20191205.enlEndNote24324347<style face="normal" font="default" size="11">Research on iron-related biofilms in Berlin water wells</style>internal-pdf://3560999121/Thronicker-2008-243.pdfKWB-documents_20191205.enlEndNote18118127<style face="normal" font="default" size="11">Test und Bewertung von moderner Online-Sensorik zum Kanalnetz- und Gewässermonitoring</style>internal-pdf://3473717446/Barjenbruch-2009-181.pdfKWB-documents_20191205.enlEndNote19919927<style face="normal" font="default" size="11">Non-numerical methods for the assessment of diffuse nutrient pollution in rural catchments</style>internal-pdf://0931377916/Bugey-2009-199.pdfKWB-documents_20191205.enlEndNote30430417<style face="normal" font="default" size="100%">Filtration charaterization methods in MBR systems: A practical comparison</style>
internal-pdf://1077137000/De la Torre-2009-304.pdf
KWB-documents_20191205.enlEndNote31531517<style face="normal" font="default" size="10">Possibilities of sewer model simplifications</style>
internal-pdf://1969671722/Fischer-2009-315.pdf
KWB-documents_20191205.enlEndNote18618627<style face="normal" font="default" size="11">Identification of sources, pathways into a well and prevention from the risk of having pathogens entering abstraction wells</style>internal-pdf://1000911518/Graeber-2009-186.pdfKWB-documents_20191205.enlEndNote29529510<style face="normal" font="default" size="11">Function and relevance of aquifer recharge techniques to enable sustainable water resources management in developing and newly-industrialized countries</style>internal-pdf://0193885833/Grützmacher-2009-295.pdfKWB-documents_20191205.enlEndNote41041027<style face="normal" font="default" size="100%">Analysis of the vulnerability of bank filtration systems to climate change by comparing their effectiveness under varying environmental conditions</style>internal-pdf://3328401935/Hülshoff-2009-410.pdfKWB-documents_20191205.enlEndNote20520547<style face="normal" font="default" size="11">Management scenarios for reduced nitrate loads in a small catchment in Brittany (France) - the problem of data scarcity and the resulting predictive uncertainty</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://0986019153/Julich-2009-205.pdfKWB-documents_20191205.enlEndNote20020027<style face="normal" font="default" size="11">Hydrological and nitrate modelling for the River Ic in Brittany (France) - Simulation results and pre-liminary scenario analysis</style>internal-pdf://1555804674/Julich-2009-200.pdfKWB-documents_20191205.enlEndNote28928917<style face="normal" font="default" size="11">Sources of oxygen flux in groundwater during induced bank filtration at a site in Berlin, Germany</style>
internal-pdf://2116377217/Kohfahl-2009-289.pdf
KWB-documents_20191205.enlEndNote32332332<style face="normal" font="default" size="11">Determination of the clogging potential of drinking water wells in Berlin by an outlier analysis of well management data</style>internal-pdf://0044265522/Köpp-2009-323.pdfKWB-documents_20191205.enlEndNote23923947<style face="normal" font="default" size="11">International Review of Rainwater Harvesting Management: Practices, Market and Current Developments</style>internal-pdf://3889190242/Lesjean-2009-239.pdfKWB-documents_20191205.enlEndNote20420427<style face="normal" font="default" size="11">Retention of agricultural diffuse pollution through constructed wetlands - A case study in Iffendic (France)</style>internal-pdf://2487333300/Mangeot-2009-204.pdfKWB-documents_20191205.enlEndNote43343317<style face="normal" font="default" size="100%">Analysis of long-term dispersion in a river-recharged aquifer using tritium/helium data</style>
internal-pdf://2997902670/Massmann-2009-433.pdf
KWB-documents_20191205.enlEndNote31231217<style face="normal" font="default" size="11">The HSG procedure for modelling integrated urban wastewater systems</style>
internal-pdf://2832168054/Muschalla-2009-312.pdf
KWB-documents_20191205.enlEndNote17417427<style face="normal" font="default" size="11">Advanced statistical analyses of well data. </style>internal-pdf://0211990336/Orlikowski-2009-174.pdfKWB-documents_20191205.enlEndNote28428447<style face="normal" font="default" size="11">The Berlin Force Main Model - Application of InfoWorks 9.5 CS® for the evaluation of a large force main network and the pollution load to a WWTP</style>internal-pdf://2838461663/Pawlowsky-Reusing-2009-284.pdfinternal-pdf://1701936413/Pawlowsky-Reusing-2009-2841.pdfKWB-documents_20191205.enlEndNote30930927<style face="normal" font="default" size="100%">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://3204281291/Riechel-2009-309.pdfKWB-documents_20191205.enlEndNote40140127<style face="normal" font="default" size="100%">Bank Filtration Simulator - Manual</style>internal-pdf://0245260503/Rustler-2009-401.pdfKWB-documents_20191205.enlEndNote18018017<style face="normal" font="default" size="11">Water and phosphorus mass balance of Lake Tegel and Schlachtensee - A modelling approach</style>
internal-pdf://2830546580/Schauser-2009-180.pdf
KWB-documents_20191205.enlEndNote22022027<style face="normal" font="default" size="11">Erläuterungsbericht zur weiteren Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung von Mischwasserentlastungen im September 2005</style>internal-pdf://3361378009/Schumacher-2009-220.pdfKWB-documents_20191205.enlEndNote27527527<style face="normal" font="default" size="11">Applicability of OpenMI and API for coupling models within MIA-CSO</style>internal-pdf://3994582957/Sonnenberg-2009-275.pdfKWB-documents_20191205.enlEndNote17817847<style face="normal" font="default" size="11">Dimensioning of a stormwater tank using long-term simulation and assessment of uncertainties</style>internal-pdf://3286333735/Sonnenberg-2009-178.pdfKWB-documents_20191205.enlEndNote19819827<style face="normal" font="default" size="11">Selection of a watershed model used to predict the effects of management decisions on water quality based on multi-criteria comparison</style>internal-pdf://4093095998/Strube-2009-198.pdfKWB-documents_20191205.enlEndNote32032017<style face="normal" font="default" size="100%">Forschungsprojekt ENREM Kleinkläranlagen mit Membrantechnik</style>
internal-pdf://2395272505/Stüber-2009-320.pdf
KWB-documents_20191205.enlEndNote30530517<style face="normal" font="default" size="100%">Operation of MBR memebrane modules used in a decentralised wastewater treatment plant: Filed study and comparison of different cleaning strategies</style>
internal-pdf://0660130761/Stüber-2009-305.pdf
KWB-documents_20191205.enlEndNote19719727<style face="normal" font="default" size="11">Diffuse trace contaminants with relevance for drinking water production in rural and semi-rural areas</style>internal-pdf://3578049432/Tedesco-2009-197.pdfKWB-documents_20191205.enlEndNote38738727<style face="normal" font="default" size="100%">Untersuchung des Betriebsverhaltens von Kleinkläranlagen unter besonderen Betriebsbedingungen - Vergleichende Studie auf dem Testfeld des BDZ in Leipzig</style>internal-pdf://1652428170/Barjenbruch-2010-387.pdfinternal-pdf://1716625962/Barjenbruch-2010-3872.pdfKWB-documents_20191205.enlEndNote35835827<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in South Africa</style>internal-pdf://1634298472/Boulestreau-2010-358.pdfKWB-documents_20191205.enlEndNote43143117<style face="normal" font="default" size="100%">Searching for a universal fouling indicator for membrane bioreactors</style>
internal-pdf://1419451371/De la Torre-2010-431.pdf
KWB-documents_20191205.enlEndNote39539517<style face="normal" font="default" size="100%">Filterability assessment in membrane bioreactors using an in-situ filtration test cell</style>
internal-pdf://1822122761/De la Torre-2010-395.pdf
KWB-documents_20191205.enlEndNote39639617<style face="normal" font="default" size="100%">Activated sludge model based modelling of membrane bioreactor (MBR) processes: A critical review with special regard to MBR specifities</style>
internal-pdf://0143482783/Fenu-2010-396.pdf
KWB-documents_20191205.enlEndNote35135127<style face="normal" font="default" size="100%">Investigation of pre-ozonation on the performance of membrane filtration (Oxeram 1 - D 4.2)</style>internal-pdf://0435312485/Genz-2010-351.pdfKWB-documents_20191205.enlEndNote34834847<style face="normal" font="default" size="11">The effect of pre-ozonation and subsequent coagulation on the filtration of WWTP effluent with low-pressure membranes </style>internal-pdf://3892538881/Genz-2010-348.pdfKWB-documents_20191205.enlEndNote31431417<style face="normal" font="default" size="100%">Microcystin Elimination during Sediment Contact.</style>
internal-pdf://3566063005/Grützmacher-2010-314.pdfinternal-pdf://1261686236/Grützmacher-2010-3142.pdf
KWB-documents_20191205.enlEndNote40940927<style face="normal" font="default" size="100%">Feasibility Study on Post-treatment Options after Riverbank Filtration in Delhi: Minimum Requirements</style>internal-pdf://2410767050/Hoa-2010-409.pdfKWB-documents_20191205.enlEndNote36236227<style face="normal" font="default" size="100%">Development of UV-LED disinfection</style>internal-pdf://3992219074/Kneissl-2010-362.pdfKWB-documents_20191205.enlEndNote33533527<style face="normal" font="default" size="100%">Properties of Atrazine and Bentazone</style>internal-pdf://0134574052/Krause-2010-335.pdfKWB-documents_20191205.enlEndNote39339347<style face="normal" font="default" size="100%">Ten persistent myths and the realities of the MBR technology for municipal applications</style>internal-pdf://0662398641/Lesjean-2010-393.pdfKWB-documents_20191205.enlEndNote38338317<style face="normal" font="default" size="100%">A Simple Method to Hide Data Loggers Safely in Observation Wells</style>KWB-documents_20191205.enlEndNote34034017<style face="normal" font="default" size="100%">Assessment of the potential for bank filtration in a water-stressed megacity (Delhi, India)</style>internal-pdf://2871090588/Lorenzen-2010-340.pdfKWB-documents_20191205.enlEndNote37437447<style face="normal" font="default" size="100%">Buffer system implementation with increased infiltration and nitrate retention capacity - A case study from Brittany, France</style>internal-pdf://0180381938/Matzinger-2010-374.pdfKWB-documents_20191205.enlEndNote34734727<style face="normal" font="default" size="100%">Ergebnisse der bundesweiten DVGW-Umfrage zur Instandhaltung von Brunnen 2009</style>internal-pdf://1281191191/Orlikowski-2010-347.pdfKWB-documents_20191205.enlEndNote34534547<style face="normal" font="default" size="100%">Application of stormwater impact assessment guidelines for urban lowland rivers – the challenge of distinction between background pollution and impacts of combined sewer overflows (CSO) (presented by Andreas Matzinger, participation of Pascale Rouault and Nicolas Caradot)</style>internal-pdf://2372101481/Riechel-2010-345.pdfKWB-documents_20191205.enlEndNote34334347<style face="normal" font="default" size="100%">Online monitoring for evaluation of CSO impact on surface water (presented by Hauke Sonnenberg)</style>internal-pdf://2588210052/Rouault-2010-343.pdfKWB-documents_20191205.enlEndNote40040027<style face="normal" font="default" size="100%">State-of-the-art in the field of well field optimization modelling</style>internal-pdf://3291177253/Rustler-2010-400.pdfKWB-documents_20191205.enlEndNote35335317<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>
internal-pdf://0371876944/Schwarzböck-2010-353.pdfinternal-pdf://1622172815/Schwarzböck-2010-3532.pdf
KWB-documents_20191205.enlEndNote35435447<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>internal-pdf://3159059501/Schwarzböck-2010-354.pdfinternal-pdf://3811601515/Schwarzböck-2010-3542.pdfKWB-documents_20191205.enlEndNote40640617<style face="normal" font="default" size="100%">Vulnerability of bank filtration systems to climate change</style>
internal-pdf://1645240379/Sprenger-2010-406.pdf
KWB-documents_20191205.enlEndNote38838827<style face="normal" font="default" size="100%">Treatment of urine with zero-valent iron to minimize the aquatic pollution with compounds emitted by hospitals</style>internal-pdf://0800416677/Stieber-2010-388.pdfKWB-documents_20191205.enlEndNote32232227<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor</style>internal-pdf://0236221075/Stüber-2010-322.pdfKWB-documents_20191205.enlEndNote37237217<style face="normal" font="default" size="100%">Contribution of combined sewer overflows to trace contaminant loads in urban streams</style>
internal-pdf://2873321480/Weyrauch-2010-372.pdf
KWB-documents_20191205.enlEndNote38438417<style face="normal" font="default" size="100%">Removal of bacterial fecal indicators, coliphages and enteric adenoviruses from waters with high fecal pollution by slow sand filtration</style>
internal-pdf://2101110698/Bauer-2011-384.pdf
KWB-documents_20191205.enlEndNote42442417<style face="normal" font="default" size="100%">Optimierung des Abbaus organischer Belastungen durch die Kombination von Ozonung und Untergrundpassage</style>
internal-pdf://2029525917/Gnirss-2011-424.pdf
KWB-documents_20191205.enlEndNote48148117<style face="normal" font="default" size="100%">Report on current research needs in managed aquifer recharge published by the WssTP</style>internal-pdf://0424759161/Grützmacher-2011-481.pdfKWB-documents_20191205.enlEndNote45745717<style face="normal" font="default" size="100%">Abbau von Stoffspuren in natürlichen und künstlichen Systemen der Infiltration von Wasser</style>
internal-pdf://2735925201/Grützmacher-2011-457.pdf
KWB-documents_20191205.enlEndNote41441447<style face="normal" font="default" size="100%">Behaviour of trace organics during drinking water production via subsurface passage</style>internal-pdf://4279787017/Grützmacher-2011-414.pdfKWB-documents_20191205.enlEndNote48948947<style face="normal" font="default" size="100%">Zum Verhalten von organischen Spurestoffen bei der Trinkwassergewinnung durch Untergrundpassage in Berlin</style>internal-pdf://0074665927/Grützmacher-2011-489.pdfKWB-documents_20191205.enlEndNote46446447<style face="normal" font="default" size="100%">Impact of well operation on iron-related clogging in quarternary aquifers in Berlin, Germany </style>internal-pdf://2632339992/Menz-2011-464.pdfKWB-documents_20191205.enlEndNote43543517<style face="normal" font="default" size="100%">Development of a GIS method to localize critical source areas of diffuse nitrate pollution</style>
internal-pdf://1064827370/Orlikowski-2011-435.pdf
KWB-documents_20191205.enlEndNote43643647<style face="normal" font="default" size="100%">Implementation of small organically enriched constructed wetlands to mitigate agricultural nitrate hotspots in Brittany, France</style>internal-pdf://1931695162/Périllon-2011-436.pdfinternal-pdf://0382620792/Périllon-2011-4362.pdfKWB-documents_20191205.enlEndNote48048017<style face="normal" font="default" size="100%">Methodik der Ökobilanz zur ganzheitlichen Erfassung des Energieverbrauchs in der Abwasserreinigung</style>
internal-pdf://2553684421/Remy-2011-480.pdf
KWB-documents_20191205.enlEndNote50750747<style face="normal" font="default" size="100%">Towards an Impact-based Planning Instrument for Combined Sewer Management in Berlin, Germany. </style>internal-pdf://0453724341/Riechel-2011-507.pdfKWB-documents_20191205.enlEndNote39939927<style face="normal" font="default" size="100%">Decision Support System for Bank Filtration Systems</style>internal-pdf://2793693555/Rustler-2011-399.pdfKWB-documents_20191205.enlEndNote40240227<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling </style>internal-pdf://0476536064/Rustler-2010-402.pdfKWB-documents_20191205.enlEndNote40340327<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://0798843017/Rustler-2011-403.pdfKWB-documents_20191205.enlEndNote41641647<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://1339906985/Rustler-2011-416.pdfinternal-pdf://4121648103/Rustler-2011-4162.pdfKWB-documents_20191205.enlEndNote45645627<style face="normal" font="default" size="100%">Laboratory column experiments on options for redox control in infiltration ponds for artificial recharge</style>internal-pdf://3458748593/Scheytt-2011-456.pdfKWB-documents_20191205.enlEndNote44744710<style face="normal" font="default" size="100%">Elektronische Nasen als Tool für Geruchsmanagement in Abwasserkanalisationen – Test und Bewertung von vier Multigas-Sensorsystemen</style>internal-pdf://3961345004/Schwarzböck-2011-447.pdfKWB-documents_20191205.enlEndNote44644647<style face="normal" font="default" size="100%">Different methods of CSO identification in sewer systems and receiving waters</style>internal-pdf://1757960287/Sonnenberg-2011-446.pdfKWB-documents_20191205.enlEndNote46546527<style face="normal" font="default" size="100%">WELLMA-DNA Final Report: Documentation of data acquisition and conclusions</style>internal-pdf://1708847505/Thronicker-2011-465.pdfKWB-documents_20191205.enlEndNote45145127<style face="normal" font="default" size="100%">Microorganisms in soils & sediments. Detection, quantification and activity. Deliverable 2.2</style>internal-pdf://1661229073/Van der Velde-2011-451.pdfKWB-documents_20191205.enlEndNote45545527<style face="normal" font="default" size="100%">Development of Toxic Nostocales (Cyanobacteria) in the Course of Declining Trophic State and Global Warming - NOSTOTOX Final Report</style>internal-pdf://0344078589/Wiedner-2011-455.pdfKWB-documents_20191205.enlEndNote37137117<style face="normal" font="default" size="100%">Application of GaN-based ultraviolet-C light emitting diodes - UV LEDs - for water disinfection</style>
internal-pdf://2469273601/Würtele-2011-371.pdf
KWB-documents_20191205.enlEndNote55155127<style face="normal" font="default" size="100%">Database of relevant pollutants in urban areas and their attenuation at RBF sites. Deliverable 1.1</style>internal-pdf://0947208175/Adlakha-2012-551.pdfKWB-documents_20191205.enlEndNote49449427<style face="normal" font="default" size="100%">Continuous Monitoring of Combined Sewer Overflows in the Sewer and the Receiving River: Return on Experience</style>internal-pdf://3006218067/Caradot-2012-494.pdfKWB-documents_20191205.enlEndNote49149117<style face="normal" font="default" size="100%">Climate change and the water sector in Europe: A review of research and technology development needs</style>internal-pdf://0110501701/Escaler-2012-491.pdfKWB-documents_20191205.enlEndNote52752747<style face="normal" font="default" size="100%">Fouling von Ultrafiltrationsmembranen - Relevanz von Proteinen und Analyse mit MALDI-TOF-MS</style>internal-pdf://4094183309/Godehardt-2012-527.pdfKWB-documents_20191205.enlEndNote52852847<style face="normal" font="default" size="100%">Influence of ozonation and coagulation as pretreatment steps for ultrafiltration in advanced wastewater treatment</style><style face="normal" font="default" size="11">.</style>internal-pdf://0956254889/Godehardt-2012-528.pdfKWB-documents_20191205.enlEndNote48748727<style face="normal" font="default" size="100%">International market review of pumps available for groundwater abstraction </style>internal-pdf://0919751259/Höchel-2012-487.pdfKWB-documents_20191205.enlEndNote47747717<style face="normal" font="default" size="100%">Potentiale für den Einsatz von Nährstoff-Filtersystemen in Deutschland zur Verringerung der Nährstoffeinträge in Oberflächengewässer</style>
internal-pdf://3601015471/Holsten-2012-477.pdf
KWB-documents_20191205.enlEndNote53853832<style face="normal" font="default" size="100%">Rapid Sand Filter Design - A Comparative study on Danish and German groundwater treatment. – Bachelor Thesis, , 114.</style>internal-pdf://4060889882/Jensen-2012-538.pdfKWB-documents_20191205.enlEndNote52352347<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration in tertiary treatment: Performance and operation</style>internal-pdf://0459208446/Langer-2012-523.pdfKWB-documents_20191205.enlEndNote56356332<style face="normal" font="default" size="100%">Aufbau einer MS-Access-Datenbank zur Versuchsdokumentation</style>internal-pdf://3079553647/Linge-2012-563.pdfKWB-documents_20191205.enlEndNote50950947<style face="normal" font="default" size="100%">A large urban river under pressure - Research and actions for the mitigation of impacts from combined sewer overflows in Berlin, Germany.</style>internal-pdf://4291447324/Matzinger-2012-509.pdfKWB-documents_20191205.enlEndNote51251217<style face="normal" font="default" size="100%">Hypolimnetic Oxygen Depletion in Eutrophic Lakes</style>
internal-pdf://0640995138/Müller-2012-512.pdf
KWB-documents_20191205.enlEndNote47547527<style face="normal" font="default" size="100%">LCA study of sludge treatment line in WWTP Berlin-Waßmannsdorf: Final report of project CoDiGreen work package 2</style>internal-pdf://0622611908/Remy-2012-475.pdfKWB-documents_20191205.enlEndNote47647627<style face="normal" font="default" size="100%">LCA study of Braunschweig wastewater scheme: Final report of project CoDiGreen work package 2</style>internal-pdf://0553602407/Remy-2012-476.pdfKWB-documents_20191205.enlEndNote54954927<style face="normal" font="default" size="100%">Optimisation of energy and nutrient recovery in wastewater treatment schemes (Executive Summary)</style>internal-pdf://2562933281/Remy-2012-549.pdfKWB-documents_20191205.enlEndNote55055027<style face="normal" font="default" size="100%">Optimierung der Energie- und Nährstoffrückgewinnung in der Abwasserbehandlung (Kurzfassung)</style>internal-pdf://1892696531/Remy-2012-550.pdfKWB-documents_20191205.enlEndNote49049017<style face="normal" font="default" size="100%">Using the Life Cycle Assessment methodology for a comprehensive evaluation of energy demand in wastewater treament</style>internal-pdf://0247996791/Remy-2012-490.pdfKWB-documents_20191205.enlEndNote51551547<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0230639875/Remy-2012-515.pdfinternal-pdf://3553642818/Remy-2012-5152.pdfKWB-documents_20191205.enlEndNote50850847<style face="normal" font="default" size="100%">Validation and sensitivity of a coupled model tool for CSO impact assessment in Berlin, Germany.</style>internal-pdf://1200639116/Riechel-2012-508.pdfKWB-documents_20191205.enlEndNote50650617<style face="normal" font="default" size="100%">Immissionsorientierte Mischwasserbewirtschaftung</style>
internal-pdf://3752730859/Riechel-2012-506.pdf
KWB-documents_20191205.enlEndNote51351347<style face="normal" font="default" size="100%">Mitigation systems to attenuate diffuse agricultural pollution: location and design choice</style>internal-pdf://2569488487/Rouault-2012-513.pdfKWB-documents_20191205.enlEndNote51751747<style face="normal" font="default" size="100%">Development of a planning instrument to reduce future ecosystem impacts of combined sewer overflows in the Berlin River Spree.</style>internal-pdf://3553837445/Rouault-2012-517.pdfKWB-documents_20191205.enlEndNote54254227<style face="normal" font="default" size="100%">Decision Support for managing substance flows within the Berlin water cycle under climate change conditions – Synthesis Report</style>internal-pdf://0332475253/Rustler-2012-542.pdfKWB-documents_20191205.enlEndNote52452447<style face="normal" font="default" size="100%">Kolloidales Fouling von Niederdruckmembranen in der weitergehenden Abwasserreinigung: Analyse und Maßnahmen zur Verringerung</style>internal-pdf://2818656297/Schulz-2012-524.pdfKWB-documents_20191205.enlEndNote49249227<style face="normal" font="default" size="100%">Market Review on Available Instruments for Odour Measurement</style>internal-pdf://2779597886/Schwarzböck-2012-492.pdfKWB-documents_20191205.enlEndNote53353347<style face="normal" font="default" size="100%">Evaluation of the ageing potential of drinking water wells to optimize well operation and maintenance.</style>internal-pdf://1317420197/Schwarzmüller-2012-533.pdfKWB-documents_20191205.enlEndNote54854827<style face="normal" font="default" size="100%">Risk assessment auf Braunschweig wastewater reuse scheme</style>internal-pdf://2435596599/Seis-2012-548.pdfKWB-documents_20191205.enlEndNote48848847<style face="normal" font="default" size="100%">A catalogue and matrix of initiatives as a toolbox for utilities to enhance their preparedness for climate change</style>internal-pdf://2629521413/Staub-2012-488.pdfKWB-documents_20191205.enlEndNote49849847<style face="normal" font="default" size="100%">Potentials for energy savings through drinking water well field optimisation</style>internal-pdf://2182232410/Staub-2012-498.pdfKWB-documents_20191205.enlEndNote94794727<style face="normal" font="default" size="100%">Leitfaden: Polare organische Spurenstoffe als Indikatoren im anthropogen beeinflussten Wasserkreislauf</style>internal-pdf://3423964950/Bergmann-2013-947.pdfKWB-documents_20191205.enlEndNote66466427<style face="normal" font="default" size="100%">Review of current asset management strategies for sewer systems: results from a survey among European cities.</style>internal-pdf://0113292089/Caradot-2013-664.pdfKWB-documents_20191205.enlEndNote61561547<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies</style>internal-pdf://2892685862/Abstract_EJSW2013_Delpth_Caradot.docKWB-documents_20191205.enlEndNote59259232<style face="normal" font="default" size="100%">Developing an Advanced Pump Database For Drinking Water Well Fields</style>internal-pdf://3599515225/Eslami-2013-592.pdfKWB-documents_20191205.enlEndNote64964947<style face="normal" font="default" size="100%">Geogenic groundwater contamination – Definition, occurrence and relevance for drinking water production</style>
internal-pdf://3943533851/Grützmacher-2013-649.pdf
KWB-documents_20191205.enlEndNote56256217<style face="normal" font="default" size="100%">Sustainable Sewage Sludge Management Fostering Phosphorus Recovery</style>
internal-pdf://2780970523/Kabbe-2013-562.pdf
KWB-documents_20191205.enlEndNote64064047<style face="normal" font="default" size="100%">Implementation of Phosphorus Recovery from the wastewater stream – The European FP7 project P-REX</style>internal-pdf://0975755479/Kabbe-2013-640.pdfKWB-documents_20191205.enlEndNote66366327<style face="normal" font="default" size="100%">Review of sewer deterioration models</style>internal-pdf://1914220386/Kley-2013-663.pdfKWB-documents_20191205.enlEndNote66266227<style face="normal" font="default" size="100%">Review of available technologies and methodologies for sewer condition evaluation</style>internal-pdf://2503540940/Kley-2013-662.pdfKWB-documents_20191205.enlEndNote63663617<style face="normal" font="default" size="100%">Concurrent nitrate and atrazine retention in bioreactors of straw and bark mulch at short hydraulic residence times</style>
internal-pdf://3967446471/Krause Camilo-2013-636.pdf
KWB-documents_20191205.enlEndNote63463447<style face="normal" font="default" size="100%">Modellbasiertes Werkzeug - immissionsbasierte Massnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://0120693934/Matzinger-2013-634.pdfKWB-documents_20191205.enlEndNote63563547<style face="normal" font="default" size="100%">Aufbau, Validierung und Anwendung eines modellbasierten Werkzeugs für die immissionsbasierte Maßnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://1822383364/Matzinger-2013-635.pdfKWB-documents_20191205.enlEndNote61761747<style face="normal" font="default" size="100%">Managed Aquifer Recharge with Reclaimed Water –Optimization of Pre-treatment via Ozonation</style>internal-pdf://3223058735/Miehe-2013-617.pdfKWB-documents_20191205.enlEndNote51951917<style face="normal" font="default" size="100%">Identifying energy and carbon footprint optimization potentials of a sludge treatment line with Life Cycle Assessment</style>
internal-pdf://0035266857/Remy-2013-519.pdf
KWB-documents_20191205.enlEndNote65665647<style face="normal" font="default" size="100%">Multigas-sensor systems for sewer odour measurement - Evaluation of four different E-noses based on tests under realistic conditions</style>internal-pdf://0831797502/Rouault-2013-656.pdfKWB-documents_20191205.enlEndNote59159132<style face="normal" font="default" size="100%">Energy optimisation of drinking water well field operation</style>internal-pdf://3919260440/Sáinz-García-2013-591.pdfKWB-documents_20191205.enlEndNote56656647<style face="normal" font="default" size="100%">Novel wastewater process scheme for maximum COD extraction: high load MBBR followed by microsieve filtration</style>internal-pdf://4262215055/Schubert-2013-566.pdfinternal-pdf://3547479501/Schubert-2013-5662.pdfKWB-documents_20191205.enlEndNote58558527<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der deskriptiven Datenanalyse</style>internal-pdf://0987376330/Schwarzmüller-2013-585.pdfKWB-documents_20191205.enlEndNote66166127<style face="normal" font="default" size="100%">WELLMA-2 Synthesis report</style>internal-pdf://2065132266/Schwarzmüller-2013-661.pdfKWB-documents_20191205.enlEndNote56056017<style face="normal" font="default" size="100%">Auswirkung unterschiedlicher Schüttmaterialien auf die Verockerung und Regenerierbarkeit von Brunnen</style>
internal-pdf://0458629277/Schwarzmüller-2013-560.pdf
KWB-documents_20191205.enlEndNote58658627<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der Feld- und Laborarbeiten an Brunnen SPAsued10-/1983V</style>internal-pdf://0130886049/Schwarzmüller-2013-586.pdfKWB-documents_20191205.enlEndNote63063047<style face="normal" font="default" size="100%">Risk assessment of the wastewater reuse system of Braunschweig</style>internal-pdf://1560697257/Seis-2013-630.pdfKWB-documents_20191205.enlEndNote55855827<style face="normal" font="default" size="100%">Market potential of MAR solutions with reclaimed water for non-potable reuse</style>internal-pdf://0657534141/Staub-2013-558.pdfKWB-documents_20191205.enlEndNote55755727<style face="normal" font="default" size="100%">Hybrid concepts for MAR with reclaimed water for non-potable reuse</style>internal-pdf://0592920793/Staub-2013-557.pdfKWB-documents_20191205.enlEndNote59459427<style face="normal" font="default" size="100%">Hybrid Concepts for MAR with Reclaimed Water for for Nonpotable Reuse (D1.1)</style>internal-pdf://3221240232/Staub-2013-594.pdfKWB-documents_20191205.enlEndNote56556527<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions in Berlin</style>internal-pdf://3462347785/Uldack-2013-565.pdfKWB-documents_20191205.enlEndNote56856817<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Zukunftsvision oder doch schon Realität?</style>
internal-pdf://2477248182/Weigert-2013-568.pdf
KWB-documents_20191205.enlEndNote64764727<style face="normal" font="default" size="100%">Eco-engineering systems for removal of micropollutants from WWTP effluents – existing knowledge</style>internal-pdf://1824214379/Wicke-2013-647.pdfKWB-documents_20191205.enlEndNote65565527<style face="normal" font="default" size="100%">Recommendations for energy positive wastewater schemes. D 1.1 - Final project report</style>internal-pdf://3942124771/Boulestreau-2014-655.pdfKWB-documents_20191205.enlEndNote69769727<style face="normal" font="default" size="100%">Final Report on the Implementation of a Wetland Module for the Soil and Water Assessment Tool (SWAT)</style>internal-pdf://3650491691/Breuer-2014-697.pdfKWB-documents_20191205.enlEndNote73373327<style face="normal" font="default" size="100%">Characterization of European managed aquifer recharge (MAR) sites - Analysis</style>internal-pdf://3369859957/Hannappel-2014-733.pdfKWB-documents_20191205.enlEndNote67367327<style face="normal" font="default" size="100%">Abschlussbericht NITROLIMIT I: Stickstofflimitation in Binnengewässern – Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar?</style>internal-pdf://0308015807/Nixdorf-2014-673.pdfKWB-documents_20191205.enlEndNote69469447<style face="normal" font="default" size="100%">Integrating concepts for energy and resource recovery from municipal wastewater with LCA.</style>internal-pdf://3115070902/Remy-2014-694.pdfKWB-documents_20191205.enlEndNote93493417<style face="normal" font="default" size="100%">Comparing environmental impacts of tertiary wastewater treatment technologies for advanced phosphorus removal and disinfection with life cycle assessment</style>
internal-pdf://1446805903/Remy-2014-934.pdf
KWB-documents_20191205.enlEndNote77477427<style face="normal" font="default" size="100%">Schlussbericht Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5 "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://4256193931/Schwarzmüller-2014-774.pdfKWB-documents_20191205.enlEndNote71271247<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen - Forschungsprogramm UEP II Berlin</style>internal-pdf://2891585415/Sommer-2014-712.pdfKWB-documents_20191205.enlEndNote73473417<style face="normal" font="default" size="100%">Hydrogeochemistry of Urban Floodplain Aquifer Under the Influence of Contaminated River Seepage in Delhi (India)</style>
internal-pdf://1463418404/Sprenger-2014-734.pdf
KWB-documents_20191205.enlEndNote69369317<style face="normal" font="default" size="100%">Aus Wasser und Asche - Die Forschungsinitiative P-REX will die Entwicklung von effizienten technischen Lösungen des Phosphor-Recyclings aus Abwasser in Europa beschleunigen</style>
internal-pdf://0908998538/Stemann-2014-693.pdf
KWB-documents_20191205.enlEndNote72572527<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Modeling Scenarios -</style>internal-pdf://4223856157/Thomas-2014-725.pdfKWB-documents_20191205.enlEndNote70270217<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>internal-pdf://0629175243/Weigert-2014-702.pdfKWB-documents_20191205.enlEndNote68568547<style face="normal" font="default" size="100%">Monitoring of micropollutant loads in urban stormwater on city scale - Strategy and realization</style>internal-pdf://2022940295/Wicke-2014-685.pdfKWB-documents_20191205.enlEndNote77577527<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Zwischenbericht</style>internal-pdf://2628871933/Wicke-2014-775.pdfKWB-documents_20191205.enlEndNote68668627<style face="normal" font="default" size="100%">Pilot Sites for Mitigation of Diffuse Pollution in Ic Amont Catchment (Brittany)</style>internal-pdf://2013377592/Wicke-2014-686.pdfKWB-documents_20191205.enlEndNote91391327<style face="normal" font="default" size="100%">D11.2 Demonstration of MAR effects on groundwater resources – development and application of different approaches for risk and impact assessment</style>internal-pdf://2325174443/de la Loma Gonzalez-2015-913.pdfKWB-documents_20191205.enlEndNote81581532<style face="normal" font="default" size="100%">The influence of rainfall characteristics and further climate properties on trace pollutants in urban stormwater runoff</style>internal-pdf://2557113571/Eichler-2015-815.pdfKWB-documents_20191205.enlEndNote85385327<style face="normal" font="default" size="100%">Annual progress report on the implementation of water reuse in El Port de la Selva - 2015</style>internal-pdf://3993566817/Frigola-2015-853.pdfKWB-documents_20191205.enlEndNote91591527<style face="normal" font="default" size="100%">Field investigations and risk assessment in La Vall d’Uixó (Castellón, Spain)</style>internal-pdf://1923965111/Gibert-2015-915.pdfKWB-documents_20191205.enlEndNote85185127<style face="normal" font="default" size="100%">Field investigations in Sant Vicenç dels Horts (Barcelona, Spain): MAR effects on groundwater resources</style>internal-pdf://1594162130/Gibert-2015-851.pdfinternal-pdf://3427990701/Gibert-2015-8512.pdfKWB-documents_20191205.enlEndNote84984927<style face="normal" font="default" size="100%">Unique selling propositions (D51.1)</style>internal-pdf://3327326780/Gross-2015-849.pdfKWB-documents_20191205.enlEndNote91191127<style face="normal" font="default" size="100%">Unique selling propositions (D51.1)</style>internal-pdf://4200616595/Gross-2015-911.pdfKWB-documents_20191205.enlEndNote91091027<style face="normal" font="default" size="100%">D12.2 Pre-requisites and design criteria for new MAR systems in compliance with EU WFD and GWD (including pre-treatment)</style>internal-pdf://1756582157/Huber-2015-910.pdfKWB-documents_20191205.enlEndNote75675617<style face="normal" font="default" size="100%">Closing the Nutrient Cycle - Circular Economy Thinking for Phosphorus Recovery</style>
internal-pdf://0178077443/Kabbe-2015-756.pdf
KWB-documents_20191205.enlEndNote76676647<style face="normal" font="default" size="100%">Review of promising Methods for Phosphorus Recovery and Recycling from Wastewater</style>internal-pdf://2085259822/Kabbe-2015-766.pdfKWB-documents_20191205.enlEndNote83783727<style face="normal" font="default" size="100%">Modelling of asset management strategies in Braunschweig. Internal Report 3</style>internal-pdf://2757923102/Kästner-2015-837.pdfKWB-documents_20191205.enlEndNote81781732<style face="normal" font="default" size="100%">Phosphorus recovery from wastewater – Risk assessment for recycling in agriculture</style>internal-pdf://3816365239/Kraus-2015-817.pdfKWB-documents_20191205.enlEndNote81981927<style face="normal" font="default" size="100%">Quantitative risk assessment of potential hazards for humans and the environment: quantification of potential hazards resulting from agricultural use of the manufactured fertilizers (D9.1)</style>internal-pdf://2439847563/Kraus-2015-819.pdfKWB-documents_20191205.enlEndNote81481432<style face="normal" font="default" size="100%">Identification of individual rain events and evaluation of their specific characteristics from pluviograph records: A review with analysis of data from a project investigating micro pollutant loads in Berlin rainwater runoff</style>internal-pdf://3852596911/Masch-2015-814.pdfKWB-documents_20191205.enlEndNote81281247<style face="normal" font="default" size="100%">Stormwater runoff leads to pollution peaks in small urban stream</style>internal-pdf://0341552465/Matzinger-2015-812.pdfKWB-documents_20191205.enlEndNote85485417<style face="normal" font="default" size="100%">Vergleich von Desinfektionsverfahren für eine landwirtschaftliche Wasserwiederverwendung in Braunschweig</style>
internal-pdf://2415792366/Miehe-2015-854.pdf
KWB-documents_20191205.enlEndNote81381317<style face="normal" font="default" size="100%">Life Cycle Assessment modelling of stormwater treatment systems</style>
internal-pdf://3110451928/O'Sullivan-2015-813.pdf
KWB-documents_20191205.enlEndNote78078047<style face="normal" font="default" size="100%">How to find suitable locations for in-sewer storage? - Test on a combined sewer catchment in Berlin</style>internal-pdf://0848460257/Philippon-2015-780.pdfKWB-documents_20191205.enlEndNote86186117<style face="normal" font="default" size="100%">Technische Entwicklung in der Tagebauentwässerung - ein Überblick</style>
internal-pdf://0879466699/Reich-2015-861.pdf
KWB-documents_20191205.enlEndNote89389327<style face="normal" font="default" size="100%">Comparative Life Cycle Assessment of treatment-recovery paths (D9.2)</style>internal-pdf://0517881557/Remy-2015-893.pdfKWB-documents_20191205.enlEndNote82182127<style face="normal" font="default" size="100%">Life Cycle Assessment of selected processes for P recovery from sewage sludge, sludge liquor, or ash - D9.2</style>internal-pdf://1977294865/Remy-2015-821.pdfKWB-documents_20191205.enlEndNote84584527<style face="normal" font="default" size="100%">Weiterentwicklung des Klima- und Ressourceneffizienzpotentials durch HTC-Behandlung ausgewählter Berliner Klärschlämme - HTC-Berlin (11443UEPII/2)</style>internal-pdf://2438919938/Remy-2015-845.pdfKWB-documents_20191205.enlEndNote75075017<style face="normal" font="default" size="100%">Hydrothermale Carbonisierung: Eine neue Option der Klärschlammbehandlung? Theoretische Energie/CO2-Bilanz</style>
internal-pdf://0503371832/Remy-2015-750.pdf
KWB-documents_20191205.enlEndNote78178147<style face="normal" font="default" size="100%">A Holistic Assessment Approach to Quantify the Effects of Adaptation Measures on CSO and Flooding</style>internal-pdf://0470580352/Riechel-2015-781.pdfKWB-documents_20191205.enlEndNote82982917<style face="normal" font="default" size="100%">Phosphorus management in Europe in a changing world</style>
internal-pdf://1272963796/Schoumans-2015-829.pdf
KWB-documents_20191205.enlEndNote80980947<style face="normal" font="default" size="100%">Monitoring of trace organic contaminants in stormwater runoff from five catchments in Berlin</style>internal-pdf://3490228227/Schubert-2015-809.pdfKWB-documents_20191205.enlEndNote84384327<style face="normal" font="default" size="100%">Appropriate and user friendly methodologies for Risk assessment, Life Cycle Assessment, and Water Footprinting (D3.1)</style>internal-pdf://0973403531/Seis-2015-843.pdfKWB-documents_20191205.enlEndNote80780727<style face="normal" font="default" size="100%">Application of the Australian Guidelines for Water Recycling: Managing Health and Environmental Risks</style>internal-pdf://2926113496/Seis-2015-807.pdfKWB-documents_20191205.enlEndNote80680627<style face="normal" font="default" size="100%">Hydraulic characterisation of managed aquifer recharge sites by tracer techniques</style>internal-pdf://4017091132/Sprenger-2015-806.pdfKWB-documents_20191205.enlEndNote81081047<style face="normal" font="default" size="100%">Towards assessing the relevance of micropollutants in stormwater discharged to Berlin surface waters</style>internal-pdf://3394129082/Wicke-2015-810.pdfKWB-documents_20191205.enlEndNote80180127<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Abschlussbericht</style>internal-pdf://0064736445/Wicke-2015-801.pdfKWB-documents_20191205.enlEndNote81181147<style face="normal" font="default" size="100%">Monitoring of catchment-specific micropollutant contamination in stormwater of Berlin</style>internal-pdf://1354080139/Wicke-2015-811.pdfKWB-documents_20191205.enlEndNote8308306<style face="normal" font="default" size="100%">Sewage sludge management in Germany</style>internal-pdf://1497578304/Wiechmann-2015-830.pdfKWB-documents_20191205.enlEndNote86086032<style face="normal" font="default" size="100%">Energie- und Treibhausgasbilanz ausgewählter Szenarien zur Klärschlammentsorgung mit Hydrothermaler Karbonisierung in Berlin</style>internal-pdf://1223307457/Zander-2015-860.pdfKWB-documents_20191205.enlEndNote95895817<style face="normal" font="default" size="100%">The relevance of sewer deterioration modelling to support asset management strategies</style>
internal-pdf://3403554457/Caradot-2016-958.pdf
KWB-documents_20191205.enlEndNote87187117<style face="normal" font="default" size="100%">Ozonung für die Abwasserdesinfektion und Spurenstoffentfernung</style>
internal-pdf://2488155815/Gnirß-2016-871.pdf
KWB-documents_20191205.enlEndNote86986917<style face="normal" font="default" size="100%">Phosphorrecycling aus Klärschlamm</style>
internal-pdf://3825601838/Kraus-2016-869.pdf
KWB-documents_20191205.enlEndNote1035103527<style face="normal" font="default" size="100%">Deliverable D3.3: Generic assessment of treatment trains concerning their environmental impact and risk reduction potential</style>internal-pdf://3372000036/Kraus-2016-1035.pdfKWB-documents_20191205.enlEndNote95695617<style face="normal" font="default" size="100%">Calibration of UV/Vis spectrophotometers: A review and comparison of different methods to estimate TSS and total and dissolved COD concentrations in sewers, WWTPs and rivers</style>
internal-pdf://2613579970/Lepot-2016-956.pdf
KWB-documents_20191205.enlEndNote98098017<style face="normal" font="default" size="100%">KURAS - Forschung trifft Praxis: Zukunftsorientierte Anpassung des urbanen Regenwasser- und Abwassermanagements</style>
internal-pdf://0392593573/Mitchell-2016-980.pdf
KWB-documents_20191205.enlEndNote97997947<style face="normal" font="default" size="100%">Improving Decision-Making in Urban Stormwater Management – Strategy and stakeholder process </style>internal-pdf://0728596489/Nickel-2016-979.pdfKWB-documents_20191205.enlEndNote1038103827<style face="normal" font="default" size="100%">Deliverable D5.1: Proposition of POWERSTEP process schemes and WWTP reference models</style>internal-pdf://0900768938/Remy-2016-1038.pdfKWB-documents_20191205.enlEndNote1039103927<style face="normal" font="default" size="100%">Deliverable D3.1: Best practices for improved sludge digestion</style>internal-pdf://0543991017/Remy-2016-1039.pdfKWB-documents_20191205.enlEndNote87387317<style face="normal" font="default" size="100%">Impacts of combined sewer overflows on a large urban river - Understanding the effect of different management strategies</style>
internal-pdf://1104274690/Riechel-2016-873.pdf
KWB-documents_20191205.enlEndNote99499427<style face="normal" font="default" size="100%">Optiwells-2 Synthesis report</style>internal-pdf://3078848568/Rustler-2016-994.pdfKWB-documents_20191205.enlEndNote1037103727<style face="normal" font="default" size="100%">Deliverable D6.5: Health and environmental risk management for the operation of the greenfield demo site</style>internal-pdf://2716312653/Seis-2016-1037.pdfKWB-documents_20191205.enlEndNote87287217<style face="normal" font="default" size="100%">Application of online UV absorption measurements for ozone process control in secondary effluent with variable nitrite concentration</style>
internal-pdf://2199996736/Stapf-2016-872.pdf
KWB-documents_20191205.enlEndNote99199147<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://1227208656/Wicke-2016-991.pdfKWB-documents_20191205.enlEndNote1007100717<style face="normal" font="default" size="100%">Phosphorrückgewinnung in der Praxis – so funktioniert es in den Niederlanden</style>
internal-pdf://0231184458/Kraus-2017-1007.pdf
KWB-documents_20191205.enlEndNote1023102317<style face="normal" font="default" size="100%">Maßnahmenplanung unter Berücksichtigung der Regenwasserbewirtschaftung - Ergebnisse des Projekts Kuras</style>
internal-pdf://1268359034/Matzinger-2017-1023.pdf
KWB-documents_20191205.enlEndNote1024102417<style face="normal" font="default" size="100%">Die Potenziale der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>
internal-pdf://3960905641/Matzinger-2017-1024.pdf
KWB-documents_20191205.enlEndNote1027102727<style face="normal" font="default" size="100%">Zielorientierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>internal-pdf://3606472960/Matzinger-2017-1027.pdfKWB-documents_20191205.enlEndNote1025102517<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung - Ergebnisse aus dem Verbundprojekt KURAS</style>
internal-pdf://0497721304/Matzinger-2017-1025.pdf
KWB-documents_20191205.enlEndNote1032103227<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser - Projekt: Wasserwiederverwendung</style>internal-pdf://0464199320/Schwarzmüller-2017-1032.pdfKWB-documents_20191205.enlEndNote1016101627<style face="normal" font="default" size="100%">Entwicklung einer Monitoringstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin-Tiefwerder und -Spandau - Schlussbericht T-MON</style>internal-pdf://2764214178/Sprenger-2017-1016.pdfKWB-documents_20191205.enlEndNote99799717<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>
internal-pdf://0113394616/Wicke-2017-997.pdf
KWB-documents_20191205.enlEndNote1041104117<style face="normal" font="default" size="100%">Biozide im Regenwasserabfluss Berlins</style>
internal-pdf://1267174380/Wicke-2017-1041.pdf
KWB-documents_20191205.enlEndNote1043104347<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – citywide loads and comparison with sewage inputs.</style>internal-pdf://1489261766/Wicke-2017-1043.pdfKWB-documents_20191205.enlEndNote1014101427<style face="normal" font="default" size="100%">Deliverable 1.4 Pretreatment requirements and design guidelines for SAT technologies - DEMOWARE </style>internal-pdf://1270820027/Zietzschmann-2017-1014.pdfKWB-documents_20191205.enlEndNote1057105717<style face="normal" font="default" size="100%">Phosphorus processing – potentials for higher efficiency</style>
internal-pdf://0910799548/Hermann-2018-1057.pdf
KWB-documents_20191205.enlEndNote1072107247<style face="normal" font="default" size="100%">Capillary nanofiltration under anoxic conditions as post-treatment after bank filtration – improvement of chemical cleaning and removal of sulphate and organic micropollutants</style>internal-pdf://2517938294/Jährig-2018-1072.pdfKWB-documents_20191205.enlEndNote1080108017<style face="normal" font="default" size="100%">Ergebnisse des Projekts KURAS - Integrierte Maßnahmenplanung unter Berücksichtigung der vielfältigen Potentiale der Regenwasserbewirtschaftung</style>
internal-pdf://0099189714/Matzinger-2018-1080.pdf
KWB-documents_20191205.enlEndNote1079107917<style face="normal" font="default" size="100%">Integrierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Anwendung und Weiterentwicklung der "KURAS-Methode" in Berlin</style>
internal-pdf://0296387475/Matzinger-2018-1079.pdf
KWB-documents_20191205.enlEndNote1050105047<style face="normal" font="default" size="100%">Quantitative Beschreibung der Resilienz urbaner Wassersysteme</style>internal-pdf://1944797400/Matzinger-2018-1050.pdfKWB-documents_20191205.enlEndNote1077107732<style face="normal" font="default" size="100%">Überflutungskarten anhand von Social Media Daten - Erhebung, Auswertung und Validierung am Beispiel von zwei Starkregenereignissen in Berlin</style>internal-pdf://0512721717/Pilger-2018-1077.pdfKWB-documents_20191205.enlEndNote1051105117<style face="normal" font="default" size="100%">On the implementation of reliable early warning systems at European bathing waters using multivariate Bayesian regression modelling</style>
internal-pdf://0454065717/Seis-2018-1051.pdf
KWB-documents_20191205.enlEndNote1071107147<style face="normal" font="default" size="100%">Optimized materials and processes for the separation of microplastic from the water cycle - OEMP</style>internal-pdf://1967949777/Venghaus-2018-1071.pdfKWB-documents_20191205.enlEndNote1110111032<style face="normal" font="default" size="100%">The use of deterioration modelling to simulate sewer asset management strategies</style>internal-pdf://3136552709/Caradot-2019-1110.pdfKWB-documents_20191205.enlEndNote1101110147<style face="normal" font="default" size="100%">Resilience of urban drainage systems - Proposition of a quantitative approach</style>internal-pdf://2298431128/Matzinger-2019-1101.pdfKWB-documents_20191205.enlEndNote484827<style face="normal" font="default" size="100%">Preliminary Studies on P-removal by Adsorption from MBR filtrates</style>internal-pdf://3888754360/Kornmüller-2002-48.pdfKWB-documents_20191205.enlEndNote999947<style face="normal" font="default" size="100%">Behavior of bulk organics and trace pollutants during bank filtration and groundwater recharge of wastewater-impacted surface waters</style>internal-pdf://2800461968/Grünheid-2004-99.PDFKWB-documents_20191205.enlEndNote11111117<style face="normal" font="default" size="100%">Field Studies on the Fate and Transport of Pharmaceutical Residues in Bank Filtration</style>
internal-pdf://3922176066/Heberer-2004-111.pdf
KWB-documents_20191205.enlEndNote444427<style face="normal" font="default" size="100%">12 Jahre Pilotbetrieb Karolinenhöhe – eine erste Auswertung</style>internal-pdf://2111833628/Liese-2004-44.pdfKWB-documents_20191205.enlEndNote13213247<style face="normal" font="default" size="100%">Investigating surface water - groundwater interactions with the help of sewage indicators in Berlin, Germany</style>internal-pdf://1135191569/Massmann-2004-132.PDFKWB-documents_20191205.enlEndNote333347<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater - Demonstration Project in Berlin, Germany</style>internal-pdf://1554752807/Peter-Fröhlich-2004-33.pdfKWB-documents_20191205.enlEndNote141417<style face="normal" font="default" size="100%">Integrated sewage management to reduce pollution load in Berlin</style>
internal-pdf://1791926733/Schroeder-2004-14.pdf
KWB-documents_20191205.enlEndNote212147<style face="normal" font="default" size="100%">Integrated Sewage Management - Development of a global Real Time Control for three interconnected Subcatchments of the Berlin Drainage System</style>internal-pdf://1348248793/Schroeder-2004-21.PDFKWB-documents_20191205.enlEndNote14214247<style face="normal" font="default" size="100%">Assessment of bank filtration pumping regimes on flow length and travel times: a case study</style>internal-pdf://0466657663/Wiese-2004-142.pdfKWB-documents_20191205.enlEndNote14714717<style face="normal" font="default" size="100%">Analysis of endocrine disrupting steroids: Investigation of their release into the environment and their behavior during bank filtration</style>
internal-pdf://0905879872/Zühlke-2004-147.pdf
KWB-documents_20191205.enlEndNote26226217<style face="normal" font="default" size="100%">Fouling in Membranbelebungsreaktoren: Erfahrungen beim Betrieb mit diskontinuierlichem Schlammabzug</style>
internal-pdf://2543354365/Drews-2005-262.pdf
KWB-documents_20191205.enlEndNote929247<style face="normal" font="default" size="100%">Transport and attenuation of antibiotic residues during river bank filtration in Berlin, Germany</style>internal-pdf://4036337906/Fanck-2005-92.pdfKWB-documents_20191205.enlEndNote979717<style face="normal" font="default" size="100%">Modeling of carbon cycling and biogeochemical changes during injection and recovery of reclaimed water at Bolivar, South Australia</style>
internal-pdf://1766826835/Greskowiak-2005-97.pdf
KWB-documents_20191205.enlEndNote12312347<style face="normal" font="default" size="100%">Bank filtration and groundwater recharge for treatment of polluted surface waters</style>internal-pdf://1529651895/Jekel-2005-123.pdfKWB-documents_20191205.enlEndNote2552556<style face="bold" font="default" size="10">Perspectives of Lake Modelling towards Predicting Reaction to Throphic Change</style>internal-pdf://3771237548/Schauser-2005-255.pdfKWB-documents_20191205.enlEndNote222247<style face="normal" font="default" size="100%">Integrated Simulation of the Berlin Sewage System and Evaluation of a global Real-time Control Concept</style>internal-pdf://1659477681/Schroeder-2005-22.pdfKWB-documents_20191205.enlEndNote989847<style face="normal" font="default" size="100%">Hydrogeochemical changes of seepage water during artificial recharge of groundwater in Berlin, Germany</style>internal-pdf://2185534857/Greskowiak-2006-98.pdfKWB-documents_20191205.enlEndNote969617<style face="normal" font="default" size="100%">Modeling Seasonal Redox Dynamics and the Corresponding Fate for the Pharmaceutical Residue Phenazone During Artificial Recharge of Groundwater</style>
internal-pdf://1601904375/Greskowiak-2006-96.pdf
KWB-documents_20191205.enlEndNote12512547<style face="normal" font="default" size="100%">Exploring surface- and groundwater interactions with the help of environmental tracers and wastewater indicators in Berlin/Germany</style>internal-pdf://0340433580/Knappe-2006-125.pdfKWB-documents_20191205.enlEndNote12612647<style face="normal" font="default" size="100%">Statistical description and analysis of a bank filtration system</style>internal-pdf://2940901233/Leipnitz-2006-126.pdfKWB-documents_20191205.enlEndNote545417<style face="normal" font="default" size="100%">MBR: Technology gets timely EU cash boost</style>
internal-pdf://1943574837/Lesjean-2006-54.pdf
KWB-documents_20191205.enlEndNote313147<style face="normal" font="default" size="100%">EU-Demonstrationsprojekt Sanitärkonzepte für die separate Erfassung und Behandlung von Urin, Fäkalien und Grauwasser - erste Ergebnisse</style>KWB-documents_20191205.enlEndNote30030047<style face="normal" font="default" size="11">Occurrence of cylindrospermopsin, anatoxin-a and saxitoxins in France and implications for drinking water prodution</style>internal-pdf://0991654188/Grützmacher-2009-300.pdfKWB-documents_20191205.enlEndNote71471427<style face="normal" font="default" size="100%">Efficiency of implemented mitigation systems to control diffuse pollution in agricultural landscapes</style>internal-pdf://1073015803/Jacinthe-2014-714.pdfKWB-documents_20191205.enlEndNote3913916<style face="normal" font="default" size="100%">Strategic Research Agenda of European Technology Platform for Water (WssTP)</style>internal-pdf://0915039999/Lesjean-2010-391.pdfKWB-documents_20191205.enlEndNote34234247<style face="normal" font="default" size="100%">Wie angewandte Forschung hilft, die Brunnenalterung zu verlangsamen</style>internal-pdf://1281518574/Schwarzmüller-2010-342.pdfKWB-documents_20191205.enlEndNote45245227<style face="normal" font="default" size="100%">Reactive transport modeling. Deliverable 3.4</style>internal-pdf://0071587248/Kalka-2011-452.pdfKWB-documents_20191205.enlEndNote52952947<style face="normal" font="default" size="100%">Impacts of ozonation and coagulation on fouling during subsequent ultrafiltration in advanced wastewater treatment </style>KWB-documents_20191205.enlEndNote52652647<style face="normal" font="default" size="100%">Prediction of fouling potential of treated domestic wastewater by on-line submicron particle analysis. </style>KWB-documents_20191205.enlEndNote52552547<style face="normal" font="default" size="100%">On-line submicron particle analysis for the assessment of fouling potential in tertiary membrane filtration.</style>internal-pdf://1385776413/Schulz-2012-525.pdfinternal-pdf://4249896283/Schulz-2012-5252.pdfKWB-documents_20191205.enlEndNote54754747<style face="normal" font="default" size="100%">Sweet spot search: Screening the operational window for secondary effluent filtration (Poster).</style>internal-pdf://1061700659/Stüber-2012-547.pdfKWB-documents_20191205.enlEndNote94894827<style face="normal" font="default" size="100%">Documentation of acquired data and conceptual model of MAR impact input for WP5 modelling</style>internal-pdf://4076769171/Boisson-2013-948.pdfKWB-documents_20191205.enlEndNote66066047<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Standorte</style>internal-pdf://2013642015/Matzinger-2013-660.pdfKWB-documents_20191205.enlEndNote64464447<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung auf Großklärwerken – eine Ökobilanz</style>internal-pdf://0123678389/Mutz-2013-644.pdfinternal-pdf://1253860468/Mutz-2013-6442.pdfKWB-documents_20191205.enlEndNote60560527<style face="normal" font="default" size="100%">Hydrothermal carbonisation: Theoretical evaluation of selected schemes for municipal sludge treatment</style>KWB-documents_20191205.enlEndNote51151127<style face="normal" font="default" size="100%">Geological CO2 Storage and other subsurface emerging activities: Catalogue of potential impacts on drinking water production</style>internal-pdf://1938115568/Seis-2013-511.pdfKWB-documents_20191205.enlEndNote63263247<style face="normal" font="default" size="100%">Nutzung von Überschusswärme zur Optimierung der Schlammentwässerung</style>KWB-documents_20191205.enlEndNote67867847<style face="normal" font="default" size="100%">Transport of Sewage-borne Ammonium in a Floodplain Aquifer: Column Experiments with Aquifer Materials from the Yamuna Floodplain in Delhi (India)</style>internal-pdf://2458865875/IAP2014_Abstract_Maike_Groeschke.docxinternal-pdf://0692417985/Gröschke-2014-678.pdfKWB-documents_20191205.enlEndNote70770747<style face="normal" font="default" size="100%">Energie- und CO2-Bilanz von HTC im Vergleich zu konventionellen Verfahren der Klärschlammbehandlung</style>internal-pdf://1199549953/Lesjean-2014-707.pdfKWB-documents_20191205.enlEndNote69869847<style face="normal" font="default" size="100%">A tool for minimizing the energy demand of drinking water well fields</style>internal-pdf://2679884733/Philippon-2014-698.pdfKWB-documents_20191205.enlEndNote68468447<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>internal-pdf://3008025654/Wicke-2014-684.pdfKWB-documents_20191205.enlEndNote83383317<style face="normal" font="default" size="100%">Influence of local calibration on the quality of on-line wet weather discharge monitoring: feedback from five international case studies</style>
internal-pdf://3706132332/Caradot-2015-833.pdf
KWB-documents_20191205.enlEndNote83283217<style face="normal" font="default" size="100%">Wie zuverlässig sind Kanalalterungsmodelle?</style>
internal-pdf://4002561504/Caradot-2015-832.pdf
KWB-documents_20191205.enlEndNote1046104627<style face="normal" font="default" size="100%">NITROLIMIT – Stickstofflimitation in Binnengewässern: Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar? Abschlussbericht des BMBF‐Verbundprojekts NITROLIMIT II</style>internal-pdf://3618911338/2016-1046.pdfKWB-documents_20191205.enlEndNote98198147<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung</style>internal-pdf://0642154973/Matzinger-2016-981.pdfKWB-documents_20191205.enlEndNote98298247<style face="normal" font="default" size="100%">Quantification of multiple benefits and cost of stormwater management</style>internal-pdf://2904523385/Matzinger-2016-982.pdfKWB-documents_20191205.enlEndNote87487447<style face="normal" font="default" size="100%">A modelling approach for assessing acute river impacts of realistic stormwater management strategies</style>internal-pdf://1286673172/Riechel-2016-874.pdfKWB-documents_20191205.enlEndNote98998947<style face="normal" font="default" size="100%">Quantifying microbial contamination in urban stormwater runoff</style>internal-pdf://1065922641/Seis-2016-989.pdfKWB-documents_20191205.enlEndNote99099047<style face="normal" font="default" size="100%">Extent and dynamics of classic and emerging contaminants in stormwater of urban catchment types</style>internal-pdf://2731361818/Wicke-2016-990.pdfKWB-documents_20191205.enlEndNote102010205<style face="normal" font="default" size="100%">Maßnahmen der Regenwasserbewirtschaftung – Umfassende Bewertung als Entscheidungshilfe</style>internal-pdf://0408657630/Matzinger-2017-1020.pdfKWB-documents_20191205.enlEndNote1073107317<style face="normal" font="default" size="100%">Capillary Nanofiltration under Anoxic Conditions as Post-Treatment after Bank Filtration</style>
internal-pdf://0024734634/Jährig-2018-1073.pdf
KWB-documents_20191205.enlEndNote1098109827<style face="normal" font="default" size="100%">D2.4 Feasibility of mainstream nitrogen removal and biomass production with duckweed bioreactor</style>internal-pdf://1203125622/Loderer-2018-1098.pdfKWB-documents_20191205.enlEndNote1124112410<style face="normal" font="default" size="100%">First application of a newly developed field gas extraction device to date old groundwater</style>KWB-documents_20191205.enlEndNote1095109532<style face="normal" font="default" size="100%">Application of Duckweed in Wastewater Treatment – an Alternative Method for Nitrogen Removal?</style>internal-pdf://1640061976/Kahlert-2017-1095.pdfKWB-documents_20191205.enlEndNote66666632<style face="normal" font="default" size="100%">Optimisation of sewage sludge treatment to foster dewaterability and nutrient recovery</style>internal-pdf://0413288228/Michalski-2014-666.pdfKWB-documents_20191205.enlEndNote66966932<style face="normal" font="default" size="100%">Maximierung der CSB-Extraktion aus kommunalem Abwasser mit der Prozesskombination MBBR, Koagulation, Flockung und Filtration</style>internal-pdf://3478382186/Böhm-2014-669.pdfKWB-documents_20191205.enlEndNote1048104827<style face="normal" font="default" size="100%">Bewertung umgesetzter urbaner Maßnahmen zur Nährstoffreduktion. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kap. 3.1.2</style>internal-pdf://2653823832/Riechel-2016-1048.pdfKWB-documents_20191205.enlEndNote1033103327<style face="normal" font="default" size="100%">Zeitreihenanalyse zur Beeinflussung des Teufelsseemoores durch die Grundwasserentnahme - Projekt: Rahmenvertrag WV-GRW</style>internal-pdf://2675449574/Menz-2017-1033.pdfKWB-documents_20191205.enlEndNote83983927<style face="normal" font="default" size="100%">Integral guidance document for phosphorus recovery and recycling D12.1</style>internal-pdf://1591140686/Kabbe-2015-839.pdfKWB-documents_20191205.enlEndNote42542527<style face="normal" font="default" size="100%">Catalogue of European adaptive initiatives of the water sector to face climate change impacts V3 (Updated 2012 Release)</style>internal-pdf://1548569413/Staub-2012-425.pdfKWB-documents_20191205.enlEndNote36036027<style face="normal" font="default" size="100%">NOM-fouling in low flux UF membrane systems</style>internal-pdf://0117402809/Peter-Varbanets-2007-360.pdfKWB-documents_20191205.enlEndNote35935927<style face="normal" font="default" size="100%">Point-of-use membrane systems: place in the world of water supply</style>internal-pdf://1541041041/Varbanets-2006-359.pdfKWB-documents_20191205.enlEndNote494927<style face="normal" font="default" size="100%">Project AMEDEUS “Accelerate membrane development for urban sewage purification" Yearly project activity report n°1 period 0ct 05-sept 06 </style>internal-pdf://2581371096/Lesjean-2006-49.pdfKWB-documents_20191205.enlEndNote464627<style face="normal" font="default" size="100%">Evaluation of enhanced biological phosphorus removal process in membrane bioreactors (operation from Oct 2001 to Apr 2002 with a sludge age of 26 days)</style>internal-pdf://2178396066/Gnirß-2002-46.pdfKWB-documents_20191205.enlEndNote1751755<style face="normal" font="default" size="100%">Tropische Cyanobakterien in Deutschen Gewässern: Ursachen und Konsequenzen</style>internal-pdf://Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen u-1006585856/Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen und Konsequenzen, 4p.pdfKWB-documents_20191205.enlEndNote101910195<style face="normal" font="default" size="100%">Entwicklung und Bewertung von Maßnahmen zur Anpassung der urbanen Abwasserinfrastruktur an die Zukunft</style>internal-pdf://2344459952/Hürter-2017-1019.pdfKWB-documents_20191205.enlEndNote1118111817<style face="normal" font="default" size="100%">Planungsprozesse in der wassersensiblen und klimagerechten Stadt – blau-grün-grau gekoppelte Infrastrukturen in der Planungspraxis am Beispiel Berlin</style>internal-pdf://1703333929/Trapp_et_al_KA_2019.pdfKWB-documents_20191205.enlEndNote1116111617<style face="normal" font="default" size="100%">Abschwächung von Klimafolgen bei erhöhter Lebensqualität in der Stadt – das Potenzial von gekoppelten blau-grün-grauen Infrastrukturen</style>internal-pdf://3713978269/KW_11_19_MW_etal..pdfKWB-documents_20191205.enlEndNote1114111417<style face="normal" font="default" size="100%">Effect of temperature on biogas yield increase and formation of refractory COD during thermal hydrolysis of waste activated sludge</style>internal-pdf://4236300079/Toutian_WR2020_BMP_refCOD_TH.pdfKWB-documents_20191205.enlEndNote1121112117<style face="normal" font="default" size="100%">Partizipative Regenwasserkonzepte als wirksames Element zur Gestaltung klimaresilienter Städte</style>internal-pdf://0703516760/MDR 2019-20 Beitrag Matzinger et. al..pdfKWB-documents_20191205.enlEndNote1115111547<style face="normal" font="default" size="100%">Einsatz einfacher und kostengünstiger Methoden zur Überwachung von Fließzeiten und Prozessen in der Grundwasseranreicherung</style>internal-pdf://0767020926/FH-DGG_GWA-Berlin_Abstract_KWB.pdfKWB-documents_20191205.enlEndNote1119111917<style face="normal" font="default" size="100%">Wasser in der Stadt gemeinsam anders denken und planen</style>KWB-documents_20191205.enlEndNote1122112232<style face="normal" font="default" size="100%">Modellierung und Bewertung von Maßnahmen der dezentralen Regenwasserbewirtschaftung anhand aktueller Planungsvarianten in Berlin-Pankow</style>internal-pdf://3401371783/Masterarbeit_Fabian_Funke.pdfKWB-documents_20191205.enlEndNote1125112517<style face="normal" font="default" size="100%">EU-Vorhaben Digital-Water.City: Digitale Tools für das Wassermanagement</style>KWB-documents_20191205.enlEndNote37537547<style face="normal" font="default" size="100%">Development of a GIS Method to Localize Critical Source Areas of Diffuse Nitrate Pollution</style>internal-pdf://0047540310/Orlikowski-2010-375.pdfKWB-documents_20191205.enlEndNote33333327<style face="normal" font="default" size="100%">DOC and Trace Organic removal via ozonation & underground passage - expected benefit and limitations</style>internal-pdf://3460722021/Miehe-2010-333.pdfKWB-documents_20191205.enlEndNote595917<style face="normal" font="default" size="100%">Seasonal dynamics of cylindrospermopsin and cyanobacteria in two German lakes</style>
internal-pdf://3561785350/Wiedner-2006-59.pdf
KWB-documents_20191205.enlEndNote38138117<style face="normal" font="default" size="100%">First report of anatoxin-a-producing cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon issatschenkoi</style><style face="normal" font="default" size="100%"> in northeastern Germany</style>
internal-pdf://2582211254/Ballot-2010-381.pdf
KWB-documents_20191205.enlEndNote43043027<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation. Final Report of OXIRED - Phase 2</style>internal-pdf://1848137401/Hübner-2011-430.pdfKWB-documents_20191205.enlEndNote1102110247<style face="normal" font="default" size="100%">Potenziale grau-grün-blau gekoppelter Wasserinfrastrukturen für die Gestaltung zukunftsfähiger und klimagerechter Städte - Ergebnisse eines strategischen Planungsprozesses in einem Pilotquartier</style>internal-pdf://2382771495/Nenz-2019-1102.PDFinternal-pdf://0123968011/Nenz-2019-11022.pdfKWB-documents_20191205.enlEndNote61661647<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://2510383502/Stapf-2014-616.pdfKWB-documents_20191205.enlEndNote61861847<style face="normal" font="default" size="100%">Comparison between two different filter systems as a post treatment of an ozonation to remove micropollutants</style>internal-pdf://2049651007/Stapf-2013-618.pdfKWB-documents_20191205.enlEndNote1103110347<style face="normal" font="default" size="100%">Potenzial von Bilddaten aus sozialen Medien für die urbane Überflutungsvorsorge - Versuch einer Anwendung für zwei extreme Starkregenereignisse in Berlin. </style>internal-pdf://2384799813/Matzinger-2019-1103.pdfKWB-documents_20191205.enlEndNote37837817<style face="normal" font="default" size="100%">Hypolimnetic oxygen consumption by sediment-based reduced substances in former eutrophic lakes</style>
internal-pdf://3545615539/Matzinger-2010-378.pdf
KWB-documents_20191205.enlEndNote4934935<style face="normal" font="default" size="100%">Modellierung von biogeochemischen Prozessen in Fließgewässern</style>internal-pdf://0120179969/Matzinger-2012-493.pdfKWB-documents_20191205.enlEndNote46746727<style face="normal" font="default" size="100%">Literature review on theoretical pump and motor efficiency of submersible pump systems</style>internal-pdf://1189039010/Staub-2011-467.pdfKWB-documents_20191205.enlEndNote37737727<style face="normal" font="default" size="100%">GIS approach to localize critical source areas of diffuse nitrate pollution. Case study on the Ic catchment, France</style>internal-pdf://4153501532/Bugey-2010-377.pdfKWB-documents_20191205.enlEndNote38238217<style face="normal" font="default" size="100%">Paralytic Shellfish Poisoning Toxin-Producing Cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon gracile </style><style face="normal" font="default" size="100%">in Northeast Germany</style>
internal-pdf://0376531716/Ballot-2010-382.pdf
KWB-documents_20191205.enlEndNote91691617<style face="normal" font="default" size="100%">Semi-Analytical Model for Estimation of Unsteady Seepage from a Large Water Body Influenced by Variable Flows</style>
internal-pdf://3557253739/Ghosh-2015-916.pdf
KWB-documents_20191205.enlEndNote95295227<style face="normal" font="default" size="100%">Report on existing MAR practice and experience in India, especially in Chennai, Maheshwaram, Raipur</style>internal-pdf://3937375269/Ahmed-2012-952.pdfKWB-documents_20191205.enlEndNote73573517<style face="normal" font="default" size="100%">Removal of indigenous coliphages and enteric viruses during riverbank filtration from highly polluted river water in Delhi (India)</style>
internal-pdf://2114453433/Sprenger-2014-735.pdf
KWB-documents_20191205.enlEndNote74674610<style face="normal" font="default" size="100%">Quantifying the effects of urban stormwater management - Towards a novel approach for integrated planning</style>internal-pdf://3201310600/Matzinger-2014-746.pdfKWB-documents_20191205.enlEndNote93593517<style face="normal" font="default" size="100%">Proof of concept for a new energy-positive wastewater treatment scheme</style>
internal-pdf://1449230876/Remy-2014-935.pdf
KWB-documents_20191205.enlEndNote9619615<style face="normal" font="default" size="100%">Numerical and analytical models for natural water treatment systems in the Indian context </style>
internal-pdf://0581186432/Sprenger-2016-961.pdf
KWB-documents_20191205.enlEndNote74774717<style face="normal" font="default" size="100%">New concepts for combined stormwater and wastewater management</style>
internal-pdf://0650846478/Matzinger-2014-747.pdf
KWB-documents_20191205.enlEndNote71771717<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 2: Molekularbiologische und mikrobiologische Untersuchungen von Ockerproben</style>
internal-pdf://3553024466/Schröder-2014-717.pdf
KWB-documents_20191205.enlEndNote71671617<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 1: Probenahme aus dem Filterbereich eines Trinkwasserbrunnens mit neuartigem Unterwasserkamera- und Probenahme-System</style>
internal-pdf://1494341349/Schwarzmüller-2014-716.pdf
KWB-documents_20191205.enlEndNote90990947<style face="normal" font="default" size="100%">Integrated modelling and evaluation of adaptation measures in a metropolitan wastewater system</style>KWB-documents_20191205.enlEndNote72472427<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Technical report -</style>internal-pdf://2440752154/Thomas-2013-724.pdfKWB-documents_20191205.enlEndNote73673617<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani-Koratallai (A-K) basin north of Chennai (India)</style>
internal-pdf://2451177791/Sprenger-2014-736.pdf
KWB-documents_20191205.enlEndNote73173127<style face="normal" font="default" size="100%">Geological CO2 Storage and Other Emerging Subsurface Activities – Countermeasures against risks arising from shale gas exploration</style>internal-pdf://2153183181/Schwarzmüller-2014-731.pdfKWB-documents_20191205.enlEndNote1090109027<style face="normal" font="default" size="100%">D 2.5: Options for nitrogen removal after advanced carbon extraction </style>internal-pdf://4095564387/Christensson-2018-1090.pdfKWB-documents_20191205.enlEndNote1068106827<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.5: Recommendations for ecoefficient new concepts of energy positive WWTP</style>internal-pdf://2718006125/Remy-2018-1068.pdfKWB-documents_20191205.enlEndNote1053105327<style face="normal" font="default" size="100%">Phorwärts Abschlussbericht: Ökobilanzieller Vergleich der P-Rückgewinnung aus dem Abwasserstrom mit der Düngemittelproduktion aus Rohphosphaten unter Einbeziehung von Umweltfolgeschäden und deren Vermeidung</style>internal-pdf://2535167896/Kraus-2019-1053.pdfKWB-documents_20191205.enlEndNote1069106927<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.4: Technology dossiers to apply for ETV certification and guidelines</style>internal-pdf://2906356714/Remy-2018-1069.pdfKWB-documents_20191205.enlEndNote85985932<style face="normal" font="default" size="100%">Vergleichende Ökobilanzierung verschiedener Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://1464085052/Sommer-2015-859.pdfKWB-documents_20191205.enlEndNote86386332<style face="normal" font="default" size="100%">Bewertung des Einflusses dezentraler Regenwasserbewirtschaftungsmaßnahmen auf das Grundwasser anhand ausgewählter Indikatoren </style>KWB-documents_20191205.enlEndNote15315317<style face="normal" font="default" size="100%">Getrennte Erfassung von jodorganischen Röntgenkontrastmitteln mit mobilen Urinbehältern in zwei Krankenhäusern - Ergebnisse der Testphase</style>
KWB-documents_20191205.enlEndNote53953947<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling</style>internal-pdf://2552863667/Rustler-2012-539.pdfKWB-documents_20191205.enlEndNote93193147<style face="normal" font="default" size="100%">Glaskugel- und konventionell geschüttete Vertikalfilterbrunnen: Betrieb und Regenerierung</style>internal-pdf://0674134950/Schwarzmüller-2014-931.pdfKWB-documents_20191205.enlEndNote95595547<style face="normal" font="default" size="100%">Mikrobielle Verockerung in Trinkwasserbrunnen, im Rohrnetz und an Pumpen - Entwicklung und Bewertung von betrieblichen Gegenmaßnahmen</style>KWB-documents_20191205.enlEndNote72772747<style face="normal" font="default" size="100%">Auslöser von Alterungsprozessen in Brunnen und deren Verminderung im Betrieb</style>KWB-documents_20191205.enlEndNote1076107617<style face="normal" font="default" size="100%">Evaluation of uncertainties in sewer condition assessment</style>
KWB-documents_20191205.enlEndNote1049104927<style face="normal" font="default" size="100%">Ökobilanz von ausgesuchten Maßnahmen im urbanen Bereich. NITROLIMIT2, Gemeinsamer Ergebnisbericht, Kap. 3.6</style>internal-pdf://3656646906/Mutz-2016-1049.pdfKWB-documents_20191205.enlEndNote89489417<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>KWB-documents_20191205.enlEndNote46246247<style face="normal" font="default" size="100%">Life cycle management for assessing systems of urban water management: Case studies and methodological gaps</style>internal-pdf://3088141530/Remy-2011-462.pdfinternal-pdf://3890760985/Remy-2011-4622.pdfKWB-documents_20191205.enlEndNote34934947<style face="normal" font="default" size="11">Die Kombination von Ozon und Flockung als Behandlungsstufe vor einer Membranfiltration (Oxeram)</style>internal-pdf://3335416346/Genz-2010-349.pdfKWB-documents_20191205.enlEndNote3303306<style face="normal" font="default" size="100%">Membrane technologies for wastewater treatment and reuse : 4 - 5 June 2007, Berlin (Germany), 2nd IWA National Young Water Professionals Conference ; conference proceedings</style>internal-pdf://2522337168/Lesjean-2007-330.pdfinternal-pdf://3111702479/Lesjean-2007-3302.pdfKWB-documents_20191205.enlEndNote282817<style face="normal" font="default" size="100%">Current state and development of the real-time control of the Berlin sewage system</style>
internal-pdf://2939330163/Schroeder-2005-28.pdf
KWB-documents_20191205.enlEndNote1021102117<style face="normal" font="default" size="100%">Integrated planning of urban stormwater management - Introduction to the KURAS-approach from Berlin, Germany</style>internal-pdf://0051027756/Matzinger-2017-1021.pdfKWB-documents_20191205.enlEndNote30130147<style face="normal" font="default" size="100%">Technical Conference Report</style>internal-pdf://0526905870/Sonnenberg-2009-301.pdfKWB-documents_20191205.enlEndNote14814817<style face="normal" font="default" size="100%">Assessment of the success of internal and external lake restoration measures in two Berlin lakes</style>KWB-documents_20191205.enlEndNote70970947<style face="normal" font="default" size="100%">OptiValves: Enhanced network performance and reduced maintenance cost</style>internal-pdf://3229441596/Rouault-2014-709.pdfKWB-documents_20191205.enlEndNote70870847<style face="normal" font="default" size="100%">The WellGrapher tool: Connecting land use to well-field water quality</style>internal-pdf://4078613622/Lesjean-2014-708.pdfKWB-documents_20191205.enlEndNote1012101217<style face="normal" font="default" size="100%">P recovery: from evolution to revolution</style>KWB-documents_20191205.enlEndNote45345327<style face="normal" font="default" size="100%">Using bacteriophages, indicator bacteria, and viral pathogens for assessing the health risk of drinking water obtained by bank filtration</style>internal-pdf://3842767541/López-Pila-2006-453.pdfKWB-documents_20191205.enlEndNote44144127<style face="normal" font="default" size="100%">Integrated modelling concepts for bank filtration processes: coupled ground water transport and biogeochemical reactions.</style>internal-pdf://0982203011/Nützmann-2006-441.pdfKWB-documents_20191205.enlEndNote44044027<style face="normal" font="default" size="100%">Investigating hydrogeological-hydrogeochemical processes during bank filtration and artificial ground water recharge using a multi trace approach</style>internal-pdf://0652229141/Pekdeger-2006-440.pdfKWB-documents_20191205.enlEndNote43943927<style face="normal" font="default" size="100%">Organic substances in bank filtration and groundwater recharge - Process studies</style>internal-pdf://0789789502/Jekel-2006-439.pdfKWB-documents_20191205.enlEndNote43843827<style face="normal" font="default" size="100%">Occurrence and fate of drug residues and related polar contaminants during bank filtration and artificial recharge</style>internal-pdf://3351329504/Jekel-2006-438.pdfKWB-documents_20191205.enlEndNote43743727<style face="normal" font="default" size="100%">Retention and elimination of cynobacterial toxins (microcystins) through artificial recharge and bank filtration</style>internal-pdf://0016792491/Chorus-2006-437.pdfKWB-documents_20191205.enlEndNote1047104727<style face="normal" font="default" size="100%">Untersuchung des Stickstoffumsatzes im Flusssediment mit vereinfachten Modellansätzen. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kapitel 2.3.2</style>internal-pdf://0392880848/Tatis-Muvdi-2016-1047.pdfKWB-documents_20191205.enlEndNote1034103427<style face="normal" font="default" size="100%">DEMOWARE D1.2: Report on opportunities for nutrient reduction and recycling in water reuse schemes</style>internal-pdf://1407230585/Van Houtte-2016-1034.pdfKWB-documents_20191205.enlEndNote63363347<style face="normal" font="default" size="100%">Case Study Braunschweig – 100 Years Practical Experience in Water Reuse</style>internal-pdf://0719131807/00_120202_.pptKWB-documents_20191205.enlEndNote80880847<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – Load estimation at city scale</style>internal-pdf://3429111453/Matzinger-2015-808.pdfKWB-documents_20191205.enlEndNote78378347<style face="normal" font="default" size="100%">Improving Urban Drainage in face of climate and demographic change: interim results of the joint research project KURAS (Concepts for urban rainwater management, drainage and sewage systems)</style>KWB-documents_20191205.enlEndNote69069047<style face="normal" font="default" size="100%">Bewertung von Maßnahmen der Regenwasserbewirtschaftung am Beispiel von Umwelteffekten</style>internal-pdf://2982641709/Riechel-2014-690.pdfinternal-pdf://2256216708/Riechel-2014-6902.pdfKWB-documents_20191205.enlEndNote67667647<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX</style>internal-pdf://4141346455/Stemann-2014-676.pdfKWB-documents_20191205.enlEndNote6756755<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX –</style>
internal-pdf://2094462718/Stemann-2014-675.pdf
KWB-documents_20191205.enlEndNote63163147<style face="normal" font="default" size="100%">Microbial Risk Assessment of the Water Reuse Scheme in Braunschweig based on WHO guidelines </style>internal-pdf://3676029140/Seis-2013-631.pdfKWB-documents_20191205.enlEndNote62162147<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2111940862/Stapf-2013-621.pdfKWB-documents_20191205.enlEndNote57457427<style face="normal" font="default" size="100%">Extended summary of the results and conclusions of the preparatory phase of the WellMa project</style>internal-pdf://1171469528/Schwarzmüller-2011-574.pdfinternal-pdf://0134952199/Schwarzmüller-2011-5743.pdfinternal-pdf://2246325589/Schwarzmüller-2011-5741.pdfKWB-documents_20191205.enlEndNote54654647<style face="normal" font="default" size="100%">Ozonation on ceramic membranes – possible flux enhancement in tertiary treatment processes (Poster).</style>internal-pdf://4001711030/Stüber-2012-546.pdfKWB-documents_20191205.enlEndNote52252247<style face="normal" font="default" size="100%">Membrane filtration combined with pre-ozonation and coagulation for water reuse: Case study with ceramic and polymeric membranes.</style><style face="normal" font="default" size="11"> </style>internal-pdf://3335320967/Stüber-2012-522.pdfKWB-documents_20191205.enlEndNote51451447<style face="normal" font="default" size="11">Ökobilanzielle Bewertung des Braunschweiger Modells der Abwasserwiederverwendung über Life Cycle Assessment</style>internal-pdf://1351742933/Remy-2012-514.pdfinternal-pdf://2482632212/Remy-2012-5142.pdfKWB-documents_20191205.enlEndNote35035047<style face="normal" font="default" size="100%">The Development of an International Guidance Manual for the Management of Toxic Cyanobacteria</style><style face="bold" font="Times New Roman" size="14"> </style>internal-pdf://3567188536/Newcombe-2010-350.pdfKWB-documents_20191205.enlEndNote32932947<style face="normal" font="default" size="100%">Facility for the Simulation of Riverbank Filtration and Slow Sand Filtration - Examples of Virus Elimination in the Subsurface under near-natural Conditions</style>internal-pdf://2933026383/Dizer-2010-329.pdfKWB-documents_20191205.enlEndNote31631617<style face="normal" font="Courier New" size="10">Research Project Aquisafe: Mitigation of contaminants in rural and semi-rural environments to protect surface source water.</style>
internal-pdf://2774627524/Morel-Fatio-2008-316.pdf
KWB-documents_20191205.enlEndNote1004100447<style face="normal" font="default" size="100%">Neue Wege in der Abwassertechnik: Großtechnische Erfahrungen mit dem CARISMO-Verfahren</style>internal-pdf://2743244686/Remy-2017-1004.pdfKWB-documents_20191205.enlEndNote70670647<style face="normal" font="default" size="100%">Proof of concept for an innovative energy-positive wastewater treatment scheme</style>internal-pdf://3518260074/Lesjean-2014-706.pdfKWB-documents_20191205.enlEndNote70470447<style face="normal" font="default" size="100%">The experience and ambition of KWB in Watershare®</style>internal-pdf://0765190261/Lesjean-2014-704.pdfKWB-documents_20191205.enlEndNote29729717<style face="normal" font="default" size="100%">Optimierung des Brunnenbetriebs und Instandhaltung: Zwischenergebnisse des interdisziplinären Forschungsprojektes WellMa am Kompetenzzentrum Wasser Berlin</style>
internal-pdf://3958436506/Schwarzmüller-2009-297.pdf
KWB-documents_20191205.enlEndNote23523517<style face="normal" font="default" size="11">Consideration of online rainfall measurement and nowcasting for RTC of the combined sewage system</style>
internal-pdf://Rouault et al_2007_Consideration of online rainfall measurement and now-1721221121/Rouault et al_2007_Consideration of online rainfall measurement and now casting for RTC of the combined sewage system_8p.pdfinternal-pdf://4225014070/Rouault-2008-235.pdf
KWB-documents_20191205.enlEndNote15015017<style face="normal" font="default" size="100%">Strategy and Current Status of Combating Eutrophication in 2 Berlin Lakes for Safeguarding Drinking Water Resources</style>
KWB-documents_20191205.enlEndNote14914917<style face="normal" font="default" size="100%">Effects of nitrate on phosphorus release: comparison of two Berlin lakes</style>
KWB-documents_20191205.enlEndNote909017<style face="normal" font="default" size="100%">Contribution of the colmation layer to the elimination of coliphages by slow sand filtration</style>
internal-pdf://0965782101/Dizer-2004-90.pdf
KWB-documents_20191205.enlEndNote636317<style face="normal" font="default" size="100%">Genetic characterisation of Cylindrospermopsis raciborskii (Nostocales, Cyanobacteria) isolates from Africa and Europe.</style>
internal-pdf://1482954071/Haande-2006-63.pdf
KWB-documents_20191205.enlEndNote616117<style face="normal" font="default" size="100%">First report on cylindrospermopsin producing Aphanizomenon flos-aquae (Cyanobacteria) isolated from two German lakes</style>
internal-pdf://3188891469/Preußel-2005-61.pdf
KWB-documents_20191205.enlEndNote70570547<style face="normal" font="default" size="100%">Challenges and opportunities for P recovery and recycling from municipal wastewater in Europe</style>internal-pdf://0513505548/Kabbe-2014-705.pdfKWB-documents_20191205.enlEndNote77077047<style face="normal" font="default" size="100%">Biocides in urban stormwater - catchment-specific differences and city-wide loads</style>internal-pdf://0216153664/Wicke-2015-770.pdfKWB-documents_20191205.enlEndNote52152147<style face="normal" font="default" size="100%">Fouling rate as the crucial design parameter for ultrafiltration of secondary effluents.</style>internal-pdf://2669823963/Stüber-2012-521.pdfKWB-documents_20191205.enlEndNote65265247<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani–Koratallai (A-K) basin north of Chennai (India) </style>internal-pdf://0600419013/Sprenger-2013-652.pdfKWB-documents_20191205.enlEndNote54054047<style face="normal" font="default" size="100%">PREPARED - enabling change: building a utility alliance on climate change adaptation.</style>KWB-documents_20191205.enlEndNote15215247<style face="normal" font="default" size="100%">Decentralized Collection of Iodinated X-Ray Contrast Media in Hospitals</style>KWB-documents_20191205.enlEndNote30830810<style face="normal" font="default" size="100%">Challenges and opportunities of Managed Aquifer Recharge</style>internal-pdf://0693072094/Grützmacher-2008-308.pdfKWB-documents_20191205.enlEndNote1061106110<style face="normal" font="default" size="100%">Relevance of Different CSO Outlets for Bathing Water Quality in a River System</style>internal-pdf://4144312900/Riechel-2018-1061.pdfKWB-documents_20191205.enlEndNote75875847<style face="normal" font="default" size="100%">Key Outcomes of FP7 Project P-REX</style>internal-pdf://0411719618/Lesjean-2015-758.pdfKWB-documents_20191205.enlEndNote75975947<style face="normal" font="default" size="100%">Green Jobs with Phosphorus Recycling</style>internal-pdf://1527082761/Lesjean-2015-759.pdfKWB-documents_20191205.enlEndNote75275247<style face="normal" font="default" size="100%">Evaluating new processes and concepts for energy and resource recovery from municipal wastewater with Life Cycle Assessment</style>internal-pdf://3418488118/Remy-2015-752.pdfinternal-pdf://0762261029/Remy-2015-7523.pdfinternal-pdf://1674086080/Remy-2015-7521.pdfKWB-documents_20191205.enlEndNote75175147<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Innovative Abwasserbehandlung mit Energiegewinn</style>internal-pdf://3366820555/Remy-2015-751.pdfKWB-documents_20191205.enlEndNote74974947<style face="normal" font="default" size="100%">Energiepositive Abwasserreinigung: Das CARISMO-Verfahren und seine Umsetzung in die Praxis</style>internal-pdf://2086079227/Lesjean-2015-749.pdfKWB-documents_20191205.enlEndNote61961947<style face="normal" font="default" size="100%">Comparison between two different filter systems as a post treatment of an ozonation to remove micropollutants</style>internal-pdf://2782804689/Stapf-2013-619.pdfKWB-documents_20191205.enlEndNote62062047<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2384536520/Stapf-2013-620.pdfKWB-documents_20191205.enlEndNote54354347<style face="normal" font="default" size="100%">Combining ozonation and ceramic membrane filtration for tertiary treatment.</style>internal-pdf://1861895157/Stüber-2012-543.pdfKWB-documents_20191205.enlEndNote51651647<style face="normal" font="default" size="100%">Weitestgehende Phosphorelimination in Kläranlagen: Ökologischer Vergleich von Filtrationsverfahren mittels Life Cycle Assessment</style>internal-pdf://2857629282/Remy-2012-516.pdfKWB-documents_20191205.enlEndNote46146147<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0725504395/Remy-2011-461.pdfinternal-pdf://0202920394/Remy-2011-4612.pdfKWB-documents_20191205.enlEndNote47047047<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0680874582/Langer-2011-470.pdfKWB-documents_20191205.enlEndNote46946947<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0922571428/Langer-2011-469.pdfKWB-documents_20191205.enlEndNote37637647<style face="normal" font="default" size="100%">Mitigation of diffuse agricultural pollution in Brittany (France): Pilot designs for constructed wetlands and bioretention swales</style><style face="normal" font="Times New Roman" size="100%"> </style>internal-pdf://3687446582/Périllon-2010-376.pdfKWB-documents_20191205.enlEndNote33833847<style face="normal" font="default" size="100%">Condition-dependent removal of 38 organic constituents during bank filtration</style>internal-pdf://0675375954/Wiese-2010-338.pdfKWB-documents_20191205.enlEndNote30630647<style face="normal" font="default" size="100%">Operation of MBR membrane modules used in a decentralised wastewater treatment plant: Field study and comparison of different cleaning strategies</style>internal-pdf://1779333337/Stüber-2008-306.pdfKWB-documents_20191205.enlEndNote29829847<style face="normal" font="default" size="11">Investigations on enhanced denitrification capacities of the ENREM process scheme using a synthetic monosubstrate</style>internal-pdf://Johan Stüber - DMS - Krakau - Paper-1538346752/Johan Stüber - DMS - Krakau - Paper.docinternal-pdf://2964419312/Stüber-2009-298.pdfKWB-documents_20191205.enlEndNote29629647<style face="normal" font="default" size="11">Drinking Water Supply in Berlin - a Module within the Urban Water Cycle</style>internal-pdf://2192013919/Grützmacher-2009-296.pdfKWB-documents_20191205.enlEndNote24524547<style face="normal" font="default" size="11">Bacterial Population comparison of Berlin Water Wells</style>internal-pdf://0177571986/Thronicker-2008-245.pdfKWB-documents_20191205.enlEndNote24624647<style face="normal" font="default" size="11">Integrated Sewer Management</style>internal-pdf://1908245598/Schroeder-2007-246.pdfKWB-documents_20191205.enlEndNote23623647<style face="normal" font="default" size="11">Analyse von Niederschlagsextremen zur Verbesserung der Steuerung der Abwasserförderung in Berlin</style>KWB-documents_20191205.enlEndNote24224247<style face="normal" font="default" size="11">Pegelbasierte Förderstromregelung - eine Möglichkeit zur gezielten Bewirtschaftung des Kanals</style>KWB-documents_20191205.enlEndNote24124147<style face="normal" font="default" size="11">Erfahrungen mit neuronalen Netzen für Simulationen des Kanalnetzes</style>KWB-documents_20191205.enlEndNote24424447<style face="normal" font="default" size="11">Poster: Community comparison of clogging-related bacteria in Berlin water wells</style>internal-pdf://3562306081/Knobel-2009-244.pdfKWB-documents_20191205.enlEndNote25725747<style face="normal" font="default" size="100%">Influence of sludge loadings and types of substrates on nutrients removal in MBRs</style>internal-pdf://Bracklow_Toulouse-0727839233/Bracklow_Toulouse.docKWB-documents_20191205.enlEndNote20920947<style face="normal" font="default" size="11">Integriertes Misch- und Regenwassermanagement</style>internal-pdf://2448470234/Schroeder-2008-209.pdfKWB-documents_20191205.enlEndNote21221247<style face="normal" font="default" size="11">Integrale Bewirtschaftung von Entwässerungssystemen</style>internal-pdf://0150514479/Schroeder-2007-212.pdfKWB-documents_20191205.enlEndNote18918947<style face="normal" font="default" size="100%">Optimierung von Brunnenbetrieb und –instandhaltung ein interdisziplinäres Forschungsprojekt in Berlin</style>internal-pdf://2837509371/Wiacek-2008-189.pdfKWB-documents_20191205.enlEndNote18318347<style face="normal" font="default" size="11">Impact assessment of combined sewer overflows on the River Spree in Berlin, Germany</style>internal-pdf://3121640707/Matzinger-2009-183.pdfKWB-documents_20191205.enlEndNote13813847<style face="normal" font="default" size="100%">Application of Different Tracers to Evaluate the Flow Regime at Riverbank Filtration Sites in Berlin, Germany</style>internal-pdf://2875043262/Massmann-2003-138.pdfKWB-documents_20191205.enlEndNote10010047<style face="normal" font="default" size="100%">Behavior of Trace Pollutants During Bank Filtration and Ground Water Recharge of Wastewater-impacted Surface Waters</style>internal-pdf://2937104591/Grünheid-2004-100.pdfKWB-documents_20191205.enlEndNote919147<style face="normal" font="default" size="100%">Quantifying biogeochemical changes during ASR of reclaimed water at Bolivar, South Australia</style>internal-pdf://4291075387/Greskowiak-2006-91.pdfKWB-documents_20191205.enlEndNote939347<style face="normal" font="default" size="100%">Cleaning capacity of bank filtration and artificial recharge with influence of treated waste water</style>internal-pdf://3757222313/Fritz-2004-93.pdfKWB-documents_20191205.enlEndNote858547<style face="normal" font="default" size="100%">Zustand und Entwicklung der Steuerung des Berliner Entwässerungssystems</style>internal-pdf://3686304374/Schroeder-2003-85.pdfinternal-pdf://1405258420/Schroeder-2003-852.pdfKWB-documents_20191205.enlEndNote878747<style face="normal" font="default" size="100%">Simulationsgestützte Entwicklung von Strategien der Verbundsteuerung am Beispiel des Berliner Entwässerungssystems</style>internal-pdf://1268490763/Schroeder-2004-87.pdfKWB-documents_20191205.enlEndNote343447<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater - Cost Comparison with the Conventional Wastewater System</style>KWB-documents_20191205.enlEndNote404047<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces and Greywater Pilot Project</style>internal-pdf://3271292904/Peter-Fröhlich-2003-40.pdfKWB-documents_20191205.enlEndNote838347<style face="normal" font="default" size="100%">Application of InfoWorks CS® for the Evaluation of CSO-Impacts in Berlin</style>internal-pdf://4259550137/Pawlowsky-Reusing-2007-83.pdfKWB-documents_20191205.enlEndNote686847<style face="normal" font="default" size="100%">Membrane bioreactor for semi-central sanitation with enhanced treatment performances</style>internal-pdf://1121487259/Lesjean-2005-68.pdfKWB-documents_20191205.enlEndNote737347<style face="normal" font="default" size="100%">Biologische Phosphorentfernung mit einer nachgeschaltetenDenitrifikation im Membranbelebungsverfahren</style>internal-pdf://1556654365/Gnirß-2003-73.pdfKWB-documents_20191205.enlEndNote171747<style face="normal" font="default" size="100%">Adapted integrated modelling of drainage systems dominated by wastewater pump stations</style>internal-pdf://0046434591/Schroeder-2006-17.pdfKWB-documents_20191205.enlEndNote151547<style face="normal" font="default" size="100%">Current State And Development Of The Real-Time Control Of The Berlin Sewage System</style>file://Z:\Dokument-Managementsystem\Dokuments\Publikation\Schroeder%20and%20Pawlowsky-Reusing,%202004%20-%20Current%20State%20And%20Development%20Of%20The%20Real-Time%20Control%20Of%20The%20Berlin%20Sewage%20System.pdfKWB-documents_20191205.enlEndNote323247<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater – First Results</style>internal-pdf://0960472437/Peter-Fröhlich-2004-32.pdfKWB-documents_20191205.enlEndNote303047<style face="normal" font="default" size="100%">Sanitärkonzepte zur getrennten Behandlung von Urin, Fäkalien und Grauwasser</style>internal-pdf://3109465098/Peter-Fröhlich-2003-30.pdfKWB-documents_20191205.enlEndNote272747<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries et leurs toxines dans la rivière Erdre (France)</style>internal-pdf://1640605357/Luck-2004-27.pdfKWB-documents_20191205.enlEndNote242447<style face="normal" font="default" size="100%">Case study of global pump station control for the combined sewerage of Berlin</style>internal-pdf://1482793733/Huß-2005-24.pdfKWB-documents_20191205.enlEndNote6436435<style face="normal" font="default" size="100%">The limited resources of phosphorus and how to close the phosphorus cycle</style>internal-pdf://0156580456/Kabbe-2013-643.pdfKWB-documents_20191205.enlEndNote1042104232<style face="normal" font="default" size="100%">Betriebsverhalten einer kapillaren Nanofiltration zur Sulfatentfernung in der Trinkwasseraufbereitung</style>internal-pdf://3929449002/Hoff-2017-1042.pdfKWB-documents_20191205.enlEndNote86286217<style face="normal" font="default" size="100%">Overview of technichal developments in opencast mine drainage at RWE Power AG</style>
internal-pdf://0090003709/Reich-2015-862.pdf
KWB-documents_20191205.enlEndNote1055105527<style face="normal" font="default" size="100%">Newfert D6.1: Methodology for LCA and LCC</style>KWB-documents_20191205.enlEndNote1056105627<style face="normal" font="default" size="100%">Newfert D6.2: Environmental Impact for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote1099109917<style face="normal" font="default" size="100%">Nährstoffrückgewinnung aus dem Abwasserstrom</style>
internal-pdf://3399851189/Kleyböcker-2019-1099.pdf
KWB-documents_20191205.enlEndNote1058105827<style face="normal" font="default" size="100%">Newfert D6.3: Cost for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote17717727<style face="normal" font="default" size="11">SPREE2011, AP 1.2 - Schmutzfrachtsimulation zur Bestimmung der hydraulischen und qualitativen Belastung des Regenbeckens</style>internal-pdf://2464527927/Schröder-2007-177.pdfKWB-documents_20191205.enlEndNote38538517<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>
internal-pdf://3797640491/Schroeder-2011-385.pdf
KWB-documents_20191205.enlEndNote161617<style face="normal" font="default" size="100%">Integriertes Abwassermanagement - Strategien für eine integrierte Bewirtschaftung des Berliner Abwassersystems und Nutzen von lokalen und globalen Steuerungskonzepten</style>
internal-pdf://1725070309/Schroeder-2004-16.PDF
KWB-documents_20191205.enlEndNote22922927<style face="normal" font="default" size="11">Umsetzung eines Entscheidungshilfesystems zur Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3231353587/Schröder-2008-229.pdfKWB-documents_20191205.enlEndNote31031017<style face="normal" font="default" size="100%">Naturnahe Pufferzonen als Gewässerschutzmodelle</style>
internal-pdf://1593122161/Matzinger-2009-310.pdf
KWB-documents_20191205.enlEndNote19619617<style face="normal" font="default" size="11">Naturnahe Puffer gegen diffuse Verschmutzung</style>
internal-pdf://2668869690/Matzinger-2009-196.pdf
KWB-documents_20191205.enlEndNote22422427<style face="normal" font="default" size="11">WSSTP - Urban Pilot Theme 1: Project proposals and Demonstration Sites. Managing rain events and flooding in urban areas</style>internal-pdf://2201572613/Lynggaard-Jensen-2008-224.pdfKWB-documents_20191205.enlEndNote24024017<style face="normal" font="default" size="100%">Vierter Weltwasserkongress der IWA - Ein Forum für Erfahrungsaustausch, neue Ideen und Know-how</style>
internal-pdf://3763794898/Hoppe-2005-240.pdf
KWB-documents_20191205.enlEndNote17017017<style face="normal" font="default" size="100%">11th International Conference on Urban Drainage in Edinburgh ICUD – aktuelle Entwicklungen aus Forschung und Praxis – zwischen Kanalbetrieb und Klimawandel</style>
internal-pdf://2460939281/Hoppe-2008-170.pdf
KWB-documents_20191205.enlEndNote85885827<style face="normal" font="default" size="100%">Integration der Spurenstoffentfernung in Technologieansätze der 4. Reinigungsstufe bei Klärwerken</style>internal-pdf://3696311816/Jekel-2015-858.pdfKWB-documents_20191205.enlEndNote16916927<style face="normal" font="default" size="11">An Online-Monitoring and Operating System to Prevent Odour and Corrosion in Sewer Networks - Feasibility Study</style>internal-pdf://1216942791/Barjenbruch-2008-169.pdfKWB-documents_20191205.enlEndNote45445427<style face="normal" font="default" size="100%">Synthesis Report on Practical Implications and Opportunities for Transfer to Field Scale</style>internal-pdf://0731011245/Miehe-2011-454.pdfKWB-documents_20191205.enlEndNote66766732<style face="normal" font="default" size="100%">Optimierungspotentiale für die Schlammentwässerung durch verschiedene chemische Konditionierungsverfahren</style>internal-pdf://1611699569/Zhou-2013-667.pdfKWB-documents_20191205.enlEndNote57357327<style face="normal" font="default" size="100%">Report on risk analysis, best practices and lessons learned from existing geothermal projects in Germany</style>internal-pdf://0972897382/Thomas-2013-573.pdfKWB-documents_20191205.enlEndNote33433427<style face="normal" font="default" size="100%">Project AMEDEUS Accelerate Membrane Development for Urban Sewage Purification - Final Activity Report</style>internal-pdf://3321524103/Lesjean-2010-334.pdfKWB-documents_20191205.enlEndNote57957927<style face="normal" font="default" size="100%">WELLMA-2: Summary of results and recommendations </style>internal-pdf://2352753603/Taute-2012-579.pdfKWB-documents_20191205.enlEndNote58058027<style face="normal" font="default" size="100%">Hydrogeological and hydrochemical investigations on two French selected wells, Gabachot and Boulac - Documentation of data acquisition and results</style>internal-pdf://1194994799/Taute-2012-580.pdfKWB-documents_20191205.enlEndNote58458427<style face="normal" font="default" size="100%">Synthesis report: Quantitative Diagnosis and Assessment of the Differences in the Ageing Behaviour of the VE-operated wells Gabachot & Boulac</style>internal-pdf://0321727755/Schwarzmüller-2012-584.pdfKWB-documents_20191205.enlEndNote32532517<style face="normal" font="default" size="11">Untersuchungen zur Reduzierung biochemischer Brunnenalterung</style>
internal-pdf://2066247403/Schwarzmüller-2009-325.pdf
KWB-documents_20191205.enlEndNote41341317<style face="normal" font="default" size="100%">Eisenbakterien in Trinkwasserbrunnen</style>
internal-pdf://1446386870/Schwarzmüller-2011-413.pdf
KWB-documents_20191205.enlEndNote35235217<style face="normal" font="default" size="100%">Survey on the implementation of DVGW drinking water well monitoring guidelines W125 in practice</style>
internal-pdf://2786271311/Schwarzmüller-2010-352.pdf
KWB-documents_20191205.enlEndNote57857827<style face="normal" font="default" size="100%">WELLMA Decision Support Tool: Manual</style>internal-pdf://4029884911/Schwarzmüller-2013-578.pdfinternal-pdf://1196632622/Schwarzmüller-2013-5783.pdfinternal-pdf://3075484268/Schwarzmüller-2013-5781.pdfKWB-documents_20191205.enlEndNote58258227<style face="normal" font="default" size="100%">Overview of common well regeneration methods </style>internal-pdf://0363412723/Schwarzmüller-2012-582.pdfKWB-documents_20191205.enlEndNote58358327<style face="normal" font="default" size="100%">Technical guidance for the evaluation of regeneration success </style>internal-pdf://1719090497/Schwarzmüller-2011-583.pdfKWB-documents_20191205.enlEndNote57557527<style face="normal" font="default" size="100%">Depth-oriented sampling, seasonal effects and impact of intermittent operation - Documentation of data acquisition and results from field and laboratory experiments</style>internal-pdf://1237986649/Maiwald-2011-575.pdfKWB-documents_20191205.enlEndNote74874827<style face="normal" font="default" size="100%">Separate Collection of Iodinated X-ray Contrast Media in Hospitals: Phase 2 Implementation</style>internal-pdf://0261279961/Schuster-2006-748.pdfKWB-documents_20191205.enlEndNote45945917<style face="normal" font="default" size="100%">TECHNEAU: Perspectives of River Bank Filtration for newly industrialised and developing countries</style>internal-pdf://1718285407/Grützmacher-2011-459.pdfKWB-documents_20191205.enlEndNote1030103027<style face="normal" font="default" size="100%">Untersuchung der Lebensdauer von Schlauchlinern - Ergebnisse der Literaturrecherche. Bericht des Forschungsvorhabens SEMA-Berlin (D3).</style>internal-pdf://1564324373/Wicke-2017-1030.pdfKWB-documents_20191205.enlEndNote1029102927<style face="normal" font="default" size="100%">Analyse und Modellierung des Zustands von Abwasserkanälen in Berlin - Bericht des Forschungsvorhabens SEMA-Berlin (D2 und D4).</style>internal-pdf://1320530328/Riechel-2017-1029.pdfKWB-documents_20191205.enlEndNote1028102827<style face="normal" font="default" size="100%">Beschreibung der Schlauchliner in Berlin und statistische Analyse zu Zustand und Schäden - Kurzbericht des Forschungsvorhabens SEMA-Berlin (Memo).</style>internal-pdf://0161460569/Riechel-2017-1028.pdfKWB-documents_20191205.enlEndNote16116117<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces, and Grey Water - A Pilot Project</style>
KWB-documents_20191205.enlEndNote353517<style face="normal" font="default" size="100%">Separate Ableitung und Behandlung von Urin, Fäkalien und Grauwasser – ein Pilotprojekt </style>
internal-pdf://0826025060/Peter-Fröhlich-2004-35.pdf
KWB-documents_20191205.enlEndNote27827827<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, faeces and Greywater (SCST) - Results</style>internal-pdf://3731849382/Peter-Fröhlich-2007-278.pdfKWB-documents_20191205.enlEndNote28028027<style face="normal" font="default" size="100%">Final cost calculation for the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST)</style>internal-pdf://2897174977/Oldenburg-2007-280.pdfKWB-documents_20191205.enlEndNote21921927<style face="normal" font="default" size="11">River water quality modelling: Status quo</style>internal-pdf://0446533899/Matzinger-2009-219.pdfKWB-documents_20191205.enlEndNote22322327<style face="normal" font="default" size="11">Möglichkeiten und Grenzen der Revitalisierung der Stadtspree als Lebensraum für die Fischfauna</style>internal-pdf://3374158169/Leszinski-2009-223.pdfKWB-documents_20191205.enlEndNote83183117<style face="normal" font="default" size="100%">Klärschlammmanagement und Phosphorrecycling in Deutschland – Eine Abschätzung von Kosten, Umweltauswirkungen und Konsequenzen der geplanten Novelle der AbfKlärV. </style>KWB-documents_20191205.enlEndNote64164117<style face="normal" font="default" size="100%">Nachhaltiges Phosphormanagement in Europa</style>
internal-pdf://0064217720/Kabbe-2013-641.pdfinternal-pdf://0224883288/Kabbe-2013-6412.pdf
KWB-documents_20191205.enlEndNote65465427<style face="normal" font="default" size="100%">Optimization of flocculation for tertiary filtration processes and evaluation of sustainability of tertiary wastewater treatment</style>internal-pdf://1936253374/Miehe-2014-654.pdfKWB-documents_20191205.enlEndNote37937917<style face="normal" font="default" size="100%">Sorption of the cyanobacterial toxins cylindrospermopsin and anatoxin-a to sediments</style>
internal-pdf://3552864560/Klitzke-2011-379.pdfinternal-pdf://Klitzke et al Supplement-0857521921/Klitzke et al Supplement.doc
KWB-documents_20191205.enlEndNote63863827<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Bereiche, NITROLIMIT Diskussionspapier Band 2</style>internal-pdf://2131204062/Mutz-2013-638.pdfKWB-documents_20191205.enlEndNote67467417<style face="normal" font="default" size="100%">Angewandte Wasserforschung</style>
internal-pdf://1809882068/Weigert-2014-674.pdf
KWB-documents_20191205.enlEndNote363627<style face="normal" font="default" size="100%">FINAL REPORT DRAFT v0.1 NASRI Natural and Artificial Systems for Recharge and Infiltration Project acronym: NASRI </style>internal-pdf://3389323520/Pekdeger-2006-36.pdfKWB-documents_20191205.enlEndNote65365327<style face="normal" font="default" size="100%">Bank Filtration and Aquifer Recharde for Drinking Water Production: Application, Efficiency and Perspectives - An Integration of NASRI outcomes and International Experiences</style>internal-pdf://0810267715/Grützmacher-2011-653.pdfKWB-documents_20191205.enlEndNote28828827<style face="normal" font="default" size="11">NASRI - Natural Systems for Recharge and Infiltration - Final Report</style>internal-pdf://0767916717/Fritz-2006-288.pdfKWB-documents_20191205.enlEndNote949417<style face="normal" font="default" size="100%">Process studies in a bank filtration system in Berlin using environmental tracers</style>internal-pdf://2915281259/Fritz-2003-94.pdfKWB-documents_20191205.enlEndNote505027<style face="normal" font="default" size="100%">Technical interim report 2006 - Enhanced Nutrients Removal in Membrane Bioreactor (ENREM)</style>internal-pdf://0541694339/Lesjean-2006-50.pdfKWB-documents_20191205.enlEndNote26426427<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor ENREM: Planning, construction and operation from January 2004 to June 2007</style>internal-pdf://3808919968/Gnirß-2007-264.pdfKWB-documents_20191205.enlEndNote82682627<style face="normal" font="default" size="100%">Final guidelines for sustainability assessment of water technologies (D51.2)</style>internal-pdf://0239019046/Remy-2015-826.pdfKWB-documents_20191205.enlEndNote58958927<style face="normal" font="default" size="100%">RIKO-1 Mikrobiologische Methoden: Stand der Technik</style>internal-pdf://2507024677/Thronicker-2013-589.pdfKWB-documents_20191205.enlEndNote23123127<style face="normal" font="default" size="11">Bewertung des Potenzials von Online-Niederschlagsmessung und Niederschlagsvorhersage aus Radardaten bezüglich der Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3562245022/Rouault-2008-231.pdfKWB-documents_20191205.enlEndNote27627627<style face="normal" font="default" size="11">Monitoring of Water Quality Parameters in Combined Sewer Overflows / Monitoring von Wassergüteparametern an Mischwasserüberläufen</style>internal-pdf://4277567498/Rouault-2009-276.pdfinternal-pdf://2445443145/Rouault-2009-2762.pdfKWB-documents_20191205.enlEndNote9927<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries dans la rivière Erdre Travaux de recherche en laboratoire. Rapport final Janvier 2004</style>internal-pdf://0677181322/Pineau-2004-9.pdfKWB-documents_20191205.enlEndNote99899827<style face="normal" font="default" size="100%">Studie über Effekte und Nebeneffekte bei der Behandlung von kommunalem Abwasser mit Ozon</style>internal-pdf://2569007758/Miehe-2017-998.pdfinternal-pdf://2108766277/Miehe-2017-9982.pdfKWB-documents_20191205.enlEndNote58858827<style face="normal" font="default" size="100%">RIKO-1 Durchführung und Ergebnisse der Felduntersuchungen zur Uferfiltrat-Passage an Brunnen im Wasserwerk Tiefwerder</style>internal-pdf://1658073361/Menz-2013-588.pdfKWB-documents_20191205.enlEndNote59059027<style face="normal" font="default" size="100%">RIKO-1 Durchführung und Ergebnisse der Tracerversuche an Brunnen im Wasserwerk Jungfernheide</style>internal-pdf://0671098923/Menz-2013-590.pdfKWB-documents_20191205.enlEndNote1108110827<style face="normal" font="default" size="100%">Optimierte Materialien und Verfahren zur Entfernung von Mikroplastik aus dem Wasserkreislauf - Schlussbericht Verbundprojekt OEMP (Teilprojekt KOMPETENZZENTRUM WASSER BERLIN GGMBH)</style>internal-pdf://0572321530/Matzinger-2019-1108.pdfKWB-documents_20191205.enlEndNote28328327<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel</style>internal-pdf://3482089923/Kranz-2004-283.pdfKWB-documents_20191205.enlEndNote67167127<style face="normal" font="default" size="100%">Phosphorpotenziale im Land Berlin - Abschlussbericht Projekt P-Pot</style>internal-pdf://0533570931/Kabbe-2014-671.pdfKWB-documents_20191205.enlEndNote28728727<style face="normal" font="default" size="11">IDB International Development of Bank Filtration -Case study India</style>internal-pdf://2445900695/Fritz-2006-287.pdfKWB-documents_20191205.enlEndNote4427<style face="normal" font="default" size="100%">Berlinbeach - Erarbeitung eines Verfahrens zur Vermeidung von Einleitungen aus der Mischkanalisation in städtische Fließgewässer</style>internal-pdf://1038854647/Engel-2004-4.pdfKWB-documents_20191205.enlEndNote82382327<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen (Abschlussbericht) Projektnr: 11315 UEPII/2</style>internal-pdf://3012305287/Barjenbruch-2016-823.pdfKWB-documents_20191205.enlEndNote83883817<style face="normal" font="default" size="100%">Nutrient Recovery Developments</style>
\ No newline at end of file diff --git a/inst/extdata/2020-05-21_KWB-documents.xml b/inst/extdata/2020-05-21_KWB-documents.xml new file mode 100644 index 0000000..ecf73e8 --- /dev/null +++ b/inst/extdata/2020-05-21_KWB-documents.xml @@ -0,0 +1 @@ +KWB-documents_20191205.enlEndNote22422427<style face="normal" font="default" size="11">WSSTP - Urban Pilot Theme 1: Project proposals and Demonstration Sites. Managing rain events and flooding in urban areas</style>internal-pdf://2201572613/Lynggaard-Jensen-2008-224.pdfKWB-documents_20191205.enlEndNote3913916<style face="normal" font="default" size="100%">Strategic Research Agenda of European Technology Platform for Water (WssTP)</style>internal-pdf://0915039999/Lesjean-2010-391.pdfKWB-documents_20191205.enlEndNote22522527<style face="normal" font="default" size="11">International practices and standards of Rainwater Harvesting in urban and peri-urban environment and current R&D projects</style>internal-pdf://4058404350/Jaulhac-2008-225.pdfKWB-documents_20191205.enlEndNote29629647<style face="normal" font="default" size="11">Drinking Water Supply in Berlin - a Module within the Urban Water Cycle</style>internal-pdf://2192013919/Grützmacher-2009-296.pdfKWB-documents_20191205.enlEndNote48148117<style face="normal" font="default" size="100%">Report on current research needs in managed aquifer recharge published by the WssTP</style>internal-pdf://0424759161/Grützmacher-2011-481.pdfKWB-documents_20191205.enlEndNote49149117<style face="normal" font="default" size="100%">Climate change and the water sector in Europe: A review of research and technology development needs</style>internal-pdf://0110501701/Escaler-2012-491.pdfKWB-documents_20191205.enlEndNote46546527<style face="normal" font="default" size="100%">WELLMA-DNA Final Report: Documentation of data acquisition and conclusions</style>internal-pdf://1708847505/Thronicker-2011-465.pdfKWB-documents_20191205.enlEndNote24524547<style face="normal" font="default" size="11">Bacterial Population comparison of Berlin Water Wells</style>internal-pdf://0177571986/Thronicker-2008-245.pdfKWB-documents_20191205.enlEndNote24324347<style face="normal" font="default" size="11">Research on iron-related biofilms in Berlin water wells</style>internal-pdf://3560999121/Thronicker-2008-243.pdfKWB-documents_20191205.enlEndNote70070032<style face="normal" font="default" size="100%">Untersuchungen zur Morphologie eisenoxidierender Grundwasserbakterien und ihrer Toleranz gegenüber Wasserstoffperoxid</style>internal-pdf://3763317585/Kutun-2010-700.pdfKWB-documents_20191205.enlEndNote24424447<style face="normal" font="default" size="11">Poster: Community comparison of clogging-related bacteria in Berlin water wells</style>internal-pdf://3562306081/Knobel-2009-244.pdfKWB-documents_20191205.enlEndNote58158127<style face="normal" font="default" size="100%">WELLMA-DNA: Microbiological investigations in Gabachot and Boulac</style>internal-pdf://0199960791/Thronicker-2011-581.pdfKWB-documents_20191205.enlEndNote57957927<style face="normal" font="default" size="100%">WELLMA-2: Summary of results and recommendations </style>internal-pdf://2352753603/Taute-2012-579.pdfKWB-documents_20191205.enlEndNote58058027<style face="normal" font="default" size="100%">Hydrogeological and hydrochemical investigations on two French selected wells, Gabachot and Boulac - Documentation of data acquisition and results</style>internal-pdf://1194994799/Taute-2012-580.pdfKWB-documents_20191205.enlEndNote58458427<style face="normal" font="default" size="100%">Synthesis report: Quantitative Diagnosis and Assessment of the Differences in the Ageing Behaviour of the VE-operated wells Gabachot & Boulac</style>internal-pdf://0321727755/Schwarzmüller-2012-584.pdfKWB-documents_20191205.enlEndNote41341317<style face="normal" font="default" size="100%">Eisenbakterien in Trinkwasserbrunnen</style>
internal-pdf://1446386870/Schwarzmüller-2011-413.pdf
KWB-documents_20191205.enlEndNote72772747<style face="normal" font="default" size="100%">Auslöser von Alterungsprozessen in Brunnen und deren Verminderung im Betrieb</style>KWB-documents_20191205.enlEndNote35235217<style face="normal" font="default" size="100%">Survey on the implementation of DVGW drinking water well monitoring guidelines W125 in practice</style>
internal-pdf://2786271311/Schwarzmüller-2010-352.pdf
KWB-documents_20191205.enlEndNote56056017<style face="normal" font="default" size="100%">Auswirkung unterschiedlicher Schüttmaterialien auf die Verockerung und Regenerierbarkeit von Brunnen</style>
internal-pdf://0458629277/Schwarzmüller-2013-560.pdf
KWB-documents_20191205.enlEndNote66166127<style face="normal" font="default" size="100%">WELLMA-2 Synthesis report</style>internal-pdf://2065132266/Schwarzmüller-2013-661.pdfKWB-documents_20191205.enlEndNote53353347<style face="normal" font="default" size="100%">Evaluation of the ageing potential of drinking water wells to optimize well operation and maintenance.</style>internal-pdf://1317420197/Schwarzmüller-2012-533.pdfKWB-documents_20191205.enlEndNote57857827<style face="normal" font="default" size="100%">WELLMA Decision Support Tool: Manual</style>internal-pdf://4029884911/Schwarzmüller-2013-578.pdfinternal-pdf://1196632622/Schwarzmüller-2013-5782.pdfinternal-pdf://3075484268/Schwarzmüller-2013-5783.pdfKWB-documents_20191205.enlEndNote93193147<style face="normal" font="default" size="100%">Glaskugel- und konventionell geschüttete Vertikalfilterbrunnen: Betrieb und Regenerierung</style>internal-pdf://0674134950/Schwarzmüller-2014-931.pdfKWB-documents_20191205.enlEndNote58258227<style face="normal" font="default" size="100%">Overview of common well regeneration methods </style>internal-pdf://0363412723/Schwarzmüller-2012-582.pdfKWB-documents_20191205.enlEndNote1181118127<style face="normal" font="default" size="100%">Erweiterte Kurzfassung Projekt: WELLMA1</style>internal-pdf://4170873677/Schwarzmüller-2011-1181.pdfKWB-documents_20191205.enlEndNote58358327<style face="normal" font="default" size="100%">Technical guidance for the evaluation of regeneration success </style>internal-pdf://1719090497/Schwarzmüller-2011-583.pdfKWB-documents_20191205.enlEndNote46446447<style face="normal" font="default" size="100%">Impact of well operation on iron-related clogging in quarternary aquifers in Berlin, Germany </style>internal-pdf://2632339992/Menz-2011-464.pdfKWB-documents_20191205.enlEndNote57757727<style face="normal" font="default" size="100%">Efficiency of H2O2 treatment - Documentation of data acquisition and recommendation of optimized procedure</style>internal-pdf://0762327250/Menz-2011-577.pdfKWB-documents_20191205.enlEndNote32432432<style face="normal" font="default" size="11">Anwendungsgrenzen automatisierter Datenanalyse zur quantitativen Diagnose von Brunnenalterungsprozessen aus der zeitlichen Änderung der Brunnenergiebigkeit auf Basis kontinuierlicher Messungen von Betriebsparametern am Beispiel der Brunnengalerie Tegel-Hohenzollernkanal der Berliner Wasserbetriebe</style>internal-pdf://3310186281/Martin-2009-324.pdfKWB-documents_20191205.enlEndNote57557527<style face="normal" font="default" size="100%">Depth-oriented sampling, seasonal effects and impact of intermittent operation - Documentation of data acquisition and results from field and laboratory experiments</style>internal-pdf://1237986649/Maiwald-2011-575.pdfKWB-documents_20191205.enlEndNote32332332<style face="normal" font="default" size="11">Determination of the clogging potential of drinking water wells in Berlin by an outlier analysis of well management data</style>internal-pdf://0044265522/Köpp-2009-323.pdfKWB-documents_20191205.enlEndNote46646632<style face="normal" font="default" size="100%">Determination of the carbonate scaling potential of drinking water abstraction wells from hydrochemical data using hydro-geochemical modelling software PhreeqC</style>internal-pdf://3080515564/Josse-2011-466.pdfKWB-documents_20191205.enlEndNote41241232<style face="normal" font="default" size="100%">Kosten-Nutzen-Analyse zur optimierten Instandhaltungs- und Neubauplanung am Beispiel ausgewählter Trinkwasserbrunnen der Berliner Wasserbetriebe</style>internal-pdf://2677956589/Brinkmann-2011-412.pdfKWB-documents_20191205.enlEndNote18818847<style face="normal" font="default" size="100%">Brunnenmanagement – ein Forschungsvorhaben zur Optimierung des Betriebs von Brunnenanlagen</style>internal-pdf://0592869250/Wittstock-2009-188.pdfKWB-documents_20191205.enlEndNote18918947<style face="normal" font="default" size="100%">Optimierung von Brunnenbetrieb und –instandhaltung ein interdisziplinäres Forschungsprojekt in Berlin</style>internal-pdf://2837509371/Wiacek-2008-189.pdfKWB-documents_20191205.enlEndNote32532517<style face="normal" font="default" size="11">Untersuchungen zur Reduzierung biochemischer Brunnenalterung</style>
internal-pdf://2066247403/Schwarzmüller-2009-325.pdf
KWB-documents_20191205.enlEndNote34134147<style face="normal" font="default" size="11">Einfluss der Schalthäufigkeit auf die Brunnenalterung</style>internal-pdf://1075573324/Schwarzmüller-2009-341.pdfKWB-documents_20191205.enlEndNote34234247<style face="normal" font="default" size="100%">Wie angewandte Forschung hilft, die Brunnenalterung zu verlangsamen</style>internal-pdf://1281518574/Schwarzmüller-2010-342.pdfKWB-documents_20191205.enlEndNote29729717<style face="normal" font="default" size="100%">Optimierung des Brunnenbetriebs und Instandhaltung: Zwischenergebnisse des interdisziplinären Forschungsprojektes WellMa am Kompetenzzentrum Wasser Berlin</style>
internal-pdf://3958436506/Schwarzmüller-2009-297.pdf
KWB-documents_20191205.enlEndNote1240124027<style face="normal" font="default" size="100%">RÉSUMÉ ÉTENDU Projet: WELLMA1</style>internal-pdf://2976402389/Schwarzmüller-2012-1240.pdfKWB-documents_20191205.enlEndNote1239123927<style face="normal" font="default" size="100%">EXTENDED SUMMARY Project acronym: WellMa1</style>internal-pdf://2906118969/Schwarzmüller-2011-1239.pdfKWB-documents_20191205.enlEndNote57457427<style face="normal" font="default" size="100%">Extended summary of the results and conclusions of the preparatory phase of the WellMa project</style>internal-pdf://1171469528/Schwarzmüller-2011-574.pdfKWB-documents_20191205.enlEndNote18718727<style face="normal" font="default" size="100%">Comparison of direct and indirect diagnosis tools and methods to determine and distinguish clogging</style>internal-pdf://2389915074/Schwarzmüller-2009-187.pdfKWB-documents_20191205.enlEndNote18518527<style face="normal" font="default" size="11">State of the art of (1) The distinction of well ageing types and their extension; (2.1) Monitoring and diagnosis; (2.2) Maintenance; (3.1) Well design and construction and (3.2) Operation</style>internal-pdf://1951118825/Schwarzmüller-2009-185.pdfKWB-documents_20191205.enlEndNote17417427<style face="normal" font="default" size="11">Advanced statistical analyses of well data. </style>internal-pdf://0211990336/Orlikowski-2009-174.pdfKWB-documents_20191205.enlEndNote34734727<style face="normal" font="default" size="100%">Ergebnisse der bundesweiten DVGW-Umfrage zur Instandhaltung von Brunnen 2009</style>internal-pdf://1281191191/Orlikowski-2010-347.pdfKWB-documents_20191205.enlEndNote18618627<style face="normal" font="default" size="11">Identification of sources, pathways into a well and prevention from the risk of having pathogens entering abstraction wells</style>internal-pdf://1000911518/Graeber-2009-186.pdfKWB-documents_20191205.enlEndNote1066106627<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser</style>internal-pdf://0859022840/Schwarzmüller-2018-1066.pdfKWB-documents_20191205.enlEndNote1200120027<style face="normal" font="default" size="100%">Rahmenbedingungen für die umweltgerechte Nutzung von behandeltem Abwasser zur landwirtschaftlichen Bewässerung</style>internal-pdf://0251151893/Seis-2016-1200.pdfKWB-documents_20191205.enlEndNote1146114627<style face="normal" font="default" size="100%">Organic Trace Substances Relevant for Drinking Water – Assessing their Elimination through Bank Filtration. Project acronym: TRACE</style>internal-pdf://2105210140/Krause-2009-1146.pdfKWB-documents_20191205.enlEndNote32132147<style face="normal" font="default" size="100%">Organic Trace Substances Relevant for Drinking Water. Assessing their Elimination through Bank Filtration – Phase 1</style>internal-pdf://2551637891/Grützmacher-2008-321.pdfKWB-documents_20191205.enlEndNote1075107527<style face="normal" font="default" size="100%">TestTools – Entwicklung und Validierung von schnellen Testmethoden zum Spurenstoffverhalten in technischen und natürlichen Barrieren des urbanen Wasserkreislaufs</style>internal-pdf://2724954824/Zietzschmann-2018-1075.pdfKWB-documents_20191205.enlEndNote99399347<style face="normal" font="default" size="100%">Impacts of suspended solids, water temperature and dilution on TrOC elimination and UVA254 reduction by laboratory scale ozonation of secondary effluent</style>internal-pdf://1235209285/Stapf-2016-993.pdfinternal-pdf://2406816387/Stapf-2016-9931.pdfKWB-documents_20191205.enlEndNote1045104532<style face="normal" font="default" size="100%">Modellierung der Spurenstoffelimination im Klärwerksablauf durch Ozonung im Labormaßstab. Erprobung alternativer Indikatoren zur Abschätzung der Ozon- und OH-Radikalexposition</style>internal-pdf://3341684842/Rau-2017-1045.pdfKWB-documents_20191205.enlEndNote99599532<style face="normal" font="default" size="100%">Spurenstoffelimination mittels Ozon im Labormaßstab unter Berücksichtigung der Wasserqualität sowie weiterer Einflussfaktoren</style>internal-pdf://2116955358/Hilbrandt-2016-995.pdfKWB-documents_20191205.enlEndNote37137117<style face="normal" font="default" size="100%">Application of GaN-based ultraviolet-C light emitting diodes - UV LEDs - for water disinfection</style>
internal-pdf://2469273601/Würtele-2011-371.pdf
KWB-documents_20191205.enlEndNote35935927<style face="normal" font="default" size="100%">Point-of-use membrane systems: place in the world of water supply</style>internal-pdf://1541041041/Varbanets-2006-359.pdfKWB-documents_20191205.enlEndNote40840827<style face="normal" font="default" size="11">Occurrence and fate of microbial pathogens and organic trace compounds at riverbank filtration sites in Delhi, India</style>internal-pdf://0831546370/Sprenger-2008-408.pdfKWB-documents_20191205.enlEndNote40640617<style face="normal" font="default" size="100%">Vulnerability of bank filtration systems to climate change</style>
internal-pdf://1645240379/Sprenger-2010-406.pdf
KWB-documents_20191205.enlEndNote31131147<style face="normal" font="default" size="100%">The Potential of River Bank Filtration for Reducing Chemical Pollutants and Pathogens from River Water ion Megacities: The New Delhi Experience</style>internal-pdf://1705014078/Sprenger-2009-311.pdfKWB-documents_20191205.enlEndNote73573517<style face="normal" font="default" size="100%">Removal of indigenous coliphages and enteric viruses during riverbank filtration from highly polluted river water in Delhi (India)</style>
internal-pdf://2114453433/Sprenger-2014-735.pdf
KWB-documents_20191205.enlEndNote41641647<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://1339906985/Rustler-2011-416.pdfinternal-pdf://4121648103/Rustler-2011-4161.pdfKWB-documents_20191205.enlEndNote40340327<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://0798843017/Rustler-2011-403.pdfKWB-documents_20191205.enlEndNote41741747<style face="normal" font="default" size="100%">Decision support system for the multi-objective optimization of bank filtration systems</style>internal-pdf://1544641589/Rustler-2010-417.pdfinternal-pdf://2607111284/Rustler-2010-4172.pdfinternal-pdf://2103860402/Rustler-2010-4173.pdfKWB-documents_20191205.enlEndNote53953947<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling</style>internal-pdf://2552863667/Rustler-2012-539.pdfKWB-documents_20191205.enlEndNote40240227<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling </style>internal-pdf://0476536064/Rustler-2011-402.pdfKWB-documents_20191205.enlEndNote40140127<style face="normal" font="default" size="100%">Bank Filtration Simulator - Manual</style>internal-pdf://0245260503/Rustler-2009-401.pdfKWB-documents_20191205.enlEndNote40040027<style face="normal" font="default" size="100%">State-of-the-art in the field of well field optimization modelling</style>internal-pdf://3291177253/Rustler-2010-400.pdfKWB-documents_20191205.enlEndNote39939927<style face="normal" font="default" size="100%">Decision Support System for Bank Filtration Systems</style>internal-pdf://2793693555/Rustler-2011-399.pdfKWB-documents_20191205.enlEndNote36036027<style face="normal" font="default" size="100%">NOM-fouling in low flux UF membrane systems</style>internal-pdf://0117402809/Peter-Varbanets-2007-360.pdfKWB-documents_20191205.enlEndNote40740727<style face="normal" font="default" size="100%">Preliminary report on data of all inorganic substances and physicochemical parameters listed in the Indian and German drinking water Standards from surface water and groundwater at the 3(+1) field sites</style>internal-pdf://4099223169/Pekdeger-2008-407.pdfKWB-documents_20191205.enlEndNote34034017<style face="normal" font="default" size="100%">Assessment of the potential for bank filtration in a water-stressed megacity (Delhi, India)</style>internal-pdf://2871090588/Lorenzen-2010-340.pdfKWB-documents_20191205.enlEndNote38338317<style face="normal" font="default" size="100%">A Simple Method to Hide Data Loggers Safely in Observation Wells</style>KWB-documents_20191205.enlEndNote40440427<style face="normal" font="default" size="100%">Results on the background work and data integration of MAR systems for an Integrated Water Resource Management</style>internal-pdf://3970590197/Lorenzen-2007-404.pdfKWB-documents_20191205.enlEndNote36236227<style face="normal" font="default" size="100%">Development of UV-LED disinfection</style>internal-pdf://3992219074/Kneissl-2010-362.pdfKWB-documents_20191205.enlEndNote39839827<style face="normal" font="default" size="100%">Relevance and opportunities of RBF systems in developing and newly-industrialised countries</style>internal-pdf://1931829853/Hülshoff-2009-398.pdfKWB-documents_20191205.enlEndNote41041027<style face="normal" font="default" size="100%">Analysis of the vulnerability of bank filtration systems to climate change by comparing their effectiveness under varying environmental conditions</style>internal-pdf://3328401935/Hülshoff-2009-410.pdfKWB-documents_20191205.enlEndNote36336327<style face="normal" font="default" size="100%">International Market Survey on Membrane-Based Products for Decentralised Water Supply (POU and SSS Units) </style>internal-pdf://1547200894/Hoa-2008-363.pdfKWB-documents_20191205.enlEndNote40940927<style face="normal" font="default" size="100%">Feasibility Study on Post-treatment Options after Riverbank Filtration in Delhi: Minimum Requirements</style>internal-pdf://2410767050/Hoa-2010-409.pdfKWB-documents_20191205.enlEndNote36136127<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in France</style>internal-pdf://1982818764/Hoa-2009-361.pdfKWB-documents_20191205.enlEndNote45945917<style face="normal" font="default" size="100%">TECHNEAU: Perspectives of River Bank Filtration for newly industrialised and developing countries</style>
internal-pdf://1718285407/Grützmacher-2011-459.pdf
KWB-documents_20191205.enlEndNote29529510<style face="normal" font="default" size="11">Function and relevance of aquifer recharge techniques to enable sustainable water resources management in developing and newly-industrialized countries</style>internal-pdf://0193885833/Grützmacher-2009-295.pdfKWB-documents_20191205.enlEndNote49549517<style face="normal" font="default" size="100%">Operation of gravity-driven ultrafiltration prototype for decentralised water supply</style>
internal-pdf://1531126525/Boulestreau-2012-495.pdf
KWB-documents_20191205.enlEndNote33933947<style face="normal" font="default" size="100%">Operation of a 5 m</style><style face="superscript" font="default" size="100%">3</style><style face="normal" font="default" size="100%">/d Gravity-driven Ultrafiltration Unit for Decentralised Water Supply</style>internal-pdf://4029443741/Boulestreau-2010-339.pdfKWB-documents_20191205.enlEndNote35835827<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in South Africa</style>internal-pdf://1634298472/Boulestreau-2010-358.pdfKWB-documents_20191205.enlEndNote41141127<style face="normal" font="default" size="100%">Watergy: Energy and Water Efficiency in Municipal Water Supply and Wastewater Treatment - </style><style face="italic" font="default" size="100%">Cost-Effective Savings of Water and Energy</style>internal-pdf://0624321367/Barry-2007-411.pdfKWB-documents_20191205.enlEndNote99299210<style face="normal" font="default" size="100%">Temperature measurements during Managed Aquifer Recharge for safeguarding subsurface travel times</style>internal-pdf://1076870471/Sprenger-2016-992.pdfKWB-documents_20191205.enlEndNote1016101627<style face="normal" font="default" size="100%">Entwicklung einer Monitoringstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin-Tiefwerder und -Spandau - Schlussbericht T-MON</style>internal-pdf://2764214178/Sprenger-2017-1016.pdfKWB-documents_20191205.enlEndNote1065106527<style face="normal" font="default" size="100%">Entwicklung einer Monitorstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin Tiefwerder und - Spandau - Zusatzbericht zur Bestimmung der thermischen Retardation. Development of a strategy for continuous monitoring of flow times from aquifer recharge and bank filtration to drinking water wells at Berlin Tiefwerder and Spandau - additional report for the determination of thermal retardation</style>internal-pdf://2824906169/Sprenger-2018-1065.pdfKWB-documents_20191205.enlEndNote1115111547<style face="normal" font="default" size="100%">Einsatz einfacher und kostengünstiger Methoden zur Überwachung von Fließzeiten und Prozessen in der Grundwasseranreicherung</style>internal-pdf://0767020926/Schwarzmüller-2020-1115.pdfKWB-documents_20191205.enlEndNote1031103110<style face="normal" font="default" size="100%">Eignung von saisonalen Temperatursignalen zur Überwachung von Grundwasserfließzeiten bei der Uferfiltration und Grundwasseranreicherung in Berlin</style>internal-pdf://0638393930/Schwarzmüller-2017-1031.pdfKWB-documents_20191205.enlEndNote96796732<style face="normal" font="default" size="100%">Abschätzung der Verweilzeit bei der Untergrundpassage am Grundwasseranreicherungsstandort Berlin-Spandau anhand der Umwelttracer Temperatur und stabile Isotope - Masterarbeit</style>KWB-documents_20191205.enlEndNote17817847<style face="normal" font="default" size="11">Dimensioning of a stormwater tank using long-term simulation and assessment of uncertainties</style>internal-pdf://3286333735/Sonnenberg-2009-178.pdfKWB-documents_20191205.enlEndNote17917932<style face="normal" font="default" size="11">Bemessung eines Mischwasserspeichers in der Spree mittels numerischer Langzeitsimulation und Analyse ausgewählter Unsicherheiten</style>internal-pdf://0379696476/Sonnenberg-2008-179.pdfKWB-documents_20191205.enlEndNote17717727<style face="normal" font="default" size="11">SPREE2011, AP 1.2 - Schmutzfrachtsimulation zur Bestimmung der hydraulischen und qualitativen Belastung des Regenbeckens</style>internal-pdf://2464527927/Schroeder-2007-177.pdfKWB-documents_20191205.enlEndNote20620647<style face="normal" font="default" size="11">Projekt SPREE2011 - Entwicklung von Off-Shore Speicherräumen mit integrierter Klärtechnik zur Vermeidung von Mischwassereinleitungen in Gewässer</style>internal-pdf://0131432209/Gantner-2008-206.pdfKWB-documents_20191205.enlEndNote1229122947<style face="normal" font="default" size="100%">Life Cycle Assessment of material recovery from municipal wastewater: circular economy with environmental benefits?</style>KWB-documents_20191205.enlEndNote99899827<style face="normal" font="default" size="100%">Studie über Effekte und Nebeneffekte bei der Behandlung von kommunalem Abwasser mit Ozon</style>internal-pdf://2569007758/Stapf-2017-998.pdfKWB-documents_20191205.enlEndNote1127112747<style face="normal" font="default" size="100%">Model-based prediction of pipe age for filling gaps in sewer asset data</style>internal-pdf://1489257713/Riechel-2019-1127.pdfKWB-documents_20191205.enlEndNote1030103027<style face="normal" font="default" size="100%">Untersuchung der Lebensdauer von Schlauchlinern - Ergebnisse der Literaturrecherche. Bericht des Forschungsvorhabens SEMA-Berlin (D3).</style>internal-pdf://1564324373/Wicke-2017-1030.pdfKWB-documents_20191205.enlEndNote1029102927<style face="normal" font="default" size="100%">Analyse und Modellierung des Zustands von Abwasserkanälen in Berlin - Bericht des Forschungsvorhabens SEMA-Berlin (D2 und D4).</style>internal-pdf://1320530328/Riechel-2017-1029.pdfKWB-documents_20191205.enlEndNote1028102827<style face="normal" font="default" size="100%">Beschreibung der Schlauchliner in Berlin und statistische Analyse zu Zustand und Schäden - Kurzbericht des Forschungsvorhabens SEMA-Berlin (Memo).</style>internal-pdf://0161460569/Riechel-2017-1028.pdfKWB-documents_20191205.enlEndNote1076107617<style face="normal" font="default" size="100%">Evaluation of uncertainties in sewer condition assessment</style>
KWB-documents_20191205.enlEndNote1059105917<style face="normal" font="default" size="100%">Bewertung verschiedener Modellansätze zur Vorhersage des Zustands von Abwasserkanälen am Beispiel von Berlin</style>
internal-pdf://3194698134/Riechel-2018-1059.pdf
KWB-documents_20191205.enlEndNote95695617<style face="normal" font="default" size="100%">Calibration of UV/Vis spectrophotometers: A review and comparison of different methods to estimate TSS and total and dissolved COD concentrations in sewers, WWTPs and rivers</style>
internal-pdf://2613579970/Lepot-2016-956.pdf
KWB-documents_20191205.enlEndNote66266227<style face="normal" font="default" size="100%">Review of available technologies and methodologies for sewer condition evaluation</style>internal-pdf://2503540940/Kley-2013-662.pdfKWB-documents_20191205.enlEndNote66366327<style face="normal" font="default" size="100%">Review of sewer deterioration models</style>internal-pdf://1914220386/Kley-2013-663.pdfKWB-documents_20191205.enlEndNote83683627<style face="normal" font="default" size="100%">Results of sewer deterioration modelling in Braunschweig. Internal Report 2.1</style>internal-pdf://4285449886/Kästner-2015-836.pdfKWB-documents_20191205.enlEndNote83783727<style face="normal" font="default" size="100%">Modelling of asset management strategies in Braunschweig. Internal Report 3</style>internal-pdf://2757923102/Kästner-2015-837.pdfKWB-documents_20191205.enlEndNote83283217<style face="normal" font="default" size="100%">Wie zuverlässig sind Kanalalterungsmodelle?</style>
internal-pdf://4002561504/Caradot-2015-832.pdf
KWB-documents_20191205.enlEndNote83383317<style face="normal" font="default" size="100%">Influence of local calibration on the quality of on-line wet weather discharge monitoring: feedback from five international case studies</style>
internal-pdf://3706132332/Caradot-2015-833.pdf
KWB-documents_20191205.enlEndNote61561547<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies</style>internal-pdf://2892685862/Abstract_EJSW2013_Delpth_Caradot.docKWB-documents_20191205.enlEndNote61461447<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies – state-of-the-art and perspectives</style>internal-pdf://0698781026/Caradot-2013-614.pdfKWB-documents_20191205.enlEndNote95895817<style face="normal" font="default" size="100%">The relevance of sewer deterioration modelling to support asset management strategies</style>
internal-pdf://3403554457/Caradot-2016-958.pdf
KWB-documents_20191205.enlEndNote95795747<style face="normal" font="default" size="100%">The benefits of deterioration modelling to support sewer asset management strategies</style>internal-pdf://3874975480/Caradot-2016-957.pdfKWB-documents_20191205.enlEndNote83583547<style face="normal" font="default" size="100%">The influence of data availability on the performance of sewer deterioration modelling</style>internal-pdf://1964841889/Caradot-2015-835.pdfKWB-documents_20191205.enlEndNote83483447<style face="normal" font="default" size="100%">The potential of deterioration modelling to support sewer asset management</style>internal-pdf://0280321486/Caradot-2015-834.pdfKWB-documents_20191205.enlEndNote1060106017<style face="normal" font="default" size="100%">Practical benchmarking of statistical and machine learning models for predicting the condition of sewer pipes in Berlin, Germany</style>
internal-pdf://3644410872/Caradot-2018-1060.pdf
KWB-documents_20191205.enlEndNote66466427<style face="normal" font="default" size="100%">Review of current asset management strategies for sewer systems: results from a survey among European cities.</style>internal-pdf://0113292089/Caradot-2013-664.pdfKWB-documents_20191205.enlEndNote27927927<style face="normal" font="default" size="100%">Resource recovery and removal of pharmaceutical residues Treatment of separate collected urine</style>internal-pdf://1832391570/Tettenbron-2007-279.pdfKWB-documents_20191205.enlEndNote28128127<style face="normal" font="default" size="100%">Ecological assessment of alternative sanitation concepts with Life Cycle Assessment</style>internal-pdf://1761770610/Remy-2006-281.pdfKWB-documents_20191205.enlEndNote313147<style face="normal" font="default" size="100%">EU-Demonstrationsprojekt Sanitärkonzepte für die separate Erfassung und Behandlung von Urin, Fäkalien und Grauwasser - erste Ergebnisse</style>KWB-documents_20191205.enlEndNote343447<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater - Cost Comparison with the Conventional Wastewater System</style>KWB-documents_20191205.enlEndNote333347<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater - Demonstration Project in Berlin, Germany</style>internal-pdf://1554752807/Peter-Fröhlich-2004-33.pdfKWB-documents_20191205.enlEndNote323247<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater – First Results</style>internal-pdf://0960472437/Peter-Fröhlich-2004-32.pdfKWB-documents_20191205.enlEndNote303047<style face="normal" font="default" size="100%">Sanitärkonzepte zur getrennten Behandlung von Urin, Fäkalien und Grauwasser</style>internal-pdf://3109465098/Peter-Fröhlich-2003-30.pdfKWB-documents_20191205.enlEndNote16116117<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces, and Grey Water - A Pilot Project</style>
KWB-documents_20191205.enlEndNote353517<style face="normal" font="default" size="100%">Separate Ableitung und Behandlung von Urin, Fäkalien und Grauwasser – ein Pilotprojekt </style>
internal-pdf://0826025060/Peter-Fröhlich-2004-35.pdf
KWB-documents_20191205.enlEndNote404047<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces and Greywater Pilot Project</style>internal-pdf://3271292904/Peter-Fröhlich-2003-40.pdfKWB-documents_20191205.enlEndNote27827827<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, faeces and Greywater (SCST) - Results</style>internal-pdf://3731849382/Peter-Fröhlich-2007-278.pdfKWB-documents_20191205.enlEndNote27727727<style face="normal" font="default" size="100%">Sanitärkonzepte zur seperaten Behandlung von Urin, Fäkalien und Grauwasser (SCST) - Layman Report</style>internal-pdf://3322773764/Peter-Fröhlich-2007-277.pdfKWB-documents_20191205.enlEndNote454527<style face="normal" font="default" size="100%">SCST, Technical interim report 2005</style>internal-pdf://0020946937/Pawlowski-2005-45.pdfKWB-documents_20191205.enlEndNote28028027<style face="normal" font="default" size="100%">Final cost calculation for the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST)</style>internal-pdf://2897174977/Oldenburg-2007-280.pdfKWB-documents_20191205.enlEndNote28228227<style face="normal" font="default" size="100%">Final report for task 8 of the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST) , Fertilizer Usage</style>internal-pdf://1280146983/Muskolus-2007-282.pdfKWB-documents_20191205.enlEndNote393927<style face="normal" font="default" size="100%">Progress Report No. 01 - Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater (SCST)</style>internal-pdf://3135153915/Luck-2004-39.pdfKWB-documents_20191205.enlEndNote73673617<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani-Koratallai (A-K) basin north of Chennai (India)</style>
internal-pdf://2451177791/Sprenger-2014-736.pdf
KWB-documents_20191205.enlEndNote65265247<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani–Koratallai (A-K) basin north of Chennai (India) </style>internal-pdf://0600419013/Sprenger-2013-652.pdfKWB-documents_20191205.enlEndNote9619615<style face="normal" font="default" size="100%">Numerical and analytical models for natural water treatment systems in the Indian context </style>
internal-pdf://0581186432/Sprenger-2016-961.pdf
KWB-documents_20191205.enlEndNote73473417<style face="normal" font="default" size="100%">Hydrogeochemistry of Urban Floodplain Aquifer Under the Influence of Contaminated River Seepage in Delhi (India)</style>
internal-pdf://1463418404/Sprenger-2014-734.pdf
KWB-documents_20191205.enlEndNote68068047<style face="normal" font="default" size="100%">Development of Ammonium Concentrations at a Riverbank Filtration Site in Delhi (India) – Water-Sediment Interactions from Infiltration to Production</style>internal-pdf://3103375448/FH DGG_2014_Groeschke.docxinternal-pdf://2081687054/Gröschke-2014-680.pdfKWB-documents_20191205.enlEndNote67867847<style face="normal" font="default" size="100%">Transport of Sewage-borne Ammonium in a Floodplain Aquifer: Column Experiments with Aquifer Materials from the Yamuna Floodplain in Delhi (India)</style>internal-pdf://2458865875/IAP2014_Abstract_Maike_Groeschke.docxinternal-pdf://0692417985/Gröschke-2014-678.pdfKWB-documents_20191205.enlEndNote91691617<style face="normal" font="default" size="100%">Semi-Analytical Model for Estimation of Unsteady Seepage from a Large Water Body Influenced by Variable Flows</style>
internal-pdf://3557253739/Ghosh-2015-916.pdf
KWB-documents_20191205.enlEndNote94894827<style face="normal" font="default" size="100%">Documentation of acquired data and conceptual model of MAR impact input for WP5 modelling</style>internal-pdf://4076769171/Boisson-2013-948.pdfKWB-documents_20191205.enlEndNote97397317<style face="normal" font="default" size="100%">Hydrogeochemical and isotopic insights into mineralization processes and groundwater recharge from an intermittent monsoon channel to an overexploited aquifer in eastern Haryana (India)</style>KWB-documents_20191205.enlEndNote95295227<style face="normal" font="default" size="100%">Report on existing MAR practice and experience in India, especially in Chennai, Maheshwaram, Raipur</style>internal-pdf://3937375269/Ahmed-2012-952.pdfKWB-documents_20191205.enlEndNote55155127<style face="normal" font="default" size="100%">Database of relevant pollutants in urban areas and their attenuation at RBF sites. Deliverable 1.1</style>internal-pdf://0947208175/Adlakha-2012-551.pdfKWB-documents_20191205.enlEndNote95395327<style face="normal" font="default" size="100%">Database of baseline data for study sites</style>internal-pdf://2014418176/Adlakha-2012-953.pdfKWB-documents_20191205.enlEndNote73873827<style face="normal" font="default" size="100%">Database of baseline data for study sites - Deliverable 5.1</style>internal-pdf://0144574779/Adlakha-2012-738.pdfKWB-documents_20191205.enlEndNote55355327<style face="normal" font="default" size="100%">Preliminary models and system design. Deliverable 5.2</style>internal-pdf://0865615933/Adlakha-2012-553.pdfKWB-documents_20191205.enlEndNote95495427<style face="normal" font="default" size="100%">Preliminary models and system design</style>internal-pdf://0231773736/Adlakha-2012-954.pdfKWB-documents_20191205.enlEndNote22222227<style face="normal" font="default" size="11">Literature Review on the Open Modelling Interface and Environment (OpenMI)</style>internal-pdf://0440241803/Sonnenberg-2008-222.pdfKWB-documents_20191205.enlEndNote27527527<style face="normal" font="default" size="11">Applicability of OpenMI and API for coupling models within MIA-CSO</style>internal-pdf://3994582957/Sonnenberg-2009-275.pdfKWB-documents_20191205.enlEndNote22022027<style face="normal" font="default" size="11">Erläuterungsbericht zur weiteren Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung von Mischwasserentlastungen im September 2005</style>internal-pdf://3361378009/Schumacher-2009-220.pdfKWB-documents_20191205.enlEndNote22122127<style face="normal" font="default" size="11">Instationäre, hydronumerische 1D-Berechnung von Wasserstand und Durchfluss in der Stauhaltung Charlottenburg (Spree und Kanäle) für die Abflussjahre 2002 bis 2007</style>internal-pdf://3093729063/Schumacher-2008-221.pdfKWB-documents_20191205.enlEndNote21521547<style face="normal" font="default" size="11">A water quality based method for the assessment of CSO impact on receiving waters in Berlin</style>internal-pdf://3220148959/Schroeder-2008-215.pdfKWB-documents_20191205.enlEndNote20920947<style face="normal" font="default" size="11">Integriertes Misch- und Regenwassermanagement</style>internal-pdf://2448470234/Schroeder-2008-209.pdfKWB-documents_20191205.enlEndNote1177117747<style face="normal" font="default" size="100%">Grundlagen der Kanalnetzsimulation</style>KWB-documents_20191205.enlEndNote21021047<style face="normal" font="default" size="11">Simplification of dynamic flow routing models using hybrid modelling approaches - two case studies</style>internal-pdf://1915333501/Rouault-2008-210.pdfinternal-pdf://0144354236/Rouault-2008-2101.pdfKWB-documents_20191205.enlEndNote30930927<style face="normal" font="default" size="100%">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://3204281291/Riechel-2009-309.pdfKWB-documents_20191205.enlEndNote21721732<style face="normal" font="default" size="11">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://0555585475/Riechel-2009-217.pdfKWB-documents_20191205.enlEndNote21421447<style face="normal" font="default" size="11">Integrated modelling of the impact from Combined Sewer Overflows on the water quality of slow-flowing lowland rivers</style>internal-pdf://0207065121/Pawlowsky-Reusing-2008-214.pdfKWB-documents_20191205.enlEndNote21321347<style face="normal" font="default" size="11">The HSG Guideline Document for Modelling Integrated Urban Wastewater Systems</style>internal-pdf://2250739823/Muschalla-2008-213.pdfKWB-documents_20191205.enlEndNote21821827<style face="normal" font="default" size="11">Immissionsrichtlinien für Mischwassereinleitungen</style>internal-pdf://1905955005/Matzinger-2008-218.pdfKWB-documents_20191205.enlEndNote21921927<style face="normal" font="default" size="11">River water quality modelling: Status quo</style>internal-pdf://0446533899/Matzinger-2009-219.pdfKWB-documents_20191205.enlEndNote22322327<style face="normal" font="default" size="11">Möglichkeiten und Grenzen der Revitalisierung der Stadtspree als Lebensraum für die Fischfauna</style>internal-pdf://3374158169/Leszinski-2009-223.pdfKWB-documents_20191205.enlEndNote21621632<style face="normal" font="default" size="11">Räumlich differenzierte Modellierung des Stofftransportes im Niederschlagsabfluss von urbanen Flächen am Beispiel des Einzugsgebietes Ruschegraben, Berlin</style>internal-pdf://2523697575/Helling-2008-216.pdfKWB-documents_20191205.enlEndNote97697647<style face="normal" font="default" size="100%">Wellbore Skin in Mine Dewatering and Drinking Water Supply: Field Observation, Mineralogy and Hydraulic Effect</style>internal-pdf://3995256054/Weidner-2016-976.pdfKWB-documents_20191205.enlEndNote86286217<style face="normal" font="default" size="100%">Overview of technichal developments in opencast mine drainage at RWE Power AG</style>
internal-pdf://0090003709/Reich-2015-862.pdf
KWB-documents_20191205.enlEndNote86186117<style face="normal" font="default" size="100%">Technische Entwicklung in der Tagebauentwässerung - ein Überblick</style>
internal-pdf://0879466699/Reich-2015-861.pdf
KWB-documents_20191205.enlEndNote1124112410<style face="normal" font="default" size="100%">First application of a newly developed field gas extraction device to date old groundwater</style>KWB-documents_20191205.enlEndNote15115147<style face="normal" font="default" size="100%">Erfassung von jodorganischen Röntgenkontrastmitteln</style>KWB-documents_20191205.enlEndNote15415417<style face="normal" font="default" size="100%">Medikamente verlangen dem Klärwerk Höchstleistungen ab</style>KWB-documents_20191205.enlEndNote1148114827<style face="normal" font="default" size="100%">Getrennte Erfassung von jodorganischen Röntgenkontrastmitteln in Krankenhäusern. Abschlussbericht des Forschungsprojektes Phase 2: Praktische Durchführung. Abschlussbericht des Kompetenzzentrum Wasser Berlin</style>internal-pdf://1037062015/Schuster-2006-1148.pdfKWB-documents_20191205.enlEndNote74874827<style face="normal" font="default" size="100%">Separate Collection of Iodinated X-ray Contrast Media in Hospitals: Phase 2 Implementation</style>internal-pdf://0261279961/Schuster-2006-748.pdfKWB-documents_20191205.enlEndNote1147114732<style face="normal" font="default" size="100%">Möglichkeiten der getrennten Erfassung von Arzneimitteln in Krankenhäusern zur Entlastung des Abwassers, am Beispiel der iodorganischen Röntgenkontrastmittel und der Zytostatika</style>KWB-documents_20191205.enlEndNote3327<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von iodorganischen Röntgenkontrastmitteln in Krankenhäusern</style>internal-pdf://2463473563/Pineau-2005-3.pdfKWB-documents_20191205.enlEndNote6627<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von Röntgenkontrastmitteln - Zwischenbericht</style>internal-pdf://0304063065/Pineau-2004-6.pdfKWB-documents_20191205.enlEndNote1149114927<style face="normal" font="default" size="100%">Leitfaden für die Sammlung von Patientenurin in Krankenhäusern </style>internal-pdf://4155790509/Heinzmann-2006-1149.pdfKWB-documents_20191205.enlEndNote15315317<style face="normal" font="default" size="100%">Getrennte Erfassung von jodorganischen Röntgenkontrastmitteln mit mobilen Urinbehältern in zwei Krankenhäusern - Ergebnisse der Testphase</style>
KWB-documents_20191205.enlEndNote15215247<style face="normal" font="default" size="100%">Decentralized Collection of Iodinated X-Ray Contrast Media in Hospitals</style>KWB-documents_20191205.enlEndNote58958927<style face="normal" font="default" size="100%">RIKO-1 Mikrobiologische Methoden: Stand der Technik</style>internal-pdf://2507024677/Thronicker-2013-589.pdfKWB-documents_20191205.enlEndNote53153132<style face="normal" font="default" size="100%">Tracerversuch zum Nachweis von Undichtigkeiten am Beispiel eines Vertikalfilterbrunnens des Wasserwerks Jungfernheide (Berlin).</style>internal-pdf://2752136321/Steinhöfel-2012-531.pdfKWB-documents_20191205.enlEndNote58658627<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der Feld- und Laborarbeiten an Brunnen SPAsued10-/1983V</style>internal-pdf://0130886049/Schwarzmüller-2013-586.pdfKWB-documents_20191205.enlEndNote58558527<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der deskriptiven Datenanalyse</style>internal-pdf://0987376330/Schwarzmüller-2013-585.pdfKWB-documents_20191205.enlEndNote58858827<style face="normal" font="default" size="100%">RIKO-1 Durchführung und Ergebnisse der Felduntersuchungen zur Uferfiltrat-Passage an Brunnen im Wasserwerk Tiefwerder</style>internal-pdf://1658073361/Menz-2013-588.pdfKWB-documents_20191205.enlEndNote58758727<style face="normal" font="default" size="100%">RIKO-1 Synthesebericht</style>internal-pdf://0703079602/Menz-2013-587.pdfKWB-documents_20191205.enlEndNote59059027<style face="normal" font="default" size="100%">RIKO-1 RISIKOANALYSE DES EINTRAGS MIKROBIELLER KONTAMINATION IN TRINKWASSERBRUNNEN UND ABLEITUNG VON VERMEIDUNGSSTRATEGIEN – PHASE 1 -Durchführung und Ergebnisse der Tracerversuche an Brunnen im Wasserwerk Jungfernheide</style>internal-pdf://0671098923/Menz-2013-590.pdfKWB-documents_20191205.enlEndNote1089108927<style face="normal" font="default" size="100%">5 REPORTS ON THE LEGISLATIVE/ADMINISTRATIVE FRAMEWORKS IN THE INVOLVED REGION – STRUCTURE AND QUESTIONNAIRE</style>
internal-pdf://1850729357/Müller-2018-1089.pdf
KWB-documents_20191205.enlEndNote1088108827<style face="normal" font="default" size="100%">5 Training Courses in the 5 regions for utility partners and stakeholders on pilotactivities</style>
internal-pdf://4282442590/Müller-2018-1088.pdf
KWB-documents_20191205.enlEndNote1085108527<style face="normal" font="default" size="100%">Reasons/conditions leading to the choice of the 5 pilots</style>
internal-pdf://1171120802/Loderer-2018-1085.pdf
KWB-documents_20191205.enlEndNote1087108732<style face="normal" font="default" size="100%">Energetic and economic evaluation of different scenarios for a biogas upgrading and power-to-gas technology at a wastewater treatment plant in Berlin</style>
internal-pdf://3050300144/Habibi-2018-1087.pdf
KWB-documents_20191205.enlEndNote41941947<style face="normal" font="default" size="100%">A European initiative to define current research needs in managed aquifer recharge</style>internal-pdf://3197460149/Grützmacher-2010-419.pdfinternal-pdf://0856582758/Grützmacher-2010-4191.pdfKWB-documents_20191205.enlEndNote48848847<style face="normal" font="default" size="100%">A catalogue and matrix of initiatives as a toolbox for utilities to enhance their preparedness for climate change</style>internal-pdf://2629521413/Staub-2012-488.pdfKWB-documents_20191205.enlEndNote42542527<style face="normal" font="default" size="100%">Catalogue of European adaptive initiatives of the water sector to face climate change impacts V3 (Updated 2012 Release)</style>internal-pdf://1548569413/Staub-2012-425.pdfKWB-documents_20191205.enlEndNote54254227<style face="normal" font="default" size="100%">Decision Support for managing substance flows within the Berlin water cycle under climate change conditions – Synthesis Report</style>internal-pdf://0332475253/Rustler-2012-542.pdfKWB-documents_20191205.enlEndNote51751747<style face="normal" font="default" size="100%">Development of a planning instrument to reduce future ecosystem impacts of combined sewer overflows in the Berlin River Spree.</style>internal-pdf://3553837445/Rouault-2012-517.pdfKWB-documents_20191205.enlEndNote8558555<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions</style>
internal-pdf://0516496904/Riechel-2015-855.pdf
KWB-documents_20191205.enlEndNote8578575<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change</style>
internal-pdf://4142838706/Matzinger-2015-857.pdf
KWB-documents_20191205.enlEndNote53053027<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change (Deliverable 5.4.2)</style>internal-pdf://2160871137/Matzinger-2012-530.pdfKWB-documents_20191205.enlEndNote54054047<style face="normal" font="default" size="100%">PREPARED - enabling change: building a utility alliance on climate change adaptation.</style>KWB-documents_20191205.enlEndNote28328327<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel</style>internal-pdf://3482089923/Kranz-2004-283.pdfKWB-documents_20191205.enlEndNote2227<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel (Berlin-Brandenburg)</style>internal-pdf://2772938330/Kranz-2003-2.pdfKWB-documents_20191205.enlEndNote56856817<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Zukunftsvision oder doch schon Realität?</style>
internal-pdf://2477248182/Weigert-2013-568.pdf
KWB-documents_20191205.enlEndNote1092109227<style face="normal" font="default" size="100%">D 1.3: Compendium of best practices for advanced primary treatment</style>internal-pdf://4112669454/Schubert-2018-1092.pdfKWB-documents_20191205.enlEndNote1091109127<style face="normal" font="default" size="100%">D2.1 Advanced Control strategy for Nitrogen Removal</style>internal-pdf://3925564112/Schubert-2018-1091.pdfKWB-documents_20191205.enlEndNote1069106927<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.4: Technology dossiers to apply for ETV certification and guidelines</style>internal-pdf://2906356714/Remy-2018-1069.pdfKWB-documents_20191205.enlEndNote1039103927<style face="normal" font="default" size="100%">POWERSTEP WP3 Biogas Valorization and Efficient Energy Management: Deliverable D3.1: Best practices for improved sludge digestion</style>internal-pdf://0543991017/Remy-2016-1039.pdfKWB-documents_20191205.enlEndNote1068106827<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.5: Recommendations for ecoefficient new concepts of energy positive WWTP</style>internal-pdf://2718006125/Remy-2018-1068.pdfKWB-documents_20191205.enlEndNote1038103827<style face="normal" font="default" size="100%">Deliverable D5.1: Proposition of POWERSTEP process schemes and WWTP reference models</style>internal-pdf://0900768938/Remy-2016-1038.pdfKWB-documents_20191205.enlEndNote1093109327<style face="normal" font="default" size="100%">D 1.2: Design and performance of advanced primary treatment with microscreen</style>internal-pdf://0799365965/Olsson-2018-1093.pdfKWB-documents_20191205.enlEndNote1098109827<style face="normal" font="default" size="100%">D2.4 Feasibility of mainstream nitrogen removal and biomass production with duckweed bioreactor</style>internal-pdf://1203125622/Loderer-2018-1098.pdfKWB-documents_20191205.enlEndNote1095109532<style face="normal" font="default" size="100%">Application of Duckweed in Wastewater Treatment – an Alternative Method for Nitrogen Removal?</style>internal-pdf://1640061976/Kahlert-2017-1095.pdfKWB-documents_20191205.enlEndNote1070107027<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.2: Recommendations for WWTP operators, municipalities and WWTP technology providers willing to engage in renewable energy market</style>internal-pdf://0934116392/Helleskov Ravn-2018-1070.pdfKWB-documents_20191205.enlEndNote88088032<style face="normal" font="default" size="100%">Stickstoffentfernung durch Wasserlinsen – Umsetzung eines energieeffizienten Verfahrens zur Reinigung ammoniumreicher Abwässer</style>internal-pdf://3639685532/Heller-2016-880.pdfKWB-documents_20191205.enlEndNote1094109432<style face="normal" font="default" size="100%">Bewertung der Mikrosiebung im großtechnischen Maßstab als erweiterte Vorklärung unter biologischen und ökonomischen Aspekten</style>internal-pdf://2258852794/Dühmke-2018-1094.pdfKWB-documents_20191205.enlEndNote1090109027<style face="normal" font="default" size="100%">D 2.5: Options for nitrogen removal after advanced carbon extraction </style>internal-pdf://4095564387/Christensson-2018-1090.pdfKWB-documents_20191205.enlEndNote32832847<style face="normal" font="default" size="100%">UVA as control parameter for the effective ozonation of organic poolutants in secondary effluent</style>internal-pdf://2894623223/Bahr-2006-328.pdfKWB-documents_20191205.enlEndNote32732747<style face="normal" font="default" size="100%">Pilot scale ozonation of treated municipal effluent for removal of pharmaceutical compopunds and pathogens</style>internal-pdf://4009194053/Bahr-2005-327.pdfKWB-documents_20191205.enlEndNote434327<style face="normal" font="default" size="100%">Pilotuntersuchungen zur kombinierten oxidativ-biologischen Behandlung von Klärwerksabläufen für die Entfernung von organischen Spuren- und Wirkstoffen und zur Desinfektion</style>internal-pdf://3229062385/Bahr-2007-43.pdfKWB-documents_20191205.enlEndNote1053105327<style face="normal" font="default" size="100%">Phorwärts Abschlussbericht: Ökobilanzieller Vergleich der P-Rückgewinnung aus dem Abwasserstrom mit der Düngemittelproduktion aus Rohphosphaten unter Einbeziehung von Umweltfolgeschäden und deren Vermeidung</style>internal-pdf://2535167896/Kraus-2019-1053.pdfKWB-documents_20191205.enlEndNote105410545<style face="normal" font="default" size="100%">Ökobilanzieller Vergleich der konventionellen P-Düngemittelproduktion aus Rohphosphat mit der Phosphorrückgewinnung aus dem Abwasserpfad</style>KWB-documents_20191205.enlEndNote1226122647<style face="normal" font="default" size="100%">Die Vorgaben der Klärschlammverwertung zur Phosphorrückgewinnung – ein Interpretationsversuch</style>KWB-documents_20191205.enlEndNote1008100810<style face="normal" font="default" size="100%">Stand und Perspektiven beim Phosphorrecycling</style>KWB-documents_20191205.enlEndNote1009100910<style face="normal" font="default" size="100%">Circular Economy – Challenges and Opportunities for Phosphorus Recovery & Recycling from Wastes in Europe</style>KWB-documents_20191205.enlEndNote1057105717<style face="normal" font="default" size="100%">Phosphorus processing – potentials for higher efficiency</style>
internal-pdf://0910799548/Hermann-2018-1057.pdf
KWB-documents_20191205.enlEndNote1223122347<style face="normal" font="default" size="100%">Comparative cost estimations of full-scale phosphorus recovery processes in German wastewater treatment plants</style>KWB-documents_20191205.enlEndNote38838827<style face="normal" font="default" size="100%">Treatment of urine with zero-valent iron to minimize the aquatic pollution with compounds emitted by hospitals</style>internal-pdf://0800416677/Stieber-2010-388.pdfKWB-documents_20191205.enlEndNote1212121217<style face="normal" font="default" size="100%">Comparative environmental life cycle assessment of phosphorus recovery with different generations of the AirPrex® systems</style>
KWB-documents_20191205.enlEndNote1001100117<style face="normal" font="default" size="100%">Phosphorus recovery from municipal and fertilizer wastewater: China's potential and perspective</style>
KWB-documents_20191205.enlEndNote8308306<style face="normal" font="default" size="100%">Sewage sludge management in Germany</style>internal-pdf://1497578304/Wiechmann-2015-830.pdfKWB-documents_20191205.enlEndNote69369317<style face="normal" font="default" size="100%">Aus Wasser und Asche - Die Forschungsinitiative P-REX will die Entwicklung von effizienten technischen Lösungen des Phosphor-Recyclings aus Abwasser in Europa beschleunigen</style>
internal-pdf://0908998538/Stemann-2014-693.pdf
KWB-documents_20191205.enlEndNote67667647<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX</style>internal-pdf://4141346455/Stemann-2014-676.pdfKWB-documents_20191205.enlEndNote6756755<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX –</style>
internal-pdf://2094462718/Stemann-2014-675.pdf
KWB-documents_20191205.enlEndNote82982917<style face="normal" font="default" size="100%">Phosphorus management in Europe in a changing world</style>
internal-pdf://1272963796/Schoumans-2015-829.pdf
KWB-documents_20191205.enlEndNote100510055<style face="normal" font="default" size="100%">Life Cycle Assessment of processes for P recycling</style>KWB-documents_20191205.enlEndNote60060047<style face="normal" font="default" size="100%">Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1936233763/Remy-2013-600.pdfKWB-documents_20191205.enlEndNote59759747<style face="normal" font="default" size="100%">Übersicht der Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1243820368/Remy-2013-597.pdfKWB-documents_20191205.enlEndNote89389327<style face="normal" font="default" size="100%">Comparative Life Cycle Assessment of treatment-recovery paths (D9.2)</style>internal-pdf://0517881557/Remy-2015-893.pdfKWB-documents_20191205.enlEndNote82182127<style face="normal" font="default" size="100%">Life Cycle Assessment of selected processes for P recovery from sewage sludge, sludge liquor, or ash - D9.2</style>internal-pdf://1977294865/Remy-2015-821.pdfKWB-documents_20191205.enlEndNote93993947<style face="normal" font="default" size="100%">EU project P-REX (2012-2015) Phosphorus recovery from municipal wastewater: from prototype to market, Work area 4: Life Cycle Assessment</style>internal-pdf://0553223698/Mutz-2014-939.pdfinternal-pdf://3444541164/Mutz-2014-9391.pdfKWB-documents_20191205.enlEndNote66666632<style face="normal" font="default" size="100%">Optimisation of sewage sludge treatment to foster dewaterability and nutrient recovery</style>internal-pdf://0413288228/Michalski-2014-666.pdfKWB-documents_20191205.enlEndNote75875847<style face="normal" font="default" size="100%">Key Outcomes of FP7 Project P-REX</style>internal-pdf://0411719618/Lesjean-2015-758.pdfKWB-documents_20191205.enlEndNote75975947<style face="normal" font="default" size="100%">Green Jobs with Phosphorus Recycling</style>internal-pdf://1527082761/Lesjean-2015-759.pdfKWB-documents_20191205.enlEndNote81981927<style face="normal" font="default" size="100%">Quantitative risk assessment of potential hazards for humans and the environment: quantification of potential hazards resulting from agricultural use of the manufactured fertilizers (D9.1)</style>internal-pdf://2439847563/Kraus-2015-819.pdfKWB-documents_20191205.enlEndNote98598510<style face="normal" font="default" size="100%">34. Bochumer Workshop: Kläranlage der Zukunft - Phosphorrecycling: Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote83183117<style face="normal" font="default" size="100%">Klärschlammmanagement und Phosphorrecycling in Deutschland – Eine Abschätzung von Kosten, Umweltauswirkungen und Konsequenzen der geplanten Novelle der AbfKlärV. </style>
KWB-documents_20191205.enlEndNote1007100717<style face="normal" font="default" size="100%">Phosphorrückgewinnung in der Praxis – so funktioniert es in den Niederlanden</style>
internal-pdf://0231184458/Kraus-2017-1007.pdf
KWB-documents_20191205.enlEndNote98798710<style face="normal" font="default" size="100%">Anforderungen an das P-Recycling</style>KWB-documents_20191205.enlEndNote98698610<style face="normal" font="default" size="100%">Klärschlamm: Phosphorstrategie infolge neuer rechtlicher Regelungen</style>KWB-documents_20191205.enlEndNote98498410<style face="normal" font="default" size="100%">Phosphorrückgewinnung aus Klärschlamm (Praxisbeispiel)</style>KWB-documents_20191205.enlEndNote86986917<style face="normal" font="default" size="100%">Phosphorrecycling aus Klärschlamm</style>
internal-pdf://3825601838/Kraus-2016-869.pdf
KWB-documents_20191205.enlEndNote81781732<style face="normal" font="default" size="100%">Phosphorus recovery from wastewater – Risk assessment for recycling in agriculture</style>internal-pdf://3816365239/Kraus-2015-817.pdfKWB-documents_20191205.enlEndNote70570547<style face="normal" font="default" size="100%">Challenges and opportunities for P recovery and recycling from municipal wastewater in Europe</style>internal-pdf://0513505548/Kabbe-2014-705.pdfKWB-documents_20191205.enlEndNote81881810<style face="normal" font="default" size="100%">P-Rückgewinnung und Recycling in Europa - Schlussfolgerungen aus dem Projekt P-REX</style>internal-pdf://2559516112/Kabbe-2015-818.pdfKWB-documents_20191205.enlEndNote76676647<style face="normal" font="default" size="100%">Review of promising Methods for Phosphorus Recovery and Recycling from Wastewater</style>internal-pdf://2085259822/Kabbe-2015-766.pdfKWB-documents_20191205.enlEndNote83983927<style face="normal" font="default" size="100%">Integral guidance document for phosphorus recovery and recycling D12.1</style>internal-pdf://1591140686/Kabbe-2015-839.pdfKWB-documents_20191205.enlEndNote1012101217<style face="normal" font="default" size="100%">P recovery: from evolution to revolution</style>KWB-documents_20191205.enlEndNote1011101110<style face="normal" font="default" size="100%">Kreislaufwirtschaft? - Von der Phosphorrückgewinnung zum tatsächlichen Recycling</style>KWB-documents_20191205.enlEndNote101010105<style face="normal" font="default" size="100%">Phosphor – der Flaschenhals des Lebens</style>KWB-documents_20191205.enlEndNote98898810<style face="normal" font="default" size="100%">Phosphorrecycling – Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote90890810<style face="normal" font="default" size="100%">Phosphorrückgewinnung und -recycling aus Abwasser in Europa</style>internal-pdf://3927592995/Kabbe-2015-908.pdfKWB-documents_20191205.enlEndNote64064047<style face="normal" font="default" size="100%">Implementation of Phosphorus Recovery from the wastewater stream – The European FP7 project P-REX</style>internal-pdf://0975755479/Kabbe-2013-640.pdfKWB-documents_20191205.enlEndNote101310135<style face="normal" font="default" size="100%">Circular Economy – Bridging the gap between Phosphorus Recovery and Recycling</style>KWB-documents_20191205.enlEndNote75675617<style face="normal" font="default" size="100%">Closing the Nutrient Cycle - Circular Economy Thinking for Phosphorus Recovery</style>
internal-pdf://0178077443/Kabbe-2015-756.pdf
KWB-documents_20191205.enlEndNote69269217<style face="normal" font="default" size="100%">Chancen für Phosphorrückgewinnung und -recycling aus dem Abwasserpfad in Europa</style>
internal-pdf://3940109612/Kabbe-2014-692.pdf
KWB-documents_20191205.enlEndNote6436435<style face="normal" font="default" size="100%">The limited resources of phosphorus and how to close the phosphorus cycle</style>internal-pdf://0156580456/Kabbe-2013-643.pdfKWB-documents_20191205.enlEndNote64164117<style face="normal" font="default" size="100%">Nachhaltiges Phosphormanagement in Europa</style>
internal-pdf://0064217720/Kabbe-2013-641.pdfinternal-pdf://0224883288/Kabbe-2013-6411.pdf
KWB-documents_20191205.enlEndNote56256217<style face="normal" font="default" size="100%">Sustainable Sewage Sludge Management Fostering Phosphorus Recovery</style>
internal-pdf://2780970523/Kabbe-2013-562.pdf
KWB-documents_20191205.enlEndNote67167127<style face="normal" font="default" size="100%">Phosphorpotenziale im Land Berlin - Abschlussbericht Projekt P-Pot</style>internal-pdf://0533570931/Kabbe-2014-671.pdfKWB-documents_20191205.enlEndNote45145127<style face="normal" font="default" size="100%">Microorganisms in soils & sediments. Detection, quantification and activity. Deliverable 2.2</style>internal-pdf://1661229073/van der Velde-2011-4511.pdfKWB-documents_20191205.enlEndNote45645627<style face="normal" font="default" size="100%">Laboratory column experiments on options for redox control in infiltration ponds for artificial recharge</style>internal-pdf://3458748593/Scheytt-2011-456.pdfKWB-documents_20191205.enlEndNote55955917<style face="normal" font="default" size="100%">Transport of primidone, carbamazepine, and sulfamethoxazole in thermally treated sediments—laboratory column experiments</style>
internal-pdf://0345448979/Müller-2013-559.pdf
KWB-documents_20191205.enlEndNote45445427<style face="normal" font="default" size="100%">Synthesis Report on Practical Implications and Opportunities for Transfer to Field Scale</style>internal-pdf://0731011245/Miehe-2011-454.pdfKWB-documents_20191205.enlEndNote45245227<style face="normal" font="default" size="100%">Reactive transport modeling. Deliverable 3.4</style>internal-pdf://0071587248/Kalka-2011-452.pdfKWB-documents_20191205.enlEndNote43043027<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation. Final Report of OXIRED - Phase 2</style>internal-pdf://1848137401/Hübner-2011-430.pdfKWB-documents_20191205.enlEndNote41441447<style face="normal" font="default" size="100%">Behaviour of trace organics during drinking water production via subsurface passage</style>internal-pdf://4279787017/Grützmacher-2011-414.pdfKWB-documents_20191205.enlEndNote39039027<style face="normal" font="default" size="100%">Literature Study on Redox Control for Infiltration Ponds and other Subsurface Systems</style>internal-pdf://3122090832/Grützmacher-2011-390.pdfKWB-documents_20191205.enlEndNote42442417<style face="normal" font="default" size="100%">Optimierung des Abbaus organischer Belastungen durch die Kombination von Ozonung und Untergrundpassage</style>
internal-pdf://2029525917/Gnirß-2011-424.pdf
KWB-documents_20191205.enlEndNote1179117927<style face="normal" font="default" size="100%">Substances to be Targeted in Laboratory and Technical Scale Experiments Project OXIRED, Deliverable 1.1a - Interim Report Phase 1</style>internal-pdf://3512566455/Wiese-2009-1179.pdfKWB-documents_20191205.enlEndNote33333327<style face="normal" font="default" size="100%">DOC and Trace Organic removal via ozonation & underground passage - expected benefit and limitations</style>internal-pdf://3460722021/Miehe-2010-333.pdfKWB-documents_20191205.enlEndNote38938927<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation</style>internal-pdf://2008700679/Hübner-2010-389.pdfKWB-documents_20191205.enlEndNote59459427<style face="normal" font="default" size="100%">Hybrid Concepts for MAR with Reclaimed Water for for Nonpotable Reuse (D1.1)</style>internal-pdf://3221240232/Staub-2013-594.pdfKWB-documents_20191205.enlEndNote55855827<style face="normal" font="default" size="100%">Market potential of MAR solutions with reclaimed water for non-potable reuse</style>internal-pdf://0657534141/Staub-2013-558.pdfKWB-documents_20191205.enlEndNote52252247<style face="normal" font="default" size="100%">Membrane filtration combined with pre-ozonation and coagulation for water reuse: Case study with ceramic and polymeric membranes.</style><style face="normal" font="default" size="11"> </style>internal-pdf://3335320967/Stüber-2012-522.pdfKWB-documents_20191205.enlEndNote62362327<style face="normal" font="default" size="100%">Tertiary treatment combining ozonation and membrane filtration – Pilot scale investigations</style>internal-pdf://2766862141/Stüber-2013-623.pdfKWB-documents_20191205.enlEndNote52152147<style face="normal" font="default" size="100%">Fouling rate as the crucial design parameter for ultrafiltration of secondary effluents.</style>internal-pdf://2669823963/Stüber-2012-521.pdfKWB-documents_20191205.enlEndNote54554532<style face="normal" font="default" size="100%">Advanced wastewater treatment by the implementation of a ceramic membrane. Studienarbeit</style>internal-pdf://1426931851/Stein-2012-545.pdfKWB-documents_20191205.enlEndNote52552547<style face="normal" font="default" size="100%">On-line submicron particle analysis for the assessment of fouling potential in tertiary membrane filtration.</style>internal-pdf://1385776413/Schulz-2012-525.pdfinternal-pdf://4249896283/Schulz-2012-5251.pdfKWB-documents_20191205.enlEndNote52452447<style face="normal" font="default" size="100%">Kolloidales Fouling von Niederdruckmembranen in der weitergehenden Abwasserreinigung: Analyse und Maßnahmen zur Verringerung</style>internal-pdf://2818656297/Schulz-2012-524.pdfKWB-documents_20191205.enlEndNote44944947<style face="normal" font="default" size="100%">Analysis of nanoparticles in treated domestic wastewater for improved understanding and prevention of membrane fouling</style>internal-pdf://1708606874/Schulz-2011-449.pdfinternal-pdf://3809887704/Schulz-2011-4491.pdfKWB-documents_20191205.enlEndNote52652647<style face="normal" font="default" size="100%">Prediction of fouling potential of treated domestic wastewater by on-line submicron particle analysis. </style>KWB-documents_20191205.enlEndNote53653632<style face="normal" font="default" size="100%">Advanced Wastewater Treatment Through the Combination of Flocculation, Microsieve Filtration and UV-Disinfection.</style>internal-pdf://1321879078/Schermann-2012-536.pdfKWB-documents_20191205.enlEndNote60160147<style face="normal" font="default" size="100%">Comparison of environmental impacts of tertiary filtration technologies for advanced phosphorus removal via Life Cycle Assessment</style>internal-pdf://2999488642/Remy-2013-601.pdfinternal-pdf://2658926442/Remy-2013-6011.pdfKWB-documents_20191205.enlEndNote59959947<style face="normal" font="default" size="100%">Neue Verfahrenskombinationen der weitergehenden Abwasserbehandlung – Darstellung von Aufwand und Nutzen mit Methoden der Ökobilanzierung</style>internal-pdf://1830837210/Remy-2013-599.pdfKWB-documents_20191205.enlEndNote93493417<style face="normal" font="default" size="100%">Comparing environmental impacts of tertiary wastewater treatment technologies for advanced phosphorus removal and disinfection with life cycle assessment</style>
internal-pdf://1446805903/Remy-2014-934.pdf
KWB-documents_20191205.enlEndNote51651647<style face="normal" font="default" size="100%">Weitestgehende Phosphorelimination in Kläranlagen: Ökologischer Vergleich von Filtrationsverfahren mittels Life Cycle Assessment</style>internal-pdf://2857629282/Remy-2012-516.pdfKWB-documents_20191205.enlEndNote46246247<style face="normal" font="default" size="100%">Life cycle management for assessing systems of urban water management: Case studies and methodological gaps</style>internal-pdf://3088141530/Remy-2011-462.pdfinternal-pdf://3890760985/Remy-2011-4621.pdfKWB-documents_20191205.enlEndNote62762727<style face="normal" font="default" size="100%">Life Cycle Assessment and Life Cycle Costing of tertiary treatment schemes</style>internal-pdf://2260400962/Remy-2013-627.pdfKWB-documents_20191205.enlEndNote65465427<style face="normal" font="default" size="100%">Optimization of flocculation for tertiary filtration processes and evaluation of sustainability of tertiary wastewater treatment</style>internal-pdf://1936253374/Miehe-2014-654.pdfKWB-documents_20191205.enlEndNote62862827<style face="normal" font="default" size="100%">Abschlussbericht OXERAM 2</style>internal-pdf://3087355193/Miehe-2013-628.pdfKWB-documents_20191205.enlEndNote53753732<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration - Process optimization for dynamic operation and discussion of effects on operating cost.</style>internal-pdf://1824671535/Lardon-2012-537.pdfKWB-documents_20191205.enlEndNote62662627<style face="normal" font="default" size="100%">Feasibility of the microsieve technology for advanced phosphorus removal</style>internal-pdf://3507393793/Langer-2013-626.pdfKWB-documents_20191205.enlEndNote47047047<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0680874582/Langer-2011-470.pdfKWB-documents_20191205.enlEndNote46946947<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0922571428/Langer-2011-469.pdfKWB-documents_20191205.enlEndNote52352347<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration in tertiary treatment: Performance and operation</style>internal-pdf://0459208446/Langer-2012-523.pdfKWB-documents_20191205.enlEndNote46846832<style face="normal" font="default" size="11">Optimization of flocculation for advanced phosphorus removal via microsieve filtration </style>internal-pdf://0369644274/Langer-2011-468.pdfKWB-documents_20191205.enlEndNote54454432<style face="normal" font="default" size="100%">Evaluation of different cleaning methods on the fouling rate of organic membranes. </style>internal-pdf://3331081080/Hattke-2012-544.pdfKWB-documents_20191205.enlEndNote52952947<style face="normal" font="default" size="100%">Impacts of ozonation and coagulation on fouling during subsequent ultrafiltration in advanced wastewater treatment </style>KWB-documents_20191205.enlEndNote52852847<style face="normal" font="default" size="100%">Influence of ozonation and coagulation as pretreatment steps for ultrafiltration in advanced wastewater treatment</style><style face="normal" font="default" size="11">.</style>internal-pdf://0956254889/Godehardt-2012-528.pdfKWB-documents_20191205.enlEndNote52752747<style face="normal" font="default" size="100%">Fouling von Ultrafiltrationsmembranen - Relevanz von Proteinen und Analyse mit MALDI-TOF-MS</style>internal-pdf://4094183309/Godehardt-2012-527.pdfKWB-documents_20191205.enlEndNote62562527<style face="normal" font="default" size="100%">Role of organic substances in tertiary treatment via oxidation and membrane filtration</style>internal-pdf://1902160298/Godehardt-2013-625.pdfKWB-documents_20191205.enlEndNote34934947<style face="normal" font="default" size="11">Die Kombination von Ozon und Flockung als Behandlungsstufe vor einer Membranfiltration (Oxeram)</style>internal-pdf://3335416346/Genz-2010-349.pdfKWB-documents_20191205.enlEndNote34834847<style face="normal" font="default" size="11">The effect of pre-ozonation and subsequent coagulation on the filtration of WWTP effluent with low-pressure membranes </style>internal-pdf://3892538881/Genz-2010-348.pdfKWB-documents_20191205.enlEndNote62462427<style face="normal" font="default" size="100%">Guidelines for the use of online fouling monitoring in tertiary treatment</style>internal-pdf://2470877728/Boulestreau-2013-624.pdfKWB-documents_20191205.enlEndNote54654647<style face="normal" font="default" size="100%">Ozonation on ceramic membranes – possible flux enhancement in tertiary treatment processes (Poster).</style>internal-pdf://4001711030/Stüber-2012-546.pdfKWB-documents_20191205.enlEndNote54354347<style face="normal" font="default" size="100%">Combining ozonation and ceramic membrane filtration for tertiary treatment.</style>internal-pdf://1861895157/Stüber-2012-543.pdfKWB-documents_20191205.enlEndNote54754747<style face="normal" font="default" size="100%">Sweet spot search: Screening the operational window for secondary effluent filtration (Poster).</style>internal-pdf://1061700659/Stüber-2012-547.pdfKWB-documents_20191205.enlEndNote48448447<style face="normal" font="default" size="100%">Energetischer Vergleich der erweiterten Oxidationsverfahren</style>internal-pdf://0288048787/Remy-2011-484.pdfKWB-documents_20191205.enlEndNote35135127<style face="normal" font="default" size="100%">Investigation of pre-ozonation on the performance of membrane filtration (Oxeram 1 - D 4.2)</style>internal-pdf://0435312485/Genz-2010-351.pdfKWB-documents_20191205.enlEndNote59159132<style face="normal" font="default" size="100%">Energy optimisation of drinking water well field operation</style>internal-pdf://3919260440/Sáinz-García-2013-591.pdfKWB-documents_20191205.enlEndNote99499427<style face="normal" font="default" size="100%">Optiwells-2 Synthesis report</style>internal-pdf://3078848568/Rustler-2016-994.pdfKWB-documents_20191205.enlEndNote69869847<style face="normal" font="default" size="100%">A tool for minimizing the energy demand of drinking water well fields</style>internal-pdf://2679884733/Philippon-2014-698.pdfKWB-documents_20191205.enlEndNote59259232<style face="normal" font="default" size="100%">Developing an Advanced Pump Database For Drinking Water Well Fields</style>internal-pdf://3599515225/Eslami-2013-592.pdfKWB-documents_20191205.enlEndNote49749732<style face="normal" font="default" size="100%">Optimization of abstraction costs for a drinking water well field</style>internal-pdf://2139441911/Vautrin-2012-497.pdfKWB-documents_20191205.enlEndNote49849847<style face="normal" font="default" size="100%">Potentials for energy savings through drinking water well field optimisation</style>internal-pdf://2182232410/Staub-2012-498.pdfKWB-documents_20191205.enlEndNote1126112627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report - confidential</style>internal-pdf://1454680212/Staub-2012-1126.pdfKWB-documents_20191205.enlEndNote49649627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report </style>internal-pdf://1420911657/Staub-2012-496.pdfKWB-documents_20191205.enlEndNote46746727<style face="normal" font="default" size="100%">Literature review on theoretical pump and motor efficiency of submersible pump systems</style>internal-pdf://1189039010/Staub-2011-467.pdfKWB-documents_20191205.enlEndNote48748727<style face="normal" font="default" size="100%">International market review of pumps available for groundwater abstraction </style>internal-pdf://0919751259/Höchel-2012-487.pdfKWB-documents_20191205.enlEndNote2552556<style face="bold" font="default" size="10">Perspectives of Lake Modelling towards Predicting Reaction to Throphic Change</style>internal-pdf://3771237548/Schauser-2005-255.pdfKWB-documents_20191205.enlEndNote14914917<style face="normal" font="default" size="100%">Effects of nitrate on phosphorus release: comparison of two Berlin lakes</style>
KWB-documents_20191205.enlEndNote15015017<style face="normal" font="default" size="100%">Strategy and Current Status of Combating Eutrophication in 2 Berlin Lakes for Safeguarding Drinking Water Resources</style>
KWB-documents_20191205.enlEndNote18018017<style face="normal" font="default" size="11">Water and phosphorus mass balance of Lake Tegel and Schlachtensee - A modelling approach</style>
internal-pdf://2830546580/Schauser-2009-180.pdf
KWB-documents_20191205.enlEndNote14814817<style face="normal" font="default" size="100%">Assessment of the success of internal and external lake restoration measures in two Berlin lakes</style>KWB-documents_20191205.enlEndNote7727<style face="normal" font="default" size="100%">Threshold Values for Oligotrophication of Lake Tegel and Schlachtensee, Berlin - Analysis of System Components and Causalities</style>internal-pdf://3378620233/Chorus-2004-7.pdfKWB-documents_20191205.enlEndNote98998947<style face="normal" font="default" size="100%">Quantifying microbial contamination in urban stormwater runoff</style>internal-pdf://1065922641/Seis-2016-989.pdfKWB-documents_20191205.enlEndNote81181147<style face="normal" font="default" size="100%">Monitoring of catchment-specific micropollutant contamination in stormwater of Berlin</style>internal-pdf://1354080139/Wicke-2015-811.pdfKWB-documents_20191205.enlEndNote1043104347<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – citywide loads and comparison with sewage inputs.</style>internal-pdf://1489261766/Wicke-2017-1043.pdfKWB-documents_20191205.enlEndNote1044104447<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://2808576077/Wicke-2017-1044.pdfKWB-documents_20191205.enlEndNote1041104117<style face="normal" font="default" size="100%">Biozide im Regenwasserabfluss Berlins</style>
internal-pdf://1267174380/Wicke-2017-1041.pdf
KWB-documents_20191205.enlEndNote99799717<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>
internal-pdf://0113394616/Wicke-2017-997.pdf
KWB-documents_20191205.enlEndNote1129112947<style face="normal" font="default" size="100%">Mikroschadstoffe im Regenwasser – Konzentrationen, Frachten und Vergleich mit Emissionen im Schmutzwasser</style>internal-pdf://0640384910/Wicke-2019-1129.pdfKWB-documents_20191205.enlEndNote1128112847<style face="normal" font="default" size="100%">Organische Spurenstoffe im Regenwasserabfluss Berlins – Jahresfrachten und Vergleich mit Abwassereinträgen</style>internal-pdf://2521957492/Wicke-2019-1128.pdfKWB-documents_20191205.enlEndNote80180127<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Abschlussbericht</style>internal-pdf://0064736445/Wicke-2015-801.pdfKWB-documents_20191205.enlEndNote77077047<style face="normal" font="default" size="100%">Biocides in urban stormwater - catchment-specific differences and city-wide loads</style>internal-pdf://0216153664/Wicke-2015-770.pdfKWB-documents_20191205.enlEndNote77577527<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Zwischenbericht</style>internal-pdf://2628871933/Wicke-2014-775.pdfKWB-documents_20191205.enlEndNote99199147<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://1227208656/Wicke-2016-991.pdfKWB-documents_20191205.enlEndNote99099047<style face="normal" font="default" size="100%">Extent and dynamics of classic and emerging contaminants in stormwater of urban catchment types</style>internal-pdf://2731361818/Wicke-2016-990.pdfKWB-documents_20191205.enlEndNote81081047<style face="normal" font="default" size="100%">Towards assessing the relevance of micropollutants in stormwater discharged to Berlin surface waters</style>internal-pdf://3394129082/Wicke-2015-810.pdfKWB-documents_20191205.enlEndNote68568547<style face="normal" font="default" size="100%">Monitoring of micropollutant loads in urban stormwater on city scale - Strategy and realization</style>internal-pdf://2022940295/Wicke-2014-685.pdfKWB-documents_20191205.enlEndNote80980947<style face="normal" font="default" size="100%">Monitoring of trace organic contaminants in stormwater runoff from five catchments in Berlin</style>internal-pdf://3490228227/Schubert-2015-809.pdfKWB-documents_20191205.enlEndNote81381317<style face="normal" font="default" size="100%">Life Cycle Assessment modelling of stormwater treatment systems</style>
internal-pdf://3110451928/O'Sullivan-2015-813.pdf
KWB-documents_20191205.enlEndNote80880847<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – Load estimation at city scale</style>internal-pdf://3429111453/Matzinger-2015-808.pdfKWB-documents_20191205.enlEndNote81281247<style face="normal" font="default" size="100%">Stormwater runoff leads to pollution peaks in small urban stream</style>internal-pdf://0341552465/Matzinger-2015-812.pdfKWB-documents_20191205.enlEndNote81481432<style face="normal" font="default" size="100%">Identification of individual rain events and evaluation of their specific characteristics from pluviograph records: A review with analysis of data from a project investigating micro pollutant loads in Berlin rainwater runoff</style>internal-pdf://3852596911/Masch-2015-814.pdfKWB-documents_20191205.enlEndNote68768732<style face="normal" font="default" size="100%">Micropollutants in Berlin’s urban rainwater runoff</style>internal-pdf://2853810648/Holsteijn-2014-687.pdfKWB-documents_20191205.enlEndNote1078107832<style face="normal" font="default" size="100%">Multivariate Datenanalyse zur Erfassung und Typisierung von Quellen umweltchemischer Frachten im Berliner Regenwasser</style>KWB-documents_20191205.enlEndNote81581532<style face="normal" font="default" size="100%">The influence of rainfall characteristics and further climate properties on trace pollutants in urban stormwater runoff</style>internal-pdf://2557113571/Eichler-2015-815.pdfKWB-documents_20191205.enlEndNote1071107147<style face="normal" font="default" size="100%">Optimized materials and processes for the separation of microplastic from the water cycle - OEMP</style>internal-pdf://1967949777/Venghaus-2018-1071.pdfKWB-documents_20191205.enlEndNote1108110827<style face="normal" font="default" size="100%">Optimierte Materialien und Verfahren zur Entfernung von Mikroplastik aus dem Wasserkreislauf - Schlussbericht Verbundprojekt OEMP (Teilprojekt Kompetenzzentrum Wasser Berlin gGmbH)</style>internal-pdf://0572321530/Matzinger-2019-1108.pdfKWB-documents_20191205.enlEndNote35435447<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>internal-pdf://3159059501/Schwarzböck-2010-354.pdfinternal-pdf://3811601515/Schwarzböck-2010-3541.pdfKWB-documents_20191205.enlEndNote35335317<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>
internal-pdf://0371876944/Schwarzböck-2010-353.pdfinternal-pdf://1622172815/Schwarzböck-2010-3531.pdf
KWB-documents_20191205.enlEndNote44744710<style face="normal" font="default" size="100%">Elektronische Nasen als Tool für Geruchsmanagement in Abwasserkanalisationen – Test und Bewertung von vier Multigas-Sensorsystemen</style>internal-pdf://3961345004/Schwarzböck-2011-447.pdfKWB-documents_20191205.enlEndNote49249227<style face="normal" font="default" size="100%">Market Review on Available Instruments for Odour Measurement</style>internal-pdf://2779597886/Schwarzböck-2012-492.pdfKWB-documents_20191205.enlEndNote65665647<style face="normal" font="default" size="100%">Multigas-sensor systems for sewer odour measurement - Evaluation of four different E-noses based on tests under realistic conditions</style>internal-pdf://0831797502/Rouault-2013-656.pdfKWB-documents_20191205.enlEndNote16916927<style face="normal" font="default" size="11">An Online-Monitoring and Operating System to Prevent Odour and Corrosion in Sewer Networks - Feasibility Study</style>internal-pdf://1216942791/Barjenbruch-2008-169.pdfKWB-documents_20191205.enlEndNote1201120127<style face="normal" font="default" size="100%">Info-Broschüre: Einsatzmöglichkeiten für Nährstoffrezyklate im Ökolandbau (Projekt nurec4org)</style>internal-pdf://0753452067/nurec4org-2018-1201.pdfKWB-documents_20191205.enlEndNote1109110927<style face="normal" font="default" size="100%">Einsatzmöglichkeiten für Nährstoffrezyklate im Ökolandbau - Abschlussbericht des Projektes nurec4org</style>internal-pdf://1700780674/Kraus-2019-1109.pdfKWB-documents_20191205.enlEndNote45545527<style face="normal" font="default" size="100%">Development of Toxic Nostocales (Cyanobacteria) in the Course of Declining Trophic State and Global Warming - NOSTOTOX Final Report</style>internal-pdf://0344078589/Wiedner-2011-455.pdfKWB-documents_20191205.enlEndNote35035047<style face="normal" font="default" size="100%">The Development of an International Guidance Manual for the Management of Toxic Cyanobacteria</style><style face="bold" font="Times New Roman" size="14"> </style>internal-pdf://3567188536/Newcombe-2010-350.pdfKWB-documents_20191205.enlEndNote42642617<style face="normal" font="default" size="100%">Competitiveness of invasive and native cyanobacteria from temperate freshwaters under various light and temperature conditions</style>
internal-pdf://3552976117/Mehnert-2010-426.pdf
KWB-documents_20191205.enlEndNote37937917<style face="normal" font="default" size="100%">Sorption of the cyanobacterial toxins cylindrospermopsin and anatoxin-a to sediments</style>
internal-pdf://3552864560/Klitzke-2011-379.pdfinternal-pdf://Klitzke et al Supplement-0857521921/Klitzke et al Supplement.doc
KWB-documents_20191205.enlEndNote33633617<style face="normal" font="default" size="100%">Retention and Degradation of the cyanobacterial Toxin Cylindrospermopsin in Sediments - The Role of Sediment preconditioning and DOM composition</style>
internal-pdf://2726850704/Klitzke-2010-336.pdf
KWB-documents_20191205.enlEndNote30030047<style face="normal" font="default" size="11">Occurrence of cylindrospermopsin, anatoxin-a and saxitoxins in France and implications for drinking water prodution</style>internal-pdf://0991654188/Grützmacher-2009-300.pdfKWB-documents_20191205.enlEndNote38238217<style face="normal" font="default" size="100%">Paralytic Shellfish Poisoning Toxin-Producing Cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon gracile </style><style face="normal" font="default" size="100%">in Northeast Germany</style>
internal-pdf://0376531716/Ballot-2010-382.pdf
KWB-documents_20191205.enlEndNote38138117<style face="normal" font="default" size="100%">First report of anatoxin-a-producing cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon issatschenkoi</style><style face="normal" font="default" size="100%"> in northeastern Germany</style>
internal-pdf://2582211254/Ballot-2010-381.pdf
KWB-documents_20191205.enlEndNote1047104727<style face="normal" font="default" size="100%">Untersuchung des Stickstoffumsatzes im Flusssediment mit vereinfachten Modellansätzen. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kapitel 2.3.2</style>internal-pdf://0392880848/Tatis-Muvdi-2016-1047.pdfKWB-documents_20191205.enlEndNote67267227<style face="normal" font="default" size="100%">Stickstofflimitation in Binnengewässern - Teilprojekt: Sensitivitätsanalyse zur Modellierung des Stickstoffumsatzes in Fließgewässern und Life Cycle Assessment von Reinigungsverfahren</style>internal-pdf://0355183787/Rouault-2014-672.pdfKWB-documents_20191205.enlEndNote1048104827<style face="normal" font="default" size="100%">Bewertung umgesetzter urbaner Maßnahmen zur Nährstoffreduktion. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kap. 3.1.2</style>internal-pdf://2653823832/Riechel-2016-1048.pdfKWB-documents_20191205.enlEndNote60860847<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung in Großklärwerken – eine Ökobilanz</style>internal-pdf://1243087713/Remy-2013-608.pdfKWB-documents_20191205.enlEndNote67367327<style face="normal" font="default" size="100%">Abschlussbericht NITROLIMIT I: Stickstofflimitation in Binnengewässern – Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar?</style>internal-pdf://0308015807/Nixdorf-2014-673.pdfKWB-documents_20191205.enlEndNote64464447<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung auf Großklärwerken – eine Ökobilanz</style>internal-pdf://0123678389/Mutz-2013-644.pdfinternal-pdf://1253860468/Mutz-2013-6441.pdfKWB-documents_20191205.enlEndNote1049104927<style face="normal" font="default" size="100%">Ökobilanz von ausgesuchten Maßnahmen im urbanen Bereich. NITROLIMIT2, Gemeinsamer Ergebnisbericht, Kap. 3.6</style>internal-pdf://3656646906/Mutz-2016-1049.pdfKWB-documents_20191205.enlEndNote63863827<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Bereiche, NITROLIMIT Diskussionspapier Band 2</style>internal-pdf://2131204062/Mutz-2013-638.pdfKWB-documents_20191205.enlEndNote78978947<style face="normal" font="default" size="100%">Is Further Nitrogen Reduction in Surface Waters Economically Feasible?</style>internal-pdf://2858265545/Mutz-2015-789.pdfinternal-pdf://4240354405/Mutz-2015-7891.pdfKWB-documents_20191205.enlEndNote56156132<style face="normal" font="default" size="100%">Vergleichende Ökobilanz von weitergehenden Stickstoffeliminierungsverfahren in Großkläranlagen</style>internal-pdf://0003026655/Mutz-2013-561.pdfKWB-documents_20191205.enlEndNote66066047<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Standorte</style>internal-pdf://2013642015/Matzinger-2013-660.pdfKWB-documents_20191205.enlEndNote79679632<style face="normal" font="default" size="100%">Ökobilanz zu Maßnahmen der Nährstoffreduktion im Kanalnetz</style>internal-pdf://1882960229/Ehrenreich-2015-796.pdfKWB-documents_20191205.enlEndNote1046104627<style face="normal" font="default" size="100%">NITROLIMIT - Stickstofflimitation in Binnengewässern: Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar? Abschlussbericht des BMBF‐Verbundprojekts NITROLIMIT II</style>internal-pdf://3618911338/2016-1046.pdfKWB-documents_20191205.enlEndNote1133113327<style face="normal" font="default" size="100%">Assessment of baseline conditions for all case studies. Deliverable D.1.1.</style>internal-pdf://4179994627/Kleyböcker-2019-1133.pdfKWB-documents_20191205.enlEndNote1055105527<style face="normal" font="default" size="100%">Newfert D6.1: Methodology for LCA and LCC</style>KWB-documents_20191205.enlEndNote1056105627<style face="normal" font="default" size="100%">Newfert D6.2: Environmental Impact for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote1058105827<style face="normal" font="default" size="100%">Newfert D6.3: Cost for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote1116111617<style face="normal" font="default" size="100%">Abschwächung von Klimafolgen bei erhöhter Lebensqualität in der Stadt – das Potenzial von gekoppelten blau-grün-grauen Infrastrukturen</style>internal-pdf://3713978269/Winker-2019-1116.pdfKWB-documents_20191205.enlEndNote1118111817<style face="normal" font="default" size="100%">Planungsprozesse in der wassersensiblen und klimagerechten Stadt – blau-grün-grau gekoppelte Infrastrukturen in der Planungspraxis am Beispiel Berlin</style>internal-pdf://1703333929/Trapp-2019-1118.pdfKWB-documents_20191205.enlEndNote1242124227<style face="normal" font="default" size="100%">Fokusgebiet Sanierung und Erweiterung einer Kindertagesstätte. Arbeitshilfe für die Planung blau-grün-grau gekoppelter Infrastrukturen in der wassersensiblen Stadt</style>internal-pdf://3529221289/Reichmann-2020-1242.pdfKWB-documents_20191205.enlEndNote1077107732<style face="normal" font="default" size="100%">Überflutungskarten anhand von Social Media Daten - Erhebung, Auswertung und Validierung am Beispiel von zwei Starkregenereignissen in Berlin</style>internal-pdf://0512721717/Pilger-2018-1077.pdfKWB-documents_20191205.enlEndNote1106110647<style face="normal" font="default" size="100%">Integration eines partizipativen Ansatzes in den Planungsprozess</style>internal-pdf://2739131427/Nenz-2019-1106.pdfKWB-documents_20191205.enlEndNote1102110247<style face="normal" font="default" size="100%">Potenziale grau-grün-blau gekoppelter Wasserinfrastrukturen für die Gestaltung zukunftsfähiger und klimagerechter Städte - Ergebnisse eines strategischen Planungsprozesses in einem Pilotquartier</style>internal-pdf://2382771495/Nenz-2019-1102.PDFinternal-pdf://0123968011/Nenz-2019-11021.pdfKWB-documents_20191205.enlEndNote1119111917<style face="normal" font="default" size="100%">Wasser in der Stadt gemeinsam anders denken und planen</style>KWB-documents_20191205.enlEndNote1101110147<style face="normal" font="default" size="100%">Resilience of urban drainage systems - Proposition of a quantitative approach</style>internal-pdf://2298431128/Matzinger-2019-1101.pdfKWB-documents_20191205.enlEndNote1050105047<style face="normal" font="default" size="100%">Quantitative Beschreibung der Resilienz urbaner Wassersysteme</style>internal-pdf://1944797400/Matzinger-2018-1050.pdfKWB-documents_20191205.enlEndNote1103110347<style face="normal" font="default" size="100%">Potenzial von Bilddaten aus sozialen Medien für die urbane Überflutungsvorsorge - Versuch einer Anwendung für zwei extreme Starkregenereignisse in Berlin. </style>internal-pdf://2384799813/Matzinger-2019-1103.pdfKWB-documents_20191205.enlEndNote1104110447<style face="normal" font="default" size="100%">Berücksichtigung vielfältiger Ziele der Regenwasserbewirtschaftung in der Planung - Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://0702068422/Matzinger-2019-1104.pdfKWB-documents_20191205.enlEndNote1105110547<style face="normal" font="default" size="100%">Maßnahmenplanung für die Regenwasserbewirtschaftung in Berlin Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://2452402236/Matzinger-2019-1105.pdfKWB-documents_20191205.enlEndNote1107110747<style face="normal" font="default" size="100%">Neues zur Auswahl geeigneter blau-grau-grüner Infrastrukturen für das Quartier</style>internal-pdf://3358193801/Matzinger-2019-1107.pdfKWB-documents_20191205.enlEndNote1121112117<style face="normal" font="default" size="100%">Partizipative Regenwasserkonzepte als wirksames Element zur Gestaltung klimaresilienter Städte</style>internal-pdf://0703516760/Funke-2019-1121.pdfKWB-documents_20191205.enlEndNote1122112232<style face="normal" font="default" size="100%">Modellierung und Bewertung von Maßnahmen der dezentralen Regenwasserbewirtschaftung anhand aktueller Planungsvarianten in Berlin-Pankow</style>internal-pdf://3401371783/Funke-2019-1122.pdfKWB-documents_20191205.enlEndNote1241124127<style face="normal" font="default" size="100%">Blau-grün-graue Infrastrukturen vernetzt planen und umsetzen. Ein Beitrag zur Klimaanpassung in Kommunen</style>internal-pdf://3494418066/Anterola-2020-1241.pdfKWB-documents_20191205.enlEndNote14714717<style face="normal" font="default" size="100%">Analysis of endocrine disrupting steroids: Investigation of their release into the environment and their behavior during bank filtration</style>
internal-pdf://0905879872/Zühlke-2004-147.pdf
KWB-documents_20191205.enlEndNote14514547<style face="normal" font="default" size="100%">Inverse Modelling of Aquitard Structures using Pilot Points and Regularisation</style>internal-pdf://2145882628/Wiese-2007-145.pdfKWB-documents_20191205.enlEndNote14414417<style face="normal" font="default" size="100%">Infiltration of surface water into groundwater under transient pressure gradients</style>
internal-pdf://3101069906/Wiese-2007-144.pdf
KWB-documents_20191205.enlEndNote14614647<style face="normal" font="default" size="100%">Hydraulic and transport modelling of bank filtration at Lake Tegel (Berlin)</style>internal-pdf://4006581567/Wiese-2006-146.pdfKWB-documents_20191205.enlEndNote14214247<style face="normal" font="default" size="100%">Assessment of bank filtration pumping regimes on flow length and travel times: a case study</style>internal-pdf://0466657663/Wiese-2004-142.pdfKWB-documents_20191205.enlEndNote14314317<style face="normal" font="default" size="100%">Assessing the Effect of Pumping Regimes on Bank Filtration</style>
internal-pdf://1508090847/Wiese-2004-143.pdf
KWB-documents_20191205.enlEndNote29329332<style face="normal" font="default" size="11">Spatially and temporally scaled inverse hydraulic modelling, multi tracer transport modelling and interaction with geochemical processes at a highly transient bank filtration site</style>internal-pdf://1654028225/Wiese-2006-293.pdfKWB-documents_20191205.enlEndNote363627<style face="normal" font="default" size="100%">FINAL REPORT DRAFT v0.1 NASRI Natural and Artificial Systems for Recharge and Infiltration Project acronym: NASRI </style>internal-pdf://3389323520/Pekdeger-2006-36.pdfKWB-documents_20191205.enlEndNote44044027<style face="normal" font="default" size="100%">Investigating hydrogeological-hydrogeochemical processes during bank filtration and artificial ground water recharge using a multi trace approach</style>internal-pdf://0652229141/Pekdeger-2006-440.pdfKWB-documents_20191205.enlEndNote14114147<style face="normal" font="default" size="100%">Visual CXTFIT - a user-friendly simulation tool for modelling one-dimensional transport, sorption and degradation processes during bank filtration</style>internal-pdf://2409928483/Nützmann-2006-141.pdfKWB-documents_20191205.enlEndNote44144127<style face="normal" font="default" size="100%">Integrated modelling concepts for bank filtration processes: coupled ground water transport and biogeochemical reactions.</style>internal-pdf://0982203011/Nützmann-2006-441.pdfKWB-documents_20191205.enlEndNote14014047<style face="normal" font="default" size="100%">Fate and transport of pharmaceutical residues during bank filtration</style>internal-pdf://3146815423/Mechlinski-2006-140.pdfKWB-documents_20191205.enlEndNote43343317<style face="normal" font="default" size="100%">Analysis of long-term dispersion in a river-recharged aquifer using tritium/helium data</style>
internal-pdf://2997902670/Massmann-2009-433.pdf
KWB-documents_20191205.enlEndNote888847<style face="normal" font="default" size="100%">Using the Tritium/Helium Age Dating Method to characterise two river recharged aquifer systems in Germany</style>internal-pdf://0607104384/Massmann-2003-88.pdfKWB-documents_20191205.enlEndNote13413417<style face="normal" font="default" size="100%">Investigation of groundwater residence times during bank filtration in Berlin - a multi-tracer approach</style>
internal-pdf://0881678587/Massmann-2007-134.pdf
KWB-documents_20191205.enlEndNote13913917<style face="normal" font="default" size="100%">Identification of processes affecting excess airformation during natural bank filtration and managed aquifer recharge</style>
internal-pdf://0856455541/Massmann-2008-139.pdf
KWB-documents_20191205.enlEndNote43243217<style face="normal" font="default" size="100%">Seasonal and spatial distribution of redox zones during lake bank filtration in Berlin, Germany</style>
internal-pdf://0549199280/Massmann-2007-432.pdf
KWB-documents_20191205.enlEndNote13813847<style face="normal" font="default" size="100%">Application of Different Tracers to Evaluate the Flow Regime at Riverbank Filtration Sites in Berlin, Germany</style>internal-pdf://2875043262/Massmann-2003-138.pdfKWB-documents_20191205.enlEndNote898917<style face="normal" font="default" size="100%">Investigating the influence of treated sewage in ground- and surface water using wastewater indicators in Berlin, Germany</style>
internal-pdf://2872157635/Massmann-2004-89.pdf
KWB-documents_20191205.enlEndNote13313317<style face="normal" font="default" size="100%">Trinkwassergewinnung in urbanen Räumen - Erkenntnisse zur Uferlfiltration in Berlin</style>
internal-pdf://1076124055/Massmann-2007-133.pdf
KWB-documents_20191205.enlEndNote13113117<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration – Investigation of residues of phenazone-type analgesics</style>
internal-pdf://1310415333/Massmann-2008-131.pdf
KWB-documents_20191205.enlEndNote13513547<style face="normal" font="default" size="100%">Evaluation of the hydrochemical conditions during bank filtration and artificial recharge in Berlin</style>internal-pdf://3960772605/Massmann-2006-135.pdfKWB-documents_20191205.enlEndNote13613647<style face="normal" font="default" size="100%">The impact of alternating redox conditions on groundwater chemistry during artificial recharge in Berlin</style>internal-pdf://3333396555/Massmann-2006-136.pdfKWB-documents_20191205.enlEndNote13713717<style face="normal" font="default" size="100%">The impact of variable temperatures on the redox conditions and the behaviour of pharmaceutical residues during artificial recharge</style>
internal-pdf://4286772912/Massmann-2006-137.pdf
KWB-documents_20191205.enlEndNote12912917<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration - Investigation of residues of phenazone-type analgesics </style>
internal-pdf://2768525875/Massmann-2007-129.pdf
KWB-documents_20191205.enlEndNote13213247<style face="normal" font="default" size="100%">Investigating surface water - groundwater interactions with the help of sewage indicators in Berlin, Germany</style>internal-pdf://1135191569/Massmann-2004-132.PDFKWB-documents_20191205.enlEndNote45345327<style face="normal" font="default" size="100%">Using bacteriophages, indicator bacteria, and viral pathogens for assessing the health risk of drinking water obtained by bank filtration</style>internal-pdf://3842767541/López-Pila-2006-453.pdfKWB-documents_20191205.enlEndNote12712747<style face="normal" font="default" size="100%">Estimating of the solute transport parameters retardation factor and decay coefficient of pharmaceutical residues using the program visual CXTFIT</style>internal-pdf://2778503321/Licht-2006-127.pdfKWB-documents_20191205.enlEndNote12612647<style face="normal" font="default" size="100%">Statistical description and analysis of a bank filtration system</style>internal-pdf://2940901233/Leipnitz-2006-126.pdfKWB-documents_20191205.enlEndNote28928917<style face="normal" font="default" size="11">Sources of oxygen flux in groundwater during induced bank filtration at a site in Berlin, Germany</style>
internal-pdf://2116377217/Kohfahl-2009-289.pdf
KWB-documents_20191205.enlEndNote12512547<style face="normal" font="default" size="100%">Exploring surface- and groundwater interactions with the help of environmental tracers and wastewater indicators in Berlin/Germany</style>internal-pdf://0340433580/Knappe-2006-125.pdfKWB-documents_20191205.enlEndNote43843827<style face="normal" font="default" size="100%">Occurrence and fate of drug residues and related polar contaminants during bank filtration and artificial recharge</style>internal-pdf://3351329504/Jekel-2006-438.pdfKWB-documents_20191205.enlEndNote12412447<style face="normal" font="default" size="100%">Ist die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>internal-pdf://1746836218/Jekel-2006-124.pdfKWB-documents_20191205.enlEndNote12212217<style face="normal" font="default" size="100%">lst die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>
internal-pdf://3258473167/Jekel-2007-122.PDF
KWB-documents_20191205.enlEndNote12312347<style face="normal" font="default" size="100%">Bank filtration and groundwater recharge for treatment of polluted surface waters</style>internal-pdf://1529651895/Jekel-2005-123.pdfKWB-documents_20191205.enlEndNote43943927<style face="normal" font="default" size="100%">Organic substances in bank filtration and groundwater recharge - Process studies</style>internal-pdf://0789789502/Jekel-2006-439.pdfKWB-documents_20191205.enlEndNote12112147<style face="normal" font="default" size="100%">A coupled transport and reaction model for long column experiments simulating bank filtration</style>internal-pdf://3982859080/Horner-2006-121.pdfKWB-documents_20191205.enlEndNote12012047<style face="normal" font="default" size="100%">Simulation of bacteriophage populations during sub-surface passage</style>internal-pdf://1743100806/Holzbecher-2006-120.pdfKWB-documents_20191205.enlEndNote11911947<style face="normal" font="default" size="100%">On the construction of flowpath vector fields</style>internal-pdf://0911579601/Holzbecher-2006-119.pdfKWB-documents_20191205.enlEndNote50150117<style face="normal" font="default" size="100%">The Influence of Redox Conditions on Phage Transport - Enclosure Experiments and Modeling</style>
internal-pdf://4000850529/Holzbecher-2006-501.pdf
KWB-documents_20191205.enlEndNote11611617<style face="normal" font="default" size="100%">Calculating the effect of natural attenuation during bank filtration</style>
internal-pdf://3455752735/Holzbecher-2006-116.pdf
KWB-documents_20191205.enlEndNote11511547<style face="normal" font="default" size="100%">Physicochemical changes in pore water in the sandy littoral zone of Lake Tegel during bank filtration</style>internal-pdf://2427492958/Hoffmann-2006-115.pdfKWB-documents_20191205.enlEndNote11111117<style face="normal" font="default" size="100%">Field Studies on the Fate and Transport of Pharmaceutical Residues in Bank Filtration</style>
internal-pdf://3922176066/Heberer-2004-111.pdf
KWB-documents_20191205.enlEndNote11411447<style face="normal" font="default" size="100%">Occurrence and Fate of Pharmaceuticals During Bank Filtration</style>internal-pdf://3392450310/Heberer-2003-114.PDFKWB-documents_20191205.enlEndNote43443417<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of antimicrobial residues during bank filtration</style>
internal-pdf://0975838796/Heberer-2008-434.pdf
KWB-documents_20191205.enlEndNote11211247<style face="normal" font="default" size="100%">Occurrence, transport, attenuation and removal of pharmaceutical residues in the aquatic environment and their relevance for drinking water supply in urban areas</style>internal-pdf://1439538132/Heberer-2005-112.pdfKWB-documents_20191205.enlEndNote11311317<style face="normal" font="default" size="100%">Occurrence, fate, and removal of pharmaceutical residues in the aquatic environment: a review of recent research data</style>
internal-pdf://1915531076/Heberer-2002-113.PDF
KWB-documents_20191205.enlEndNote11011047<style face="normal" font="default" size="100%">Clogging processes in a bank filtration system in the littoral zone of Lake Tegel (Germany)</style>internal-pdf://2128649234/Gunkel-2006-110.pdfKWB-documents_20191205.enlEndNote10310347<style face="normal" font="default" size="100%">Are there limits to cyanobacterial toxin (microcystin) elimination by sand passage?</style>internal-pdf://3453328480/Grützmacher-2006-103.pdfKWB-documents_20191205.enlEndNote10410447<style face="normal" font="default" size="100%">On the behaviour of microcystins in saturated porous medium</style>internal-pdf://1593744558/Grützmacher-2006-104.pdfKWB-documents_20191205.enlEndNote10610647<style face="normal" font="default" size="100%">Prozesse der Elimination von Cyanobakterientoxinen bei der Infiltration</style>internal-pdf://0656512085/Grützmacher-2007-106.pdfKWB-documents_20191205.enlEndNote10510547<style face="normal" font="default" size="100%">Simulating bank filtration and artificial recharge on a technical scale</style>internal-pdf://3159881532/Grützmacher-2006-105.pdfKWB-documents_20191205.enlEndNote10210217<style face="normal" font="default" size="100%">Cyanobakterientoxine bei der Uferfiltration. Unter welchen Umständen ist ihre Elimination sicher?</style>
internal-pdf://2804555418/Grützmacher-2007-102.pdf
KWB-documents_20191205.enlEndNote999947<style face="normal" font="default" size="100%">Behavior of bulk organics and trace pollutants during bank filtration and groundwater recharge of wastewater-impacted surface waters</style>internal-pdf://2800461968/Grünheid-2004-99.PDFKWB-documents_20191205.enlEndNote10910947<style face="normal" font="default" size="100%">Fate of trace organic pollutants during bank filtration and groundwater recharge</style>internal-pdf://3637009181/Grünheid-2006-109.pdfKWB-documents_20191205.enlEndNote10710747<style face="normal" font="default" size="100%">Fate of bulk organics during bank filtration of wastewater-impacted surface waters</style>internal-pdf://3643383036/Grünheid-2006-107.pdfKWB-documents_20191205.enlEndNote10010047<style face="normal" font="default" size="100%">Behavior of Trace Pollutants During Bank Filtration and Ground Water Recharge of Wastewater-impacted Surface Waters</style>internal-pdf://2937104591/Grünheid-2004-100.pdfKWB-documents_20191205.enlEndNote10110147<style face="normal" font="default" size="100%">Impact of temperature on biodegradation of bulk and trace organics during soil passage in an indirect reuse system</style>internal-pdf://3986448131/Grünheid-2007-101.pdfKWB-documents_20191205.enlEndNote11811817<style face="normal" font="default" size="100%">Removal of bulk dissolved organic carbon (DOC) and trace organic compounds by bank filtration and artificial recharge</style>
internal-pdf://2430295889/Grünheid-2005-118.pdf
KWB-documents_20191205.enlEndNote979717<style face="normal" font="default" size="100%">Modeling of carbon cycling and biogeochemical changes during injection and recovery of reclaimed water at Bolivar, South Australia</style>
internal-pdf://1766826835/Greskowiak-2005-97.pdf
KWB-documents_20191205.enlEndNote919147<style face="normal" font="default" size="100%">Quantifying biogeochemical changes during ASR of reclaimed water at Bolivar, South Australia</style>internal-pdf://4291075387/Greskowiak-2005-91.pdfKWB-documents_20191205.enlEndNote969617<style face="normal" font="default" size="100%">Modeling Seasonal Redox Dynamics and the Corresponding Fate for the Pharmaceutical Residue Phenazone During Artificial Recharge of Groundwater</style>
internal-pdf://1601904375/Greskowiak-2006-96.pdf
KWB-documents_20191205.enlEndNote11711717<style face="normal" font="default" size="100%">The impact of variably saturated conditions on hydrogeochemical changes during artificial recharge of groundwater</style>
internal-pdf://3990594449/Greskowiak-2005-117.pdf
KWB-documents_20191205.enlEndNote989847<style face="normal" font="default" size="100%">Hydrogeochemical changes of seepage water during artificial recharge of groundwater in Berlin, Germany</style>internal-pdf://2185534857/Greskowiak-2006-98.pdfKWB-documents_20191205.enlEndNote28828827<style face="normal" font="default" size="11">NASRI - Natural Systems for Recharge and Infiltration - Final Report</style>internal-pdf://0767916717/Fritz-2006-288.pdfKWB-documents_20191205.enlEndNote28628627<style face="normal" font="default" size="11">NASRI Natural and Artificial Systems for Recharge and Infiltration Period 2001-2002</style>internal-pdf://1756172843/Fritz-2002-286.pdfKWB-documents_20191205.enlEndNote949417<style face="normal" font="default" size="100%">Process studies in a bank filtration system in Berlin using environmental tracers</style>internal-pdf://2915281259/Fritz-2003-94.pdfKWB-documents_20191205.enlEndNote939347<style face="normal" font="default" size="100%">Cleaning capacity of bank filtration and artificial recharge with influence of treated waste water</style>internal-pdf://3757222313/Fritz-2004-93.pdfKWB-documents_20191205.enlEndNote959517<style face="normal" font="default" size="100%">Naturnahe Grundwassergewinnung - Ergebnisse eines umfangreichen, interdisziplinären Forschungsvorhabens zur künstlichen Grundwasseranreicherung und Uferfiltration</style>
internal-pdf://2718497586/Fritz-2007-95.pdf
KWB-documents_20191205.enlEndNote929247<style face="normal" font="default" size="100%">Transport and attenuation of antibiotic residues during river bank filtration in Berlin, Germany</style>internal-pdf://4036337906/Fanck-2005-92.pdfKWB-documents_20191205.enlEndNote32932947<style face="normal" font="default" size="100%">Facility for the Simulation of Riverbank Filtration and Slow Sand Filtration - Examples of Virus Elimination in the Subsurface under near-natural Conditions</style>internal-pdf://2933026383/Dizer-2010-329.pdfKWB-documents_20191205.enlEndNote909017<style face="normal" font="default" size="100%">Contribution of the colmation layer to the elimination of coliphages by slow sand filtration</style>
internal-pdf://0965782101/Dizer-2004-90.pdf
KWB-documents_20191205.enlEndNote43743727<style face="normal" font="default" size="100%">Retention and elimination of cynobacterial toxins (microcystins) through artificial recharge and bank filtration</style>internal-pdf://0016792491/Chorus-2006-437.pdfKWB-documents_20191205.enlEndNote38438417<style face="normal" font="default" size="100%">Removal of bacterial fecal indicators, coliphages and enteric adenoviruses from waters with high fecal pollution by slow sand filtration</style>
internal-pdf://2101110698/Bauer-2011-384.pdf
KWB-documents_20191205.enlEndNote1237123727<style face="normal" font="default" size="100%">Monitoring of Water Quality Parameters in Combined Sewer Overflows </style>internal-pdf://3592461291/Rouault-2009-1237.pdfKWB-documents_20191205.enlEndNote27627627<style face="normal" font="default" size="11">Monitoring von Wassergüteparametern an Mischwasserüberläufen</style>internal-pdf://4277567498/Rouault-2009-276.pdfKWB-documents_20191205.enlEndNote18418447<style face="normal" font="default" size="11">Development of a monitoring concept for combined sewer overflows - testing of modern online-sensors</style>internal-pdf://0724661288/Rettig-2009-184.pdfKWB-documents_20191205.enlEndNote18218227<style face="normal" font="default" size="11">Spurenstoffe in Mischwassereinleitungen</style>internal-pdf://3887314658/Plume-2008-182.pdfKWB-documents_20191205.enlEndNote18318347<style face="normal" font="default" size="11">Impact assessment of combined sewer overflows on the River Spree in Berlin, Germany</style>internal-pdf://3121640707/Matzinger-2009-183.pdfKWB-documents_20191205.enlEndNote17017017<style face="normal" font="default" size="100%">11th International Conference on Urban Drainage in Edinburgh ICUD – aktuelle Entwicklungen aus Forschung und Praxis – zwischen Kanalbetrieb und Klimawandel</style>
internal-pdf://2460939281/Hoppe-2008-170.pdf
KWB-documents_20191205.enlEndNote22622647<style face="normal" font="default" size="11">Onlinemesstechnik im Labor- und Praxistest</style>internal-pdf://2401471624/Barjenbruch-2009-226.pdfKWB-documents_20191205.enlEndNote22822847<style face="normal" font="default" size="11">Vergleich von Online-Sensoren</style>internal-pdf://4152134886/Barjenbruch-2008-228.pdfKWB-documents_20191205.enlEndNote18118127<style face="normal" font="default" size="11">Test und Bewertung von moderner Online-Sensorik zum Kanalnetz- und Gewässermonitoring</style>internal-pdf://3473717446/Barjenbruch-2009-181.pdfKWB-documents_20191205.enlEndNote22722747<style face="normal" font="default" size="11">Labor- und Praxistest von Onlinemesstechnik</style>KWB-documents_20191205.enlEndNote37237217<style face="normal" font="default" size="100%">Contribution of combined sewer overflows to trace contaminant loads in urban streams</style>
internal-pdf://2873321480/Weyrauch-2010-372.pdf
KWB-documents_20191205.enlEndNote67467417<style face="normal" font="default" size="100%">Angewandte Wasserforschung</style>
internal-pdf://1809882068/Weigert-2014-674.pdf
KWB-documents_20191205.enlEndNote56556527<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions in Berlin</style>internal-pdf://3462347785/Uldack-2013-565.pdfKWB-documents_20191205.enlEndNote65765732<style face="normal" font="default" size="100%">Modelling the impacts of combined sewer overflows on the Berlin River Spree</style>internal-pdf://0316105294/Uldack-2013-657.pdfKWB-documents_20191205.enlEndNote50550517<style face="normal" font="default" size="100%">Best data handling practices in water-related research</style>
internal-pdf://3142198122/Sonnenberg-2013-505.pdfinternal-pdf://1115275490/Sonnenberg-2013-5051.pdf
KWB-documents_20191205.enlEndNote1180118047<style face="normal" font="default" size="100%">Best data handling practices in water-related research. </style>KWB-documents_20191205.enlEndNote44644647<style face="normal" font="default" size="100%">Different methods of CSO identification in sewer systems and receiving waters</style>internal-pdf://1757960287/Sonnenberg-2011-446.pdfKWB-documents_20191205.enlEndNote30130147<style face="normal" font="default" size="100%">Technical Conference Report</style>internal-pdf://0526905870/Sonnenberg-2009-301.pdfKWB-documents_20191205.enlEndNote34434447<style face="normal" font="default" size="100%">Development of a planning instrument for CSO management - Cooperation of research, water utility and public water authority in the city of Berlin (presented by Kai Schroeder)</style>internal-pdf://3208930525/Schroeder-2010-344.pdfKWB-documents_20191205.enlEndNote38538517<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>
internal-pdf://3797640491/Schroeder-2011-385.pdf
KWB-documents_20191205.enlEndNote37337347<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>internal-pdf://0507638504/Schroeder-2010-373.pdfKWB-documents_20191205.enlEndNote61261217<style face="normal" font="default" size="100%">The evaluation of rainfall influence on CSO characteristics: the Berlin case study</style>
internal-pdf://0292106268/Sandoval-2013-612.pdfinternal-pdf://3118847682/Sandoval-2013-6121.pdf
KWB-documents_20191205.enlEndNote34334347<style face="normal" font="default" size="100%">Online monitoring for evaluation of CSO impact on surface water (presented by Hauke Sonnenberg)</style>internal-pdf://2588210052/Rouault-2010-343.pdfKWB-documents_20191205.enlEndNote50650617<style face="normal" font="default" size="100%">Immissionsorientierte Mischwasserbewirtschaftung</style>
internal-pdf://3752730859/Riechel-2012-506.pdf
KWB-documents_20191205.enlEndNote50850847<style face="normal" font="default" size="100%">Validation and sensitivity of a coupled model tool for CSO impact assessment in Berlin, Germany.</style>internal-pdf://1200639116/Riechel-2012-508.pdfKWB-documents_20191205.enlEndNote34534547<style face="normal" font="default" size="100%">Application of stormwater impact assessment guidelines for urban lowland rivers – the challenge of distinction between background pollution and impacts of combined sewer overflows (CSO) (presented by Andreas Matzinger, participation of Pascale Rouault and Nicolas Caradot)</style>internal-pdf://2372101481/Riechel-2010-345.pdfKWB-documents_20191205.enlEndNote87387317<style face="normal" font="default" size="100%">Impacts of combined sewer overflows on a large urban river - Understanding the effect of different management strategies</style>
internal-pdf://1104274690/Riechel-2016-873.pdf
KWB-documents_20191205.enlEndNote50750747<style face="normal" font="default" size="100%">Towards an Impact-based Planning Instrument for Combined Sewer Management in Berlin, Germany. </style>internal-pdf://0453724341/Riechel-2011-507.pdfKWB-documents_20191205.enlEndNote28428447<style face="normal" font="default" size="11">The Berlin Force Main Model - Application of InfoWorks 9.5 CS® for the evaluation of a large force main network and the pollution load to a WWTP</style>internal-pdf://2838461663/Pawlowsky-Reusing-2009-284.pdfinternal-pdf://1701936413/Pawlowsky-Reusing-2009-2842.pdfKWB-documents_20191205.enlEndNote31231217<style face="normal" font="default" size="11">The HSG procedure for modelling integrated urban wastewater systems</style>
internal-pdf://2832168054/Muschalla-2009-312.pdf
KWB-documents_20191205.enlEndNote50950947<style face="normal" font="default" size="100%">A large urban river under pressure - Research and actions for the mitigation of impacts from combined sewer overflows in Berlin, Germany.</style>internal-pdf://4291447324/Matzinger-2012-509.pdfKWB-documents_20191205.enlEndNote63563547<style face="normal" font="default" size="100%">Aufbau, Validierung und Anwendung eines modellbasierten Werkzeugs für die immissionsbasierte Maßnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://1822383364/Matzinger-2013-635.pdfKWB-documents_20191205.enlEndNote63463447<style face="normal" font="default" size="100%">Modellbasiertes Werkzeug - immissionsbasierte Massnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://0120693934/Matzinger-2013-634.pdfKWB-documents_20191205.enlEndNote45045027<style face="normal" font="default" size="100%">Ammonia toxicity: Impact assessment of combined sewer overflows on the River Spree in Berlin</style>internal-pdf://0325342406/Matzinger-2011-450.pdfKWB-documents_20191205.enlEndNote4934935<style face="normal" font="default" size="100%">Modellierung von biogeochemischen Prozessen in Fließgewässern</style>internal-pdf://0120179969/Matzinger-2012-493.pdfKWB-documents_20191205.enlEndNote61361347<style face="normal" font="default" size="100%">Optimal sampling strategy for local calibration of UV-VIS spectrometers in urban drainage monitoring</style>internal-pdf://2875218753/Caradot-2013-613.pdfKWB-documents_20191205.enlEndNote61161117<style face="normal" font="default" size="100%">The influence of local calibration on the quality of UV-VIS spectrometer measurements in urban stormwater monitoring</style>
internal-pdf://1077422315/Caradot-2013-611.pdfinternal-pdf://1958685605/Caradot-2013-6111.pdf
KWB-documents_20191205.enlEndNote44544547<style face="normal" font="default" size="100%">Application of online water quality sensors for integrated CSO impact assessment in Berlin (Gemany)</style>internal-pdf://2238797763/Caradot-2011-445.pdfKWB-documents_20191205.enlEndNote57057047<style face="normal" font="default" size="100%">The use of continuous sewer and river monitoring data for CSO characterization and impact assessment</style>internal-pdf://2071543557/Caradot-2013-570.pdfKWB-documents_20191205.enlEndNote49449427<style face="normal" font="default" size="100%">Continuous Monitoring of Combined Sewer Overflows in the Sewer and the Receiving River: Return on Experience</style>internal-pdf://3006218067/Caradot-2012-494.pdfKWB-documents_20191205.enlEndNote20720732<style face="normal" font="default" size="11">Sensitivity Analysis Using SimLab: Application for the German Standard ATV-A 128</style>internal-pdf://2795615050/Brun-2009-207.pdfKWB-documents_20191205.enlEndNote1132113247<style face="normal" font="default" size="100%">Implementation of a fluorescence (FDOM) online measurement at an ozonation plant used for micropollutant elimination – operational aspects and comparison to UVA254, Ozone and Advanced Oxidation. Leading-edge science and technologies</style>internal-pdf://2411923777/Stapf-2019-1132.pdfKWB-documents_20191205.enlEndNote1131113147<style face="normal" font="default" size="100%">Einsatz einer Fluoreszenz-Onlinemessung zur Überwachung einer Ozonung zur Spurenstoffelimination - Betriebserfahrungen und Vergleich zum SAK254</style>internal-pdf://0573880737/Stapf-2019-1131.pdfKWB-documents_20191205.enlEndNote1235123547<style face="normal" font="default" size="100%">Untersuchung des Foulingverhaltens von UV-Onlinesonden im Betrieb einer Ozonung auf Kläranlagen</style>KWB-documents_20191205.enlEndNote1062106232<style face="normal" font="default" size="100%">Qualitätssicherung von UV-Onlinedaten bei der Ozonierung kommunalen Abwassers - Identifizierung von Fouling mittels Onlinedatenanalyse zur Optimierung der Betriebsführung</style>internal-pdf://4270798414/Mauch-2018-1062.pdfKWB-documents_20191205.enlEndNote3303306<style face="normal" font="default" size="100%">Membrane technologies for wastewater treatment and reuse : 4 - 5 June 2007, Berlin (Germany), 2nd IWA National Young Water Professionals Conference ; conference proceedings</style>internal-pdf://2522337168/Lesjean-2007-330.pdfinternal-pdf://3111702479/Lesjean-2007-3301.pdfKWB-documents_20191205.enlEndNote39539517<style face="normal" font="default" size="100%">Filterability assessment in membrane bioreactors using an in-situ filtration test cell</style>
internal-pdf://1822122761/de la Torre-2010-3951.pdf
KWB-documents_20191205.enlEndNote25925947<style face="normal" font="default" size="100%">Filtration characterisation methods in MBR systems: a practical comparison</style>internal-pdf://0914321770/de la Torre-2008-2591.pdfinternal-pdf://3298521513/de la Torre-2008-259.pdfKWB-documents_20191205.enlEndNote43143117<style face="normal" font="default" size="100%">Searching for a universal fouling indicator for membrane bioreactors</style>
internal-pdf://1419451371/de la Torre-2010-4311.pdf
KWB-documents_20191205.enlEndNote85985932<style face="normal" font="default" size="100%">Vergleichende Ökobilanzierung verschiedener Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://1464085052/Sommer-2015-859.pdfKWB-documents_20191205.enlEndNote77877847<style face="normal" font="default" size="100%">Monitoring of runoff water quality from green and gravel roofs with bitumen membranes</style>internal-pdf://3368711269/Schubert-2015-778.pdfKWB-documents_20191205.enlEndNote71571532<style face="normal" font="default" size="100%">Modelling of Dynamic and Static Adaptation Measures for Combined Sewer System Optimisation: Case-Study of Wilmersdorf Catchment, Berlin</style>internal-pdf://0949679218/Salvan-2014-715.pdfKWB-documents_20191205.enlEndNote1220122027<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur-Maßnahmenkombinationen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://3172686010/Rouault-2016-1220.pdfKWB-documents_20191205.enlEndNote1219121927<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur- Leitfaden zum methodischen Vorgehen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://0719885384/Rouault-2016-1219.pdfKWB-documents_20191205.enlEndNote1218121827<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur-Einzelmaßnahmen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://3829176421/Rouault-2016-1218.pdfKWB-documents_20191205.enlEndNote97897810<style face="normal" font="default" size="100%">Zielorientierte Regenwasserbewirtschaftung zur Verbesserung der Lebensqualität und der Umweltbedingungen in der Stadt</style>internal-pdf://2836496065/Rouault-2016-978.pdfKWB-documents_20191205.enlEndNote78178147<style face="normal" font="default" size="100%">A Holistic Assessment Approach to Quantify the Effects of Adaptation Measures on CSO and Flooding</style>internal-pdf://0470580352/Riechel-2015-781.pdfKWB-documents_20191205.enlEndNote69069047<style face="normal" font="default" size="100%">Bewertung von Maßnahmen der Regenwasserbewirtschaftung am Beispiel von Umwelteffekten</style>internal-pdf://2982641709/Riechel-2014-690.pdfinternal-pdf://2256216708/Riechel-2014-6901.pdfKWB-documents_20191205.enlEndNote79179147<style face="normal" font="default" size="100%">Austrag und Rückhalt von Mecoprop durch Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://3493310072/Riechel-2015-791.pdfKWB-documents_20191205.enlEndNote87487447<style face="normal" font="default" size="100%">A modelling approach for assessing acute river impacts of realistic stormwater management strategies</style>internal-pdf://1286673172/Riechel-2016-874.pdfKWB-documents_20191205.enlEndNote101810185<style face="normal" font="default" size="100%">Gewässerschutz durch kombinierte dezentrale und zentrale Maßnahmen der Regenwasserbewirtschaftung - Modellstudie am Beispiel Berlins</style>internal-pdf://2258607745/Riechel-2017-1018.pdfKWB-documents_20191205.enlEndNote102210225<style face="normal" font="default" size="100%">Klima- und Demografieszenarien für die urbane Abwasserentsorgung</style>internal-pdf://1922735963/Riechel-2017-1022.pdfKWB-documents_20191205.enlEndNote78078047<style face="normal" font="default" size="100%">How to find suitable locations for in-sewer storage? - Test on a combined sewer catchment in Berlin</style>internal-pdf://0848460257/Philippon-2015-780.pdfKWB-documents_20191205.enlEndNote86386332<style face="normal" font="default" size="100%">Bewertung des Einflusses dezentraler Regenwasserbewirtschaftungsmaßnahmen auf das Grundwasser anhand ausgewählter Indikatoren </style>KWB-documents_20191205.enlEndNote97997947<style face="normal" font="default" size="100%">Improving Decision-Making in Urban Stormwater Management – Strategy and stakeholder process </style>internal-pdf://0728596489/Nickel-2016-979.pdfKWB-documents_20191205.enlEndNote78378347<style face="normal" font="default" size="100%">Improving Urban Drainage in face of climate and demographic change: interim results of the joint research project KURAS (Concepts for urban rainwater management, drainage and sewage systems)</style>KWB-documents_20191205.enlEndNote98098017<style face="normal" font="default" size="100%">KURAS - Forschung trifft Praxis: Zukunftsorientierte Anpassung des urbanen Regenwasser- und Abwassermanagements</style>
internal-pdf://0392593573/Mitchell-2016-980.pdf
KWB-documents_20191205.enlEndNote74774717<style face="normal" font="default" size="100%">New concepts for combined stormwater and wastewater management</style>
internal-pdf://0650846478/Matzinger-2014-747.pdf
KWB-documents_20191205.enlEndNote66866817<style face="normal" font="default" size="100%">KURAS gestartet: Neue Konzepte für Berlin</style>
internal-pdf://3362320290/Matzinger-2014-668.pdf
KWB-documents_20191205.enlEndNote74674610<style face="normal" font="default" size="100%">Quantifying the effects of urban stormwater management - Towards a novel approach for integrated planning</style>internal-pdf://3201310600/Matzinger-2014-746.pdfKWB-documents_20191205.enlEndNote1021102117<style face="normal" font="default" size="100%">Integrated planning of urban stormwater management - Introduction to the KURAS-approach from Berlin, Germany</style>internal-pdf://0051027756/Matzinger-2017-1021.pdfKWB-documents_20191205.enlEndNote1079107917<style face="normal" font="default" size="100%">Integrierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Anwendung und Weiterentwicklung der "KURAS-Methode" in Berlin</style>
internal-pdf://0296387475/Matzinger-2018-1079.pdf
KWB-documents_20191205.enlEndNote102610265<style face="normal" font="default" size="100%">Potenziale der Regenwasserbewirtschaftung im Siedlungsbestand</style>internal-pdf://1119512723/Matzinger-2017-1026.pdfKWB-documents_20191205.enlEndNote1025102517<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung - Ergebnisse aus dem Verbundprojekt KURAS</style>
internal-pdf://0497721304/Matzinger-2017-1025.pdf
KWB-documents_20191205.enlEndNote98198147<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung</style>internal-pdf://0642154973/Matzinger-2016-981.pdfKWB-documents_20191205.enlEndNote98298247<style face="normal" font="default" size="100%">Quantification of multiple benefits and cost of stormwater management</style>internal-pdf://2904523385/Matzinger-2016-982.pdfKWB-documents_20191205.enlEndNote1027102727<style face="normal" font="default" size="100%">Zielorientierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>internal-pdf://3606472960/Matzinger-2017-1027.pdfKWB-documents_20191205.enlEndNote1080108017<style face="normal" font="default" size="100%">Ergebnisse des Projekts KURAS - Integrierte Maßnahmenplanung unter Berücksichtigung der vielfältigen Potentiale der Regenwasserbewirtschaftung</style>
internal-pdf://0099189714/Matzinger-2018-1080.pdf
KWB-documents_20191205.enlEndNote1024102417<style face="normal" font="default" size="100%">Die Potenziale der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>
internal-pdf://3960905641/Matzinger-2017-1024.pdf
KWB-documents_20191205.enlEndNote1023102317<style face="normal" font="default" size="100%">Maßnahmenplanung unter Berücksichtigung der Regenwasserbewirtschaftung - Ergebnisse des Projekts Kuras</style>
internal-pdf://1268359034/Matzinger-2017-1023.pdf
KWB-documents_20191205.enlEndNote102010205<style face="normal" font="default" size="100%">Maßnahmen der Regenwasserbewirtschaftung – Umfassende Bewertung als Entscheidungshilfe</style>internal-pdf://0408657630/Matzinger-2017-1020.pdfKWB-documents_20191205.enlEndNote101910195<style face="normal" font="default" size="100%">Entwicklung und Bewertung von Maßnahmen zur Anpassung der urbanen Abwasserinfrastruktur an die Zukunft</style>internal-pdf://2344459952/Hürter-2017-1019.pdfKWB-documents_20191205.enlEndNote90990947<style face="normal" font="default" size="100%">Integrated modelling and evaluation of adaptation measures in a metropolitan wastewater system</style>KWB-documents_20191205.enlEndNote92092032<style face="normal" font="default" size="100%">Simulating Different Strategies of Storage Capacity Increase to Reduce Combined Sewer Overflows and Flooding</style>internal-pdf://2777573414/Alem-2015-920.pdfKWB-documents_20191205.enlEndNote1227122747<style face="normal" font="default" size="100%">Extensive Green Roof Performance and Design under Different Climatic Conditions-Analyses from China and Germany</style>KWB-documents_20191205.enlEndNote444427<style face="normal" font="default" size="100%">12 Jahre Pilotbetrieb Karolinenhöhe – eine erste Auswertung</style>internal-pdf://2111833628/Liese-2004-44.pdfKWB-documents_20191205.enlEndNote1721726<style face="normal" font="default" size="11">12 Jahre Pilotbetrieb Karolinenhöhe - Zusammenfassende Auswertung</style>
internal-pdf://0186023541/Liese-2007-172.pdf
KWB-documents_20191205.enlEndNote414127<style face="normal" font="default" size="100%">Machbarkeitsstudie für die Einrichtung eines Informations- und Testzentrums Messtechnik (ITZM) im Wasser- und Abwasserbereich</style>internal-pdf://0860464735/Lühr-2004-41.pdfKWB-documents_20191205.enlEndNote62162147<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2111940862/Stapf-2013-621.pdfKWB-documents_20191205.enlEndNote62062047<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2384536520/Stapf-2013-620.pdfKWB-documents_20191205.enlEndNote87287217<style face="normal" font="default" size="100%">Application of online UV absorption measurements for ozone process control in secondary effluent with variable nitrite concentration</style>
internal-pdf://2199996736/Stapf-2016-872.pdf
KWB-documents_20191205.enlEndNote76876847<style face="normal" font="default" size="100%">Betriebserfahrungen einer Ozonungsanlage zur Spurenstoffeliminierung mittels SAK</style><style face="subscript" font="default" size="100%">254</style><style face="normal" font="default" size="100%">-Differenz-Regelung</style>internal-pdf://4084496634/Stapf-2015-768.pdfinternal-pdf://3256998600/Stapf-2015-7681.pdfKWB-documents_20191205.enlEndNote76776747<style face="normal" font="default" size="100%">Application of Ultraviolet Absorption Measurement for Closed-loop Control of Tertiary Ozonation</style>internal-pdf://3549719910/Stapf-2015-767.pdfinternal-pdf://3362196797/Stapf-2015-7671.pdfKWB-documents_20191205.enlEndNote99699617<style face="normal" font="default" size="100%">Einfluss von Ozonung oder Aktivkohleadsorption zur weitergehenden Entfernung organischer Spurenstoffe auf den Energieaufwand und CO2-Fußabdruck einer Kläranlage</style>
internal-pdf://0509980595/Mutz-2017-996.pdf
KWB-documents_20191205.enlEndNote79879810<style face="normal" font="default" size="100%">Integrating Ozonation or Adsorption on Activated Carbon into Tertiary Wastewater Treatment: Environmental Impacts with Life Cycle Assessment</style>internal-pdf://3498751120/Mutz-2015-798.pdfinternal-pdf://1787147564/Mutz-2015-7982.pdfinternal-pdf://2421142953/Mutz-2015-7983.pdfKWB-documents_20191205.enlEndNote85885827<style face="normal" font="default" size="100%">Integration der Spurenstoffentfernung in Technologieansätze der 4. Reinigungsstufe bei Klärwerken</style>internal-pdf://3696311816/Jekel-2015-858.pdfKWB-documents_20191205.enlEndNote87187117<style face="normal" font="default" size="100%">Ozonung für die Abwasserdesinfektion und Spurenstoffentfernung</style>
internal-pdf://2488155815/Gnirß-2016-871.pdf
KWB-documents_20191205.enlEndNote171747<style face="normal" font="default" size="100%">Adapted integrated modelling of drainage systems dominated by wastewater pump stations</style>internal-pdf://0046434591/Schroeder-2006-17.pdfKWB-documents_20191205.enlEndNote242447<style face="normal" font="default" size="100%">Case study of global pump station control for the combined sewerage of Berlin</style>internal-pdf://1482793733/Huß-2005-24.pdfKWB-documents_20191205.enlEndNote25425432<style face="normal" font="default" size="11">Modélisation et campagne de mesures sur le bassin-versant Berlin VII</style>internal-pdf://0192119621/Souchon-2001-254.pdfKWB-documents_20191205.enlEndNote25025032<style face="normal" font="default" size="11">Untersuchungen zur integrierten Modellierung von Freispiegel- und Druckabfluss im Berliner Abwassersystem</style>internal-pdf://1735951251/Sonnenberg-2006-250.pdfKWB-documents_20191205.enlEndNote24924927<style face="normal" font="default" size="11">Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung der Mischwasserentlastungen am Beispiel eines Starkregenereignisses im September 2005</style>internal-pdf://3050669056/Schumacher-2007-249.pdfKWB-documents_20191205.enlEndNote212147<style face="normal" font="default" size="100%">Integrated Sewage Management - Development of a global Real Time Control for three interconnected Subcatchments of the Berlin Drainage System</style>internal-pdf://1348248793/Schroeder-2004-21.PDFKWB-documents_20191205.enlEndNote282817<style face="normal" font="default" size="100%">Current state and development of the real-time control of the Berlin sewage system</style>
internal-pdf://2939330163/Schroeder-2005-28.pdf
KWB-documents_20191205.enlEndNote161617<style face="normal" font="default" size="100%">Integriertes Abwassermanagement - Strategien für eine integrierte Bewirtschaftung des Berliner Abwassersystems und Nutzen von lokalen und globalen Steuerungskonzepten</style>
internal-pdf://1725070309/Schroeder-2004-16.PDF
KWB-documents_20191205.enlEndNote151547<style face="normal" font="default" size="100%">Current State And Development Of The Real-Time Control Of The Berlin Sewage System</style>file://Z:\Dokument-Managementsystem\Dokuments\Publikation\Schroeder%20and%20Pawlowsky-Reusing,%202004%20-%20Current%20State%20And%20Development%20Of%20The%20Real-Time%20Control%20Of%20The%20Berlin%20Sewage%20System.pdfKWB-documents_20191205.enlEndNote141417<style face="normal" font="default" size="100%">Integrated sewage management to reduce pollution load in Berlin</style>
internal-pdf://1791926733/Schroeder-2004-14.pdf
KWB-documents_20191205.enlEndNote858547<style face="normal" font="default" size="100%">Zustand und Entwicklung der Steuerung des Berliner Entwässerungssystems</style>internal-pdf://3686304374/Schroeder-2003-85.pdfinternal-pdf://1405258420/Schroeder-2003-851.pdfKWB-documents_20191205.enlEndNote222247<style face="normal" font="default" size="100%">Integrated Simulation of the Berlin Sewage System and Evaluation of a global Real-time Control Concept</style>internal-pdf://1659477681/Schroeder-2005-22.pdfKWB-documents_20191205.enlEndNote111147<style face="normal" font="default" size="100%">Assessment of global pump station control strategies on the basis of numerical modelling</style>internal-pdf://2135334655/Schroeder-2005-11.pdfKWB-documents_20191205.enlEndNote191947<style face="normal" font="default" size="100%">Integriertes Abwasser Management – Aufbau eines integrierten Modells zur Optimierung des Berliner Abwasser Systems</style>internal-pdf://2293082022/Schroeder-2003-19.pdfKWB-documents_20191205.enlEndNote181847<style face="normal" font="default" size="100%">Integrated Sewage Management - Setup of networked models for analysis and improvement of the Berlin sewage system</style>internal-pdf://3109923553/Schroeder-2002-18.pdfKWB-documents_20191205.enlEndNote202047<style face="normal" font="default" size="100%">Model-based evaluation of a level dependant real-time control for sewage pump stations</style>internal-pdf://1245154128/Schroeder-2004-20.pdfKWB-documents_20191205.enlEndNote24624647<style face="normal" font="default" size="11">Integrated Sewer Management</style>internal-pdf://1908245598/Schroeder-2007-246.pdfKWB-documents_20191205.enlEndNote21221247<style face="normal" font="default" size="11">Integrale Bewirtschaftung von Entwässerungssystemen</style>internal-pdf://0150514479/Schroeder-2007-212.pdfKWB-documents_20191205.enlEndNote21121147<style face="normal" font="default" size="100%">Bewertung von Strategien der Abflusssteuerung mittels Kanalnetzsimulation</style>internal-pdf://2268066614/Schroeder-2004-211.pdfKWB-documents_20191205.enlEndNote878747<style face="normal" font="default" size="100%">Simulationsgestützte Entwicklung von Strategien der Verbundsteuerung am Beispiel des Berliner Entwässerungssystems</style>internal-pdf://1268490763/Schroeder-2004-87.pdfKWB-documents_20191205.enlEndNote28528547<style face="normal" font="default" size="11">Integrated Sewage Management - Setup of an integrated strategy for the control of the Berlin sewage system</style>internal-pdf://0878804004/Schroeder-2002-285.pdfKWB-documents_20191205.enlEndNote101027<style face="normal" font="default" size="100%">ISM - Integrated Sewage Management - Final Research Report</style>internal-pdf://0375035574/Pawlowsky-Reusing-2006-10.pdfKWB-documents_20191205.enlEndNote838347<style face="normal" font="default" size="100%">Application of InfoWorks CS® for the Evaluation of CSO-Impacts in Berlin</style>internal-pdf://4259550137/Pawlowsky-Reusing-2007-83.pdfKWB-documents_20191205.enlEndNote24224247<style face="normal" font="default" size="11">Pegelbasierte Förderstromregelung - eine Möglichkeit zur gezielten Bewirtschaftung des Kanals</style>KWB-documents_20191205.enlEndNote24124147<style face="normal" font="default" size="11">Erfahrungen mit neuronalen Netzen für Simulationen des Kanalnetzes</style>KWB-documents_20191205.enlEndNote24824827<style face="normal" font="default" size="11">Immissionsorientierte Bewertung von Mischwasserentlastungen in Tieflandflüssen</style>internal-pdf://1558086906/Leszinski-2007-248.pdfKWB-documents_20191205.enlEndNote24724727<style face="normal" font="default" size="11">Auswirkungen urbaner Nutzungen auf den Stoffhaushalt und die Biozönosen von Tieflandflüssen unter besonderer Berücksichtigung der Mischwasserentlastung</style>internal-pdf://3948381637/Leszinski-2006-247.pdfKWB-documents_20191205.enlEndNote25125132<style face="normal" font="default" size="11">Modélisation du transport de matières en suspension dans le réseau d’assainissement de Berlin</style>internal-pdf://4204889728/Lemaire-2003-251.pdfKWB-documents_20191205.enlEndNote25325332<style face="normal" font="default" size="11">Modelisation d’un Reseau d’Assainissement, Berlin VIII</style>internal-pdf://2568849102/Laborde-2003-253.pdfKWB-documents_20191205.enlEndNote17117132<style face="normal" font="default" size="11">Untersuchungen zur Verbundsteuerung des Berliner Entwässerungssystems</style>internal-pdf://4056922232/Huß-2005-171.pdfKWB-documents_20191205.enlEndNote24024017<style face="normal" font="default" size="100%">Vierter Weltwasserkongress der IWA - Ein Forum für Erfahrungsaustausch, neue Ideen und Know-how</style>
internal-pdf://3763794898/Hoppe-2005-240.pdf
KWB-documents_20191205.enlEndNote25225232<style face="normal" font="default" size="11">Modelisation des Sous-Bassins Versants Berlin V et XII, Tests de Scenarios d’Amelioration</style>internal-pdf://1505789817/Daspres-2004-252.pdfKWB-documents_20191205.enlEndNote818147<style face="normal" font="default" size="100%">Langzeituntersuchungen zur Entfernung organischer Spurenstoffe mit zwei Membranbelebungsanlagen im Vergleich zu einem konventionellen Klärwerk</style>internal-pdf://1461750327/Zühlke-2003-81.pdfKWB-documents_20191205.enlEndNote828217<style face="normal" font="default" size="100%">Long term comparison of trace organics removal performances between conventional and membrane activated sludge processes</style>
internal-pdf://2135328711/Zühlke-2006-82.pdf
KWB-documents_20191205.enlEndNote808017<style face="normal" font="default" size="100%">Enhanced post-denitrification without addition of an external carbon source in membrane bioreactors</style>
internal-pdf://2411956308/Vocks-2005-80.pdf
KWB-documents_20191205.enlEndNote787847<style face="normal" font="default" size="100%">Zusammenhang zwischen Membranfouling und gelösten Substanzen in Membranbelebungsreaktoren</style>internal-pdf://3570174956/Rosenberger-2003-78.pdfKWB-documents_20191205.enlEndNote797917<style face="normal" font="default" size="100%">Impact of colloidal and soluble organic material on membrane performance in membrane bioreactors for municipal waste water treatment</style>
internal-pdf://4178584535/Rosenberger-2006-79.pdf
KWB-documents_20191205.enlEndNote767617<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation on enhanced biological nutrients removal and trace organics elimination in membrane bioreactor (MBR)</style>
internal-pdf://0392201778/Lesjean-2005-76.pdf
KWB-documents_20191205.enlEndNote757547<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation of Membrane Bioreactor Process configurations for biological advanced nutrients removal from municipal wastewater</style>KWB-documents_20191205.enlEndNote747417<style face="normal" font="default" size="100%">Process configurations adapted to membrane bioreactors for enhanced biological phosphorous and nitrogen removal</style>
internal-pdf://3379015180/Lesjean-2002-74.pdf
KWB-documents_20191205.enlEndNote474727<style face="normal" font="default" size="100%">Application of Liquid Chromatography-Online Carbon Detection (LC-OCD) to the understanding of organic fouling in membrane bioreactors (MBRs)</style>internal-pdf://1984538597/Laabs-2004-47.pdfKWB-documents_20191205.enlEndNote484827<style face="normal" font="default" size="100%">Preliminary Studies on P-removal by Adsorption from MBR filtrates</style>internal-pdf://3888754360/Kornmüller-2002-48.pdfKWB-documents_20191205.enlEndNote737347<style face="normal" font="default" size="100%">Biologische Phosphorentfernung mit einer nachgeschaltetenDenitrifikation im Membranbelebungsverfahren</style>internal-pdf://1556654365/Gnirß-2003-73.pdfKWB-documents_20191205.enlEndNote464627<style face="normal" font="default" size="100%">Evaluation of enhanced biological phosphorus removal process in membrane bioreactors (operation from Oct 2001 to Apr 2002 with a sludge age of 26 days)</style>internal-pdf://2178396066/Gnirß-2002-46.pdfKWB-documents_20191205.enlEndNote727217<style face="normal" font="default" size="100%">Membranbelebungsverfahren mit vermehrter biologischer Phosphorelimination (EBPR)</style>
internal-pdf://3152784019/Adam-2003-72.pdf
KWB-documents_20191205.enlEndNote28728727<style face="normal" font="default" size="11">IDB International Development of Bank Filtration -Case study India</style>internal-pdf://2445900695/Fritz-2006-287.pdfKWB-documents_20191205.enlEndNote1178117827<style face="normal" font="default" size="100%">Integration and Consolidation of Information on Pharmaceutical Residues in the Urban Water Cycle - IC Pharma Final Project Report </style>internal-pdf://1454762948/Seeber-2010-1178.pdfKWB-documents_20191205.enlEndNote20820847<style face="normal" font="default" size="11">Pharmaceutical residues in the urban water cycle - An overview of the state of the art</style>internal-pdf://3311432573/Schroeder-2009-208.pdfKWB-documents_20191205.enlEndNote42942917<style face="normal" font="default" size="100%">Removal kinetics of organic compounds and sum parameters under field conditions for managed aquifer recharge</style>
internal-pdf://1483742312/Wiese-2011-429.pdf
KWB-documents_20191205.enlEndNote33833847<style face="normal" font="default" size="100%">Condition-dependent removal of 38 organic constituents during bank filtration</style>internal-pdf://0675375954/Wiese-2010-338.pdfKWB-documents_20191205.enlEndNote65365327<style face="normal" font="default" size="100%">Bank Filtration and Aquifer Recharde for Drinking Water Production: Application, Efficiency and Perspectives - An Integration of NASRI outcomes and International Experiences</style>internal-pdf://0810267715/Grützmacher-2011-653.pdfKWB-documents_20191205.enlEndNote48948947<style face="normal" font="default" size="100%">Zum Verhalten von organischen Spurestoffen bei der Trinkwassergewinnung durch Untergrundpassage in Berlin</style>internal-pdf://0074665927/Grützmacher-2011-489.pdfKWB-documents_20191205.enlEndNote30830810<style face="normal" font="default" size="100%">Challenges and opportunities of Managed Aquifer Recharge</style>internal-pdf://0693072094/Grützmacher-2008-308.pdfKWB-documents_20191205.enlEndNote65965932<style face="normal" font="default" size="100%">Screening of different sewage sludge disposal routes regarding the energy demand with focus on hydrothermal carbonisation</style>internal-pdf://2389013815/Warneke-2013-659.pdfKWB-documents_20191205.enlEndNote62962927<style face="normal" font="default" size="100%">Hydrothermal Carbonisation (HTC): Theoretical evaluation of selected schemes for municipal sludge treatment</style>internal-pdf://0521169592/Remy-2013-629.pdfKWB-documents_20191205.enlEndNote60560527<style face="normal" font="default" size="100%">Hydrothermal carbonisation: Theoretical evaluation of selected schemes for municipal sludge treatment</style>KWB-documents_20191205.enlEndNote60660647<style face="normal" font="default" size="100%">Theoretische Energie- und CO2-Bilanz von Referenzverfahren und HTC-Prozess bei der Entsorgung kommunaler Klärschlämme</style>internal-pdf://2107687682/Remy-2013-606.pdfKWB-documents_20191205.enlEndNote60460447<style face="normal" font="default" size="100%">HTC-Check: Energiebilanz und Carbon Footprint von Referenztechnologien und HTC-Prozess bei der Klärschlammentsorgung</style>internal-pdf://3059538448/Remy-2013-604.pdfKWB-documents_20191205.enlEndNote75075017<style face="normal" font="default" size="100%">Hydrothermale Carbonisierung: Eine neue Option der Klärschlammbehandlung? Theoretische Energie/CO2-Bilanz</style>
internal-pdf://0503371832/Remy-2015-750.pdf
KWB-documents_20191205.enlEndNote70770747<style face="normal" font="default" size="100%">Energie- und CO2-Bilanz von HTC im Vergleich zu konventionellen Verfahren der Klärschlammbehandlung</style>internal-pdf://1199549953/Lesjean-2014-707.pdfKWB-documents_20191205.enlEndNote86086032<style face="normal" font="default" size="100%">Energie- und Treibhausgasbilanz ausgewählter Szenarien zur Klärschlammentsorgung mit Hydrothermaler Karbonisierung in Berlin</style>internal-pdf://1223307457/Zander-2015-860.pdfKWB-documents_20191205.enlEndNote84584527<style face="normal" font="default" size="100%">Weiterentwicklung des Klima- und Ressourceneffizienzpotentials durch HTC-Behandlung ausgewählter Berliner Klärschlämme - HTC-Berlin (11443UEPII/2)</style>internal-pdf://2438919938/Remy-2015-845.pdfKWB-documents_20191205.enlEndNote1199119927<style face="normal" font="default" size="100%">Grundstücksentwässerungsanlagen - Report Project acronym: GStEW</style>internal-pdf://3738032376/Uldack-2012-1199.pdfKWB-documents_20191205.enlEndNote1232123247<style face="normal" font="default" size="100%">Implementation of reliable early warning systems at European bathing waters using multivariate Bayesian regression modelling</style>KWB-documents_20191205.enlEndNote1051105117<style face="normal" font="default" size="100%">On the implementation of reliable early warning systems at European bathing waters using multivariate Bayesian regression modelling</style>
internal-pdf://0454065717/Seis-2018-1051.pdf
KWB-documents_20191205.enlEndNote1061106110<style face="normal" font="default" size="100%">Relevance of Different CSO Outlets for Bathing Water Quality in a River System</style>internal-pdf://4144312900/Riechel-2018-1061.pdfKWB-documents_20191205.enlEndNote23223227<style face="normal" font="default" size="11">Entwicklung eines Optimierungsmodells für die Abwasserverteilung in Berlin und Implementierung im algebraischen Modellierungssystem GAMS</style>internal-pdf://3891629614/Steinbach-2008-232.pdfKWB-documents_20191205.enlEndNote22922927<style face="normal" font="default" size="11">Umsetzung eines Entscheidungshilfesystems zur Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3231353587/Schroeder-2008-229.pdfKWB-documents_20191205.enlEndNote696947<style face="normal" font="default" size="100%">Implementation of a decision support system for global pump station control in Berlin</style>internal-pdf://2245104429/Schroeder-2007-69.pdfKWB-documents_20191205.enlEndNote23523517<style face="normal" font="default" size="11">Consideration of online rainfall measurement and nowcasting for RTC of the combined sewage system</style>
internal-pdf://Rouault et al_2007_Consideration of online rainfall measurement and now-1721221121/Rouault et al_2007_Consideration of online rainfall measurement and now casting for RTC of the combined sewage system_8p.pdfinternal-pdf://4225014070/Rouault-2008-235.pdf
KWB-documents_20191205.enlEndNote707047<style face="normal" font="default" size="100%">Consideration of online rainfall measurement and now casting for RTC of the combined sewage system</style>internal-pdf://4116877173/Rouault-2007-70.pdfKWB-documents_20191205.enlEndNote23123127<style face="normal" font="default" size="11">Bewertung des Potenzials von Online-Niederschlagsmessung und Niederschlagsvorhersage aus Radardaten bezüglich der Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3562245022/Rouault-2008-231.pdfKWB-documents_20191205.enlEndNote23023027<style face="normal" font="default" size="11">Analyse der zeitlich hochaufgelösten Niederschlagsdaten 2002 in Berlin</style>internal-pdf://1649118266/Reimer-2008-230.pdfKWB-documents_20191205.enlEndNote23723747<style face="normal" font="default" size="11">Räumlich und zeitlich hochaufgelöste Niederschlagsanalyse in Berlin als Randbedingung für die Abwasserförderung</style>KWB-documents_20191205.enlEndNote23623647<style face="normal" font="default" size="11">Analyse von Niederschlagsextremen zur Verbesserung der Steuerung der Abwasserförderung in Berlin</style>KWB-documents_20191205.enlEndNote23823847<style face="normal" font="default" size="11">State of Implementation of RTC in Berlin, Germany</style>internal-pdf://3317729629/Pawlowsky-Reusing-2007-238.pdfKWB-documents_20191205.enlEndNote31531517<style face="normal" font="default" size="10">Possibilities of sewer model simplifications</style>
internal-pdf://1969671722/Fischer-2009-315.pdf
KWB-documents_20191205.enlEndNote23423432<style face="normal" font="default" size="11">Modellbasierte Untersuchung zur Wirksamkeit einer Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://2639890921/Behrends-2008-234.pdfKWB-documents_20191205.enlEndNote23323327<style face="normal" font="default" size="11">Ermittlung prozessbestimmender / -begrenzender Parameter bei MW-Zufluss auf Kläranlagen. Prüfung der Übertragbarkeit auf die Kläranlagen Berlins</style>internal-pdf://2595261920/Barjenbruch-2008-233.pdfKWB-documents_20191205.enlEndNote9927<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries dans la rivière Erdre Travaux de recherche en laboratoire. Rapport final Janvier 2004</style>internal-pdf://0677181322/Pineau-2004-9.pdfKWB-documents_20191205.enlEndNote272747<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries et leurs toxines dans la rivière Erdre (France)</style>internal-pdf://1640605357/Luck-2004-27.pdfKWB-documents_20191205.enlEndNote32232227<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor</style>internal-pdf://0236221075/Stüber-2010-322.pdfKWB-documents_20191205.enlEndNote27427447<style face="normal" font="default" size="100%">Impact of two different excess sludge removal strategies on the performance of a membrane bioreactor system</style>internal-pdf://0451463934/Vocks-2007-274.pdfKWB-documents_20191205.enlEndNote525227<style face="normal" font="default" size="100%">Final Report 2005 Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://3589774885/Vocks-2005-52.pdfKWB-documents_20191205.enlEndNote535327<style face="normal" font="default" size="100%">Progress Report 2004 - Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://2267391021/Vocks-2004-53.pdfKWB-documents_20191205.enlEndNote27227232<style face="normal" font="default" size="100%">Extensive Biological Nutrients Removal in Membrane Bioreactors</style>internal-pdf://2925492348/Vocks-2008-272.pdfKWB-documents_20191205.enlEndNote27127132<style face="normal" font="default" size="100%">Auslegung und Optimierung eines Speichertanks für eine Membranbelebungsanlage</style>internal-pdf://2104393567/Villwock-2005-271.pdfKWB-documents_20191205.enlEndNote30530517<style face="normal" font="default" size="100%">Operation of MBR memebrane modules used in a decentralised wastewater treatment plant: Filed study and comparison of different cleaning strategies</style>
internal-pdf://0660130761/Stüber-2009-305.pdf
KWB-documents_20191205.enlEndNote30630647<style face="normal" font="default" size="100%">Operation of MBR membrane modules used in a decentralised wastewater treatment plant: Field study and comparison of different cleaning strategies</style>internal-pdf://1779333337/Stüber-2008-306.pdfKWB-documents_20191205.enlEndNote32032017<style face="normal" font="default" size="100%">Forschungsprojekt ENREM Kleinkläranlagen mit Membrantechnik</style>
internal-pdf://2395272505/Stüber-2009-320.pdf
KWB-documents_20191205.enlEndNote29829847<style face="normal" font="default" size="11">Investigations on enhanced denitrification capacities of the ENREM process scheme using a synthetic monosubstrate</style>internal-pdf://Johan Stüber - DMS - Krakau - Paper-1538346752/Johan Stüber - DMS - Krakau - Paper.docinternal-pdf://2964419312/Stüber-2009-298.pdfKWB-documents_20191205.enlEndNote30330332<style face="normal" font="default" size="100%">Wirtschaftliche Betrachtung semizentraler MBR-Anlagen in Abhängigkeit von den Reinigungszielen.</style>internal-pdf://2189104159/Schallehn-2009-303.pdfinternal-pdf://3841135709/Schallehn-2009-3031.pdfKWB-documents_20191205.enlEndNote26926932<style face="normal" font="default" size="100%">Nutzung zellinterner Speicherstoffe als Kohlenstoffquelle bei der nachgeschalteten Denitrifikation ohne Zugabe einer externen Kohlenstoffquelle</style>internal-pdf://2949152201/Nicke-2005-269.pdfKWB-documents_20191205.enlEndNote8827<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor (ENREM) - Progress report 1- LIFE 04 ENV/D/058</style>internal-pdf://3016138838/Luck-2005-8.pdfKWB-documents_20191205.enlEndNote26826847<style face="normal" font="default" size="100%">Evidences of unknown anaerobically cell intern stored carbon source used for enhanced post-denitrification</style>internal-pdf://1448771267/Lesjean-2008-268.pdfKWB-documents_20191205.enlEndNote686847<style face="normal" font="default" size="100%">Membrane bioreactor for semi-central sanitation with enhanced treatment performances</style>internal-pdf://1121487259/Lesjean-2005-68.pdfKWB-documents_20191205.enlEndNote505027<style face="normal" font="default" size="100%">Technical interim report 2006 - Enhanced Nutrients Removal in Membrane Bioreactor (ENREM)</style>internal-pdf://0541694339/Lesjean-2006-50.pdfKWB-documents_20191205.enlEndNote26626647<style face="normal" font="default" size="100%">Membrane Technique in a Freight Container for Advanced Nutrients Removal - The ENREM Demonstration Project</style>internal-pdf://1935247147/Gnirß-2008-266.pdfKWB-documents_20191205.enlEndNote565647<style face="normal" font="default" size="100%">Planung und Bau einer Membranbelebungsanlage für die semizentrale Erschließung eines Siedlungsgebietes in einem empfindlichen Gebiet</style>internal-pdf://1234280612/Gnirß-2005-56.pdfKWB-documents_20191205.enlEndNote26526547<style face="normal" font="default" size="100%">Design criteria for semi-central sanitation with low pressure network and membrane bioreactor – the ENREM project</style>internal-pdf://1676575058/Gnirß-2007-265.pdfKWB-documents_20191205.enlEndNote26426427<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor ENREM: Planning, construction and operation from January 2004 to June 2007</style>internal-pdf://3808919968/Gnirß-2007-264.pdfKWB-documents_20191205.enlEndNote575717<style face="normal" font="default" size="100%">Influence of unsteady membrane bioreactor operation on EPS formation and filtration resistance</style>
internal-pdf://0449289687/Drews-2006-57.pdf
KWB-documents_20191205.enlEndNote26226217<style face="normal" font="default" size="100%">Fouling in Membranbelebungsreaktoren: Erfahrungen beim Betrieb mit diskontinuierlichem Schlammabzug</style>
internal-pdf://2543354365/Drews-2005-262.pdf
KWB-documents_20191205.enlEndNote26126147<style face="normal" font="default" size="100%">Does fouling in MBR depend on SMP? </style>internal-pdf://0706988939/Drews-2007-261.pdfKWB-documents_20191205.enlEndNote26026017<style face="normal" font="default" size="100%">Impact of ambient conditions on SMP elimination and rejection in MBR</style>
internal-pdf://1192264267/Drews-2007-260.pdf
KWB-documents_20191205.enlEndNote30430417<style face="normal" font="default" size="100%">Filtration charaterization methods in MBR systems: A practical comparison</style>
internal-pdf://1077137000/de la Torre-2009-3041.pdf
KWB-documents_20191205.enlEndNote25825817<style face="normal" font="default" size="100%">Comparison of nutrient degradation in small scale membrane bioreactors fed with synthetic/domestic wastewater</style>
internal-pdf://3375071897/Bracklow-2007-258.pdf
KWB-documents_20191205.enlEndNote25725747<style face="normal" font="default" size="100%">Influence of sludge loadings and types of substrates on nutrients removal in MBRs</style>internal-pdf://Bracklow_Toulouse-0727839233/Bracklow_Toulouse.docKWB-documents_20191205.enlEndNote30230232<style face="normal" font="default" size="100%">Adaption eines neuartigen MBR-Prozesses auf Monosubstrat zur Untersuchung des mikrobiologischen Stoffwechsels mittels in-vivo C-MNR</style>internal-pdf://3041097431/Bost-2009-302.pdfinternal-pdf://3093919509/Bost-2009-3021.pdfKWB-documents_20191205.enlEndNote25625632<style face="normal" font="default" size="100%">Kohlenstoffmassenbilanz in der anaeroben Zone zur Überprüfung der Speicherstoffdynamik im ENREM-Prozess</style>internal-pdf://3512566488/Baumer-2006-256.pdfKWB-documents_20191205.enlEndNote64764727<style face="normal" font="default" size="100%">Eco-engineering systems for removal of micropollutants from WWTP effluents – existing knowledge</style>internal-pdf://1824214379/Wicke-2013-647.pdfKWB-documents_20191205.enlEndNote1204120432<style face="normal" font="default" size="100%">Assessment of direct greenhouse gas emissions from a pilot-scale aerobic granular sludge reactor treating domestic wastewater</style>KWB-documents_20191205.enlEndNote1114111417<style face="normal" font="default" size="100%">Effect of temperature on biogas yield increase and formation of refractory COD during thermal hydrolysis of waste activated sludge</style>internal-pdf://4236300079/Toutian-2020-1114.pdfKWB-documents_20191205.enlEndNote1198119832<style face="normal" font="default" size="100%">Inbetriebnahme und Bewertung einer SBR-Pilotanlage zur Behandlung von kommunalem Abwasser mittels granuliertem Belebtschlamm-Verfahren</style>KWB-documents_20191205.enlEndNote1125112517<style face="normal" font="default" size="100%">EU-Vorhaben Digital-Water.City: Digitale Tools für das Wassermanagement</style>KWB-documents_20191205.enlEndNote53853832<style face="normal" font="default" size="100%">Rapid Sand Filter Design - A Comparative study on Danish and German groundwater treatment. – Bachelor Thesis, , 114.</style>internal-pdf://4060889882/Jensen-2012-538.pdfKWB-documents_20191205.enlEndNote71271247<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen - Forschungsprogramm UEP II Berlin</style>internal-pdf://2891585415/Sommer-2014-712.pdfKWB-documents_20191205.enlEndNote71171117<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen</style>
internal-pdf://2102024956/Barjenbruch-2013-711.pdf
KWB-documents_20191205.enlEndNote82382327<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen (Abschlussbericht) Projektnr: 11315 UEPII/2</style>internal-pdf://3012305287/Barjenbruch-2016-823.pdfKWB-documents_20191205.enlEndNote1014101427<style face="normal" font="default" size="100%">Deliverable 1.4 Pretreatment requirements and design guidelines for SAT technologies - DEMOWARE </style>internal-pdf://1270820027/Zietzschmann-2017-1014.pdfKWB-documents_20191205.enlEndNote1034103427<style face="normal" font="default" size="100%">DEMOWARE D1.2: Report on opportunities for nutrient reduction and recycling in water reuse schemes</style>internal-pdf://1407230585/Van Houtte-2016-1034.pdfKWB-documents_20191205.enlEndNote1037103727<style face="normal" font="default" size="100%">Deliverable D6.5: Health and environmental risk management for the operation of the greenfield demo site</style>internal-pdf://2716312653/Seis-2016-1037.pdfKWB-documents_20191205.enlEndNote84384327<style face="normal" font="default" size="100%">Appropriate and user friendly methodologies for Risk assessment, Life Cycle Assessment, and Water Footprinting (D3.1)</style>internal-pdf://0973403531/Seis-2015-843.pdfKWB-documents_20191205.enlEndNote1208120817<style face="normal" font="default" size="100%">Risk management and environmental benefits of a prospective system for indirect potable reuse of municipal wastewater in France</style>
internal-pdf://3829176423/Remy-2019-1208.pdf
KWB-documents_20191205.enlEndNote75575532<style face="normal" font="default" size="100%">Comparison of UV Irradiation and Performic Acid Dosing for Agricultural Wastewater Reuse in Braunschweig</style>internal-pdf://1585398431/Reichelt-2015-755.pdfinternal-pdf://2293646154/DMS Ludwig Reichelt.docxKWB-documents_20191205.enlEndNote97497432<style face="normal" font="default" size="100%">Indirect Potable Reuse: A Risk Assessment for Vendée Eau</style>internal-pdf://3354434734/Pacheco Fernández-2016-974.pdfKWB-documents_20191205.enlEndNote85485417<style face="normal" font="default" size="100%">Vergleich von Desinfektionsverfahren für eine landwirtschaftliche Wasserwiederverwendung in Braunschweig</style>
internal-pdf://2415792366/Miehe-2015-854.pdf
KWB-documents_20191205.enlEndNote1036103627<style face="normal" font="default" size="100%">Deliverable D3.2: Show case of the environmental benefits and risk assessment of reuse schemes</style>internal-pdf://2421269347/Kraus-2016-1036.pdfKWB-documents_20191205.enlEndNote1035103527<style face="normal" font="default" size="100%">Deliverable D3.3: Generic assessment of treatment trains concerning their environmental impact and risk reduction potential</style>internal-pdf://3372000036/Kraus-2016-1035.pdfKWB-documents_20191205.enlEndNote75475432<style face="normal" font="default" size="100%">Vergleichende Untersuchungen zur Abwasserdesinfektion vor einer Nutzung als Bewässerungswasser</style>internal-pdf://3089700122/Graß-2015-754.pdfinternal-pdf://3259635079/DMS Florian Graß.docxKWB-documents_20191205.enlEndNote85385327<style face="normal" font="default" size="100%">Annual progress report on the implementation of water reuse in El Port de la Selva - 2015</style>internal-pdf://3993566817/Frigola-2015-853.pdfKWB-documents_20191205.enlEndNote1064106427<style face="normal" font="default" size="100%">Challenges and technological approaches for tackling emerging contaminants in drinking and wastewater</style>internal-pdf://1276093834/Stein-2018-1064.pdfKWB-documents_20191205.enlEndNote80580527<style face="normal" font="default" size="100%">Managing Aquifer Recharge - Subsurface treatment, storage and recovery</style>internal-pdf://2143154451/Sprenger-2015-805.pdfKWB-documents_20191205.enlEndNote86586517<style face="normal" font="default" size="100%">Inventory of Managed Aquifer Recharge sites in Europe – historical development, current situation and perspectives</style>
internal-pdf://3302492098/Sprenger-2017-865.pdf
KWB-documents_20191205.enlEndNote80680627<style face="normal" font="default" size="100%">Hydraulic characterisation of managed aquifer recharge sites by tracer techniques</style>internal-pdf://4017091132/Sprenger-2015-806.pdfKWB-documents_20191205.enlEndNote80780727<style face="normal" font="default" size="100%">Application of the Australian Guidelines for Water Recycling: Managing Health and Environmental Risks</style>internal-pdf://2926113496/Seis-2015-807.pdfKWB-documents_20191205.enlEndNote65065047<style face="normal" font="default" size="100%">Development of a European MAR catalogue</style>internal-pdf://0210908144/Scheibler-2013-650.pdfinternal-pdf://2486604654/Scheibler-2013-6501.pdfKWB-documents_20191205.enlEndNote95095027<style face="normal" font="default" size="100%">Catalogue of European MAR applications</style>internal-pdf://1573163476/Scheibler-2012-950.pdfKWB-documents_20191205.enlEndNote63763727<style face="normal" font="default" size="100%">Development of a Catalogue on European MAR Sites - Documentation</style>internal-pdf://2974534039/Scheibler-2012-637.pdfKWB-documents_20191205.enlEndNote82682627<style face="normal" font="default" size="100%">Final guidelines for sustainability assessment of water technologies (D51.2)</style>internal-pdf://0239019046/Remy-2015-826.pdfKWB-documents_20191205.enlEndNote91091027<style face="normal" font="default" size="100%">D12.2 Pre-requisites and design criteria for new MAR systems in compliance with EU WFD and GWD (including pre-treatment)</style>internal-pdf://1756582157/Huber-2015-910.pdfKWB-documents_20191205.enlEndNote73373327<style face="normal" font="default" size="100%">Characterization of European managed aquifer recharge (MAR) sites - Analysis</style>internal-pdf://3369859957/Hannappel-2014-733.pdfKWB-documents_20191205.enlEndNote91191127<style face="normal" font="default" size="100%">Unique selling propositions (D51.1)</style>internal-pdf://4200616595/Gross-2015-911.pdfKWB-documents_20191205.enlEndNote85185127<style face="normal" font="default" size="100%">Field investigations in Sant Vicenç dels Horts (Barcelona, Spain): MAR effects on groundwater resources</style>internal-pdf://3427990701/Gibert-2015-851.pdfKWB-documents_20191205.enlEndNote91591527<style face="normal" font="default" size="100%">Field investigations and risk assessment in La Vall d’Uixó (Castellón, Spain)</style>internal-pdf://1923965111/Gibert-2015-915.pdfKWB-documents_20191205.enlEndNote1067106717<style face="normal" font="default" size="100%">Sixty years of global progress in managed aquifer recharge</style>
internal-pdf://0616163992/Dillon-2018-1067.pdf
KWB-documents_20191205.enlEndNote91391327<style face="normal" font="default" size="100%">D11.2 Demonstration of MAR effects on groundwater resources – development and application of different approaches for risk and impact assessment</style>internal-pdf://2325174443/de la Loma Gonzalez-2015-913.pdfKWB-documents_20191205.enlEndNote66766732<style face="normal" font="default" size="100%">Optimierungspotentiale für die Schlammentwässerung durch verschiedene chemische Konditionierungsverfahren</style>internal-pdf://1611699569/Zhou-2013-667.pdfKWB-documents_20191205.enlEndNote63263247<style face="normal" font="default" size="100%">Nutzung von Überschusswärme zur Optimierung der Schlammentwässerung</style>KWB-documents_20191205.enlEndNote69969927<style face="normal" font="default" size="100%">Results of pilot-scale dewatering trials performed in Braunschweig Assessment of various operational factors on centrifugation performances (Project Decamax, Work Package 2)</style>internal-pdf://2405858640/Fülling-2014-699.pdfKWB-documents_20191205.enlEndNote29129127<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii und Cylindrospermopsin in Gewässern der Berliner Region Vorkommen, Ursachen, Auswirkungen</style>internal-pdf://1485731886/Wiedner-2005-291.pdfKWB-documents_20191205.enlEndNote29229227<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area: Occurrence, Causes and Consequences</style>internal-pdf://0977867557/Wiedner-2007-292.pdfKWB-documents_20191205.enlEndNote1681686<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area -Occurrence, Causes and Consequences (CYLIN)</style>internal-pdf://2124363951/Wiedner-2007-168.pdfKWB-documents_20191205.enlEndNote595917<style face="normal" font="default" size="100%">Seasonal dynamics of cylindrospermopsin and cyanobacteria in two German lakes</style>
internal-pdf://3561785350/Wiedner-2006-59.pdf
KWB-documents_20191205.enlEndNote1751755<style face="normal" font="default" size="100%">Tropische Cyanobakterien in Deutschen Gewässern: Ursachen und Konsequenzen</style>internal-pdf://Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen u-1006585856/Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen und Konsequenzen, 4p.pdfKWB-documents_20191205.enlEndNote656517<style face="normal" font="default" size="100%">Climate change affects timing and size of populations of an invasive cyanobacterium in temperate regions</style>
internal-pdf://1116967569/Wiedner-2007-65.pdf
KWB-documents_20191205.enlEndNote666647<style face="normal" font="default" size="100%">Germination of Cylindrospermopsis raciborskii and Aphanizomenon species under natural and experimental conditions</style>internal-pdf://1273140621/Tingwey-2006-66.pdfKWB-documents_20191205.enlEndNote646417<style face="normal" font="default" size="100%">Distribution of three alien cyanobacterial species (Nostocales) in northeast Germany: Cylindrospermopsis raciborskii, Anabaena bergii and Aphanizomenon aphanizomenoides</style>
internal-pdf://2415302170/Stüken-2006-64.pdf
KWB-documents_20191205.enlEndNote676717<style face="normal" font="default" size="100%">Phylogenetic characterisation of the three cyanobacteria species Anabaena bergii, Aphanizomenon ovalisporum and Aphanizomenon aphanizomenoides (order Nostocales)</style>
internal-pdf://1200526796/Stüken-2006-67.pdf
KWB-documents_20191205.enlEndNote585817<style face="normal" font="default" size="100%">Distribution and regulation of the originally tropical cyanobacterium Cylindrospermopsis raciborskii at its northern limits</style>internal-pdf://3739194984/Rücker-2006-58.pdfKWB-documents_20191205.enlEndNote626217<style face="normal" font="default" size="100%">Concentrations of particulate and dissolved cylindrospermopsin in 21 Aphanizomenon-dominated temperate lakes</style>
internal-pdf://4045443963/Rücker-2007-62.pdf
KWB-documents_20191205.enlEndNote616117<style face="normal" font="default" size="100%">First report on cylindrospermopsin producing Aphanizomenon flos-aquae (Cyanobacteria) isolated from two German lakes</style>
internal-pdf://3188891469/Preußel-2005-61.pdf
KWB-documents_20191205.enlEndNote636317<style face="normal" font="default" size="100%">Genetic characterisation of Cylindrospermopsis raciborskii (Nostocales, Cyanobacteria) isolates from Africa and Europe.</style>
internal-pdf://1482954071/Haande-2006-63.pdf
KWB-documents_20191205.enlEndNote606017<style face="normal" font="default" size="100%">Occurrence of the Cyanobacterial Toxin Cylindrospermopsin in Northeast Germany</style>
internal-pdf://4195718292/Fastner-2007-60.pdf
KWB-documents_20191205.enlEndNote72472427<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Technical report -</style>internal-pdf://2440752154/Thomas-2013-724.pdfKWB-documents_20191205.enlEndNote72572527<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Modeling Scenarios -</style>internal-pdf://4223856157/Thomas-2014-725.pdfKWB-documents_20191205.enlEndNote57357327<style face="normal" font="default" size="100%">Report on risk analysis, best practices and lessons learned from existing geothermal projects in Germany</style>internal-pdf://0972897382/Thomas-2013-573.pdfKWB-documents_20191205.enlEndNote65865832<style face="normal" font="default" size="100%">Geological CO2 storage and shale gas exploitation: Monitoring methods to be used for at the different project phases</style>internal-pdf://2683481555/Stevens-2013-658.pdfKWB-documents_20191205.enlEndNote51151127<style face="normal" font="default" size="100%">Geological CO2 Storage and other subsurface emerging activities: Catalogue of potential impacts on drinking water production</style>internal-pdf://1938115568/Seis-2013-511.pdfKWB-documents_20191205.enlEndNote73173127<style face="normal" font="default" size="100%">Geological CO2 Storage and Other Emerging Subsurface Activities – Countermeasures against risks arising from shale gas exploration</style>internal-pdf://2153183181/Schwarzmüller-2014-731.pdfKWB-documents_20191205.enlEndNote72672627<style face="normal" font="default" size="100%">Geological CO2 storage and other emerging subsurface activities - Best practice: monitoring strategy & methods for groundwater protection</style>internal-pdf://0265678973/Menz-2014-726.pdfKWB-documents_20191205.enlEndNote77177132<style face="normal" font="default" size="100%">Risk inventory for impacts of emerging subsurface activities on groundwater</style>internal-pdf://1085163934/Massat-2012-771.pdfKWB-documents_20191205.enlEndNote64964947<style face="normal" font="default" size="100%">Geogenic groundwater contamination – Definition, occurrence and relevance for drinking water production</style>
internal-pdf://3943533851/Grützmacher-2013-649.pdf
KWB-documents_20191205.enlEndNote1215121527<style face="normal" font="default" size="100%">Comparative study of small wastewater treatment technologies under special operation conditions COMPAS</style>internal-pdf://3862120563/Barjenbruch-2009-1215.pdfKWB-documents_20191205.enlEndNote38738727<style face="normal" font="default" size="100%">Untersuchung des Betriebsverhaltens von Kleinkläranlagen unter besonderen Betriebsbedingungen - Vergleichende Studie auf dem Testfeld des BDZ in Leipzig</style>internal-pdf://1652428170/Barjenbruch-2009-387.pdfKWB-documents_20191205.enlEndNote63163147<style face="normal" font="default" size="100%">Microbial Risk Assessment of the Water Reuse Scheme in Braunschweig based on WHO guidelines </style>internal-pdf://3676029140/Seis-2013-631.pdfKWB-documents_20191205.enlEndNote63063047<style face="normal" font="default" size="100%">Risk assessment of the wastewater reuse system of Braunschweig</style>internal-pdf://1560697257/Seis-2013-630.pdfKWB-documents_20191205.enlEndNote54854827<style face="normal" font="default" size="100%">Risk assessment auf Braunschweig wastewater reuse scheme</style>internal-pdf://2435596599/Seis-2012-548.pdfKWB-documents_20191205.enlEndNote46046032<style face="normal" font="default" size="11">Risk assessment of the wastewater-reuse strategy of Braunschweig concerning impacts on the environment and human health</style>internal-pdf://3582480467/Seis-2011-460.pdfKWB-documents_20191205.enlEndNote51451447<style face="normal" font="default" size="11">Ökobilanzielle Bewertung des Braunschweiger Modells der Abwasserwiederverwendung über Life Cycle Assessment</style>internal-pdf://1351742933/Remy-2012-514.pdfinternal-pdf://2482632212/Remy-2012-5141.pdfKWB-documents_20191205.enlEndNote51951917<style face="normal" font="default" size="100%">Identifying energy and carbon footprint optimization potentials of a sludge treatment line with Life Cycle Assessment</style>
internal-pdf://0035266857/Remy-2013-519.pdf
KWB-documents_20191205.enlEndNote46346347<style face="normal" font="default" size="100%">Sustainable sewage treatment plant of the future: Identifying global warming and energy optimization potentials with Life Cycle Assessment</style>internal-pdf://2789429503/Remy-2011-463.pdfinternal-pdf://2440450365/Remy-2011-4631.pdfKWB-documents_20191205.enlEndNote51551547<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0230639875/Remy-2012-515.pdfinternal-pdf://3553642818/Remy-2012-5151.pdfKWB-documents_20191205.enlEndNote46146147<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0725504395/Remy-2011-461.pdfinternal-pdf://0202920394/Remy-2011-4611.pdfKWB-documents_20191205.enlEndNote49049017<style face="normal" font="default" size="100%">Using the Life Cycle Assessment methodology for a comprehensive evaluation of energy demand in wastewater treament</style>internal-pdf://0247996791/Remy-2012-490.pdfKWB-documents_20191205.enlEndNote48048017<style face="normal" font="default" size="100%">Methodik der Ökobilanz zur ganzheitlichen Erfassung des Energieverbrauchs in der Abwasserreinigung</style>
internal-pdf://2553684421/Remy-2011-480.pdf
KWB-documents_20191205.enlEndNote55055027<style face="normal" font="default" size="100%">Optimierung der Energie- und Nährstoffrückgewinnung in der Abwasserbehandlung (Kurzfassung)</style>internal-pdf://1892696531/Remy-2012-550.pdfKWB-documents_20191205.enlEndNote54954927<style face="normal" font="default" size="100%">Optimisation of energy and nutrient recovery in wastewater treatment schemes (Executive Summary)</style>internal-pdf://2562933281/Remy-2012-549.pdfKWB-documents_20191205.enlEndNote52052047<style face="normal" font="default" size="11">Agricultural reuse of WWTP effluent and sludge: optimization + environmental footprint via LCA</style>internal-pdf://4050536848/Remy-2013-520.pdfKWB-documents_20191205.enlEndNote48348347<style face="normal" font="default" size="100%">Agricultural reuse of WWTP effluent and sludge: Results of CoDiGreen</style>internal-pdf://3637266894/Remy-2012-483.pdfKWB-documents_20191205.enlEndNote47647627<style face="normal" font="default" size="100%">LCA study of Braunschweig wastewater scheme: Final report of project CoDiGreen work package 2</style>internal-pdf://0553602407/Remy-2012-476.pdfKWB-documents_20191205.enlEndNote47547527<style face="normal" font="default" size="100%">LCA study of sludge treatment line in WWTP Berlin-Waßmannsdorf: Final report of project CoDiGreen work package 2</style>internal-pdf://0622611908/Remy-2012-475.pdfKWB-documents_20191205.enlEndNote48248247<style face="normal" font="default" size="100%">Life Cycle Assessment: Quantifying environmental impacts of urban water management</style>internal-pdf://2176929298/Remy-2010-482.pdfKWB-documents_20191205.enlEndNote55455427<style face="normal" font="default" size="100%">Report on pilot and full-scale trials performed in Braunschweig on codigestion and thermal hydrolysis - Workpackage 3</style>internal-pdf://1253458636/Klein-2012-554.pdfKWB-documents_20191205.enlEndNote1099109917<style face="normal" font="default" size="100%">Nährstoffrückgewinnung aus dem Abwasserstrom</style>
internal-pdf://3399851189/Kleyböcker-2019-1099.pdf
KWB-documents_20191205.enlEndNote69469447<style face="normal" font="default" size="100%">Integrating concepts for energy and resource recovery from municipal wastewater with LCA.</style>internal-pdf://3115070902/Remy-2014-694.pdfKWB-documents_20191205.enlEndNote70270217<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>internal-pdf://0629175243/Weigert-2014-702.pdfKWB-documents_20191205.enlEndNote56656647<style face="normal" font="default" size="100%">Novel wastewater process scheme for maximum COD extraction: high load MBBR followed by microsieve filtration</style>internal-pdf://4262215055/Schubert-2013-566.pdfinternal-pdf://3547479501/Schubert-2013-5661.pdfKWB-documents_20191205.enlEndNote1004100447<style face="normal" font="default" size="100%">Neue Wege in der Abwassertechnik: Großtechnische Erfahrungen mit dem CARISMO-Verfahren</style>internal-pdf://2743244686/Remy-2017-1004.pdfKWB-documents_20191205.enlEndNote75275247<style face="normal" font="default" size="100%">Evaluating new processes and concepts for energy and resource recovery from municipal wastewater with Life Cycle Assessment</style>internal-pdf://3418488118/Remy-2015-752.pdfinternal-pdf://0762261029/Remy-2015-7522.pdfinternal-pdf://1674086080/Remy-2015-7523.pdfKWB-documents_20191205.enlEndNote89489417<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>KWB-documents_20191205.enlEndNote75175147<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Innovative Abwasserbehandlung mit Energiegewinn</style>internal-pdf://3366820555/Remy-2015-751.pdfKWB-documents_20191205.enlEndNote93593517<style face="normal" font="default" size="100%">Proof of concept for a new energy-positive wastewater treatment scheme</style>
internal-pdf://1449230876/Remy-2014-935.pdf
KWB-documents_20191205.enlEndNote72172110<style face="normal" font="default" size="100%">Technischer Nachweis eines innovativen Konzepts für ein energie-positives Klärwerk</style>internal-pdf://2531780004/Remy-2014-721.pdfKWB-documents_20191205.enlEndNote60760747<style face="normal" font="default" size="100%">Ökobilanzen als Entscheidungshilfen bei der Planung von Klärprozessen</style>internal-pdf://3313186028/Remy-2013-607.pdfKWB-documents_20191205.enlEndNote70670647<style face="normal" font="default" size="100%">Proof of concept for an innovative energy-positive wastewater treatment scheme</style>internal-pdf://3518260074/Lesjean-2014-706.pdfKWB-documents_20191205.enlEndNote76076047<style face="normal" font="default" size="100%">Energiepositive Klärwerke: Innovationsprojekte am Kompetenzzentrum Wasser Berlin</style>internal-pdf://3192183244/Lesjean-2015-760.pdfKWB-documents_20191205.enlEndNote74974947<style face="normal" font="default" size="100%">Energiepositive Abwasserreinigung: Das CARISMO-Verfahren und seine Umsetzung in die Praxis</style>internal-pdf://2086079227/Lesjean-2015-749.pdfKWB-documents_20191205.enlEndNote94494410<style face="normal" font="default" size="100%">Proof of concept for an innovative energy positive wastewater treatment scheme</style>internal-pdf://1837468433/Lesjean-2014-944.pdfKWB-documents_20191205.enlEndNote71071047<style face="normal" font="default" size="100%">CARISMO project: From wastewater treatment plant to power plant</style>internal-pdf://1443619152/Lesjean-2014-710.pdfKWB-documents_20191205.enlEndNote1096109632<style face="normal" font="default" size="100%">Ressourcenschonende Abwasserbehandlung im ländlichen Raum - Prüfung der Rahmenbedingungen für die technische Umsetzbarkeit eines energieeffizienteren Behandlungskonzeptes</style>internal-pdf://2195152005/Herrmann-2016-1096.pdfKWB-documents_20191205.enlEndNote1097109732<style face="normal" font="default" size="100%">Vergleichende Bilanzierung von zwei SB-Reaktoren der Abwasserreinigung während der straßenweisen Umstellung auf eine erweiterte Vorklärung</style>internal-pdf://0820665524/Franke-2017-1097.pdfKWB-documents_20191205.enlEndNote65565527<style face="normal" font="default" size="100%">Recommendations for energy positive wastewater schemes. D 1.1 - Final project report</style>internal-pdf://3942124771/Boulestreau-2014-655.pdfKWB-documents_20191205.enlEndNote66966932<style face="normal" font="default" size="100%">Maximierung der CSB-Extraktion aus kommunalem Abwasser mit der Prozesskombination MBBR, Koagulation, Flockung und Filtration</style>internal-pdf://3478382186/Böhm-2014-669.pdfKWB-documents_20191205.enlEndNote17317327<style face="normal" font="default" size="100%">Kausale Zusammenhänge zwischen den Signalen einer optischen Multiparametersonde und Biofilmwachstum in wasserführenden Rohrnetzen - Erste Untersuchungen</style>internal-pdf://3521971630/Mittenzwey-2006-173.pdfKWB-documents_20191205.enlEndNote4427<style face="normal" font="default" size="100%">Berlinbeach - Erarbeitung eines Verfahrens zur Vermeidung von Einleitungen aus der Mischkanalisation in städtische Fließgewässer</style>internal-pdf://1038854647/Engel-2004-4.pdfKWB-documents_20191205.enlEndNote1197119732<style face="normal" font="default" size="100%">Bio-acidification and phosphorus-recovery potential from mixed excess and primary sludge in sewage treatment plants with biological and chemical phosphours removal.</style>KWB-documents_20191205.enlEndNote92392310<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://1310289891/Stapf-2014-923.pdfinternal-pdf://1412919517/Stapf-2014-9231.pdfKWB-documents_20191205.enlEndNote61661647<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://2510383502/Stapf-2014-616.pdfKWB-documents_20191205.enlEndNote61861847<style face="normal" font="default" size="100%">Comparison between two different filter systems as a post treatment of an ozonation to remove micropollutants</style>internal-pdf://2049651007/Stapf-2013-618.pdfinternal-pdf://0904845546/Stapf-2013-6181.pdfKWB-documents_20191205.enlEndNote61761747<style face="normal" font="default" size="100%">Managed Aquifer Recharge with Reclaimed Water –Optimization of Pre-treatment via Ozonation</style>internal-pdf://3223058735/Miehe-2013-617.pdfKWB-documents_20191205.enlEndNote44844832<style face="normal" font="default" size="100%">Ökobilanz und wirtschaftlicher Vergleich verschiedener Phosphoreliminationsverfahren in Kläranlagen</style>internal-pdf://2916863077/Meinel-2011-448.pdfKWB-documents_20191205.enlEndNote1221122147<style face="normal" font="default" size="100%">Kann die Kohle nachhaltig sein? – Einsatz von Aktivkohle zur Elimination von Spurenstoffen aus kommunalem Abwasser</style>KWB-documents_20191205.enlEndNote94794727<style face="normal" font="default" size="100%">Leitfaden: Polare organische Spurenstoffe als Indikatoren im anthropogen beeinflussten Wasserkreislauf</style>internal-pdf://3423964950/Bergmann-2013-947.pdfKWB-documents_20191205.enlEndNote76276217<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>
internal-pdf://3302723632/Wicke-2015-762.pdf
KWB-documents_20191205.enlEndNote68468447<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>internal-pdf://3008025654/Wicke-2014-684.pdfKWB-documents_20191205.enlEndNote68668627<style face="normal" font="default" size="100%">Pilot Sites for Mitigation of Diffuse Pollution in Ic Amont Catchment (Brittany)</style>internal-pdf://2013377592/Wicke-2014-686.pdfKWB-documents_20191205.enlEndNote38638647<style face="normal" font="default" size="100%">Near Natural Mitigation Zones for Agricultural Runoff Management to Protect Drinking Water Supplies: A French-German-US research collaboration.</style>internal-pdf://3366015902/Tedesco-2010-386.pdfKWB-documents_20191205.enlEndNote51351347<style face="normal" font="default" size="100%">Mitigation systems to attenuate diffuse agricultural pollution: location and design choice</style>internal-pdf://2569488487/Rouault-2012-513.pdfKWB-documents_20191205.enlEndNote43643647<style face="normal" font="default" size="100%">Implementation of small organically enriched constructed wetlands to mitigate agricultural nitrate hotspots in Brittany, France</style>internal-pdf://1931695162/Périllon-2011-436.pdfinternal-pdf://0382620792/Périllon-2011-4361.pdfKWB-documents_20191205.enlEndNote37637647<style face="normal" font="default" size="100%">Mitigation of diffuse agricultural pollution in Brittany (France): Pilot designs for constructed wetlands and bioretention swales</style><style face="normal" font="Times New Roman" size="100%"> </style>internal-pdf://3687446582/Périllon-2010-376.pdfKWB-documents_20191205.enlEndNote70170127<style face="normal" font="default" size="100%">Identification of existing mitigation systems that can attenuate nitrates during high flow events from drained, agricultural fields</style>internal-pdf://3075006591/Périllon-2010-701.pdfKWB-documents_20191205.enlEndNote43543517<style face="normal" font="default" size="100%">Development of a GIS method to localize critical source areas of diffuse nitrate pollution</style>
internal-pdf://1064827370/Orlikowski-2011-435.pdf
KWB-documents_20191205.enlEndNote37537547<style face="normal" font="default" size="100%">Development of a GIS Method to Localize Critical Source Areas of Diffuse Nitrate Pollution</style>internal-pdf://0047540310/Orlikowski-2010-375.pdfKWB-documents_20191205.enlEndNote31031017<style face="normal" font="default" size="100%">Naturnahe Pufferzonen als Gewässerschutzmodelle</style>
internal-pdf://1593122161/Matzinger-2009-310.pdf
KWB-documents_20191205.enlEndNote37437447<style face="normal" font="default" size="100%">Buffer system implementation with increased infiltration and nitrate retention capacity - A case study from Brittany, France</style>internal-pdf://0180381938/Matzinger-2010-374.pdfKWB-documents_20191205.enlEndNote63663617<style face="normal" font="default" size="100%">Concurrent nitrate and atrazine retention in bioreactors of straw and bark mulch at short hydraulic residence times</style>
internal-pdf://3967446471/Krause Camilo-2013-636.pdf
KWB-documents_20191205.enlEndNote1217121727<style face="normal" font="default" size="100%">Report on efficient design of mitigation zones for pesticide removal</style>internal-pdf://3829176422/Krause Camilo-2014-1217.pdfKWB-documents_20191205.enlEndNote33533527<style face="normal" font="default" size="100%">Properties of Atrazine and Bentazone</style>internal-pdf://0134574052/Krause-2010-335.pdfKWB-documents_20191205.enlEndNote71471427<style face="normal" font="default" size="100%">Efficiency of implemented mitigation systems to control diffuse pollution in agricultural landscapes</style>internal-pdf://1073015803/Jacinthe-2014-714.pdfKWB-documents_20191205.enlEndNote37737727<style face="normal" font="default" size="100%">GIS approach to localize critical source areas of diffuse nitrate pollution. Case study on the Ic catchment, France</style>internal-pdf://4153501532/Bugey-2010-377.pdfKWB-documents_20191205.enlEndNote69769727<style face="normal" font="default" size="100%">Final Report on the Implementation of a Wetland Module for the Soil and Water Assessment Tool (SWAT)</style>internal-pdf://3650491691/Breuer-2014-697.pdfKWB-documents_20191205.enlEndNote1159115947<style face="normal" font="default" size="100%">Investigations on glyphosate removal at the UBA experimental field site.</style>KWB-documents_20191205.enlEndNote1214121427<style face="normal" font="default" size="100%">Effectiveness of Riparian Zones in Contaminant Mitigation Project acronym: AQUISAFE 1</style>internal-pdf://1350490027/Vidon-2009-1214.pdfKWB-documents_20191205.enlEndNote19719727<style face="normal" font="default" size="11">Diffuse trace contaminants with relevance for drinking water production in rural and semi-rural areas</style>internal-pdf://3578049432/Tedesco-2009-197.pdfKWB-documents_20191205.enlEndNote19119147<style face="normal" font="default" size="11">Mitigation of contaminants in rural and semi-rural environments to protect surface water for drinking water supply - the Aquisafe-project</style>internal-pdf://3798447156/Strube-2007-191.pdfKWB-documents_20191205.enlEndNote19819827<style face="normal" font="default" size="11">Selection of a watershed model used to predict the effects of management decisions on water quality based on multi-criteria comparison</style>internal-pdf://4093095998/Strube-2009-198.pdfKWB-documents_20191205.enlEndNote20320327<style face="normal" font="default" size="11">The utility of agricultural constructed wetlands</style>internal-pdf://3120738444/Stouder-2009-203.pdfKWB-documents_20191205.enlEndNote1152115247<style face="normal" font="default" size="100%">The Effect of Hydraulic Retention Time and Flow Patch on Ntrate and Atrazine Attenuation in a Bioretention Swale</style>KWB-documents_20191205.enlEndNote19319347<style face="normal" font="default" size="11">Analysis of source water contamination in rural and semi-rural areas in Europe and United States</style>internal-pdf://0880785310/Morel-Fatio-2008-193.pdfKWB-documents_20191205.enlEndNote31631617<style face="normal" font="Courier New" size="10">Research Project Aquisafe: Mitigation of contaminants in rural and semi-rural environments to protect surface source water.</style>
internal-pdf://2774627524/Morel-Fatio-2008-316.pdf
KWB-documents_20191205.enlEndNote19219232<style face="normal" font="default" size="11">Analyse de la nature, de l’occurrence et des risques de contamination d’eau de surface par des pollutions diffuses en milieu rural et semi-rural en Europe</style>internal-pdf://4062164956/Morel-Fatio-2007-192.pdfKWB-documents_20191205.enlEndNote1155115547<style face="normal" font="default" size="100%">Reduction of non-point source pollution in surface waters – presentation of semi-natural methods with case studies from France and the USA.</style>KWB-documents_20191205.enlEndNote19619617<style face="normal" font="default" size="11">Naturnahe Puffer gegen diffuse Verschmutzung</style>
internal-pdf://2668869690/Matzinger-2009-196.pdf
KWB-documents_20191205.enlEndNote1153115347<style face="normal" font="default" size="100%">Zones tampons pour prévenir la pollution diffuse en milieu rural et semi-rural – présentation du projet “Aquisafe“.</style>KWB-documents_20191205.enlEndNote19519547<style face="normal" font="default" size="11">Diffuse pollution and potential mitigation strategies - two case studies within the Aquisafe Project from agriculturally dominated Brittany (France)</style>internal-pdf://4081758504/Matzinger-2008-195.pdfKWB-documents_20191205.enlEndNote19419447<style face="normal" font="default" size="11">Assessing the effectiveness of a constructed wetland for water quality mitigation in Brittany (France) - A case study within the Aquisafe project</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://2368778614/Matzinger-2008-194.pdfKWB-documents_20191205.enlEndNote20420427<style face="normal" font="default" size="11">Retention of agricultural diffuse pollution through constructed wetlands - A case study in Iffendic (France)</style>internal-pdf://2487333300/Mangeot-2009-204.pdfKWB-documents_20191205.enlEndNote1158115832<style face="normal" font="default" size="100%">Effect of constructed wetlands in retention of agricultural diffuse pollution – two case studies in Brittany (France)</style>KWB-documents_20191205.enlEndNote42042017<style face="normal" font="default" size="100%">Comparative studies on the retardation and reduction of glyphosate during subsurface passage</style>
internal-pdf://1434589844/Litz-2011-420.pdf
KWB-documents_20191205.enlEndNote23923947<style face="normal" font="default" size="11">International Review of Rainwater Harvesting Management: Practices, Market and Current Developments</style>internal-pdf://3889190242/Lesjean-2009-239.pdfKWB-documents_20191205.enlEndNote20020027<style face="normal" font="default" size="11">Hydrological and nitrate modelling for the River Ic in Brittany (France) - Simulation results and pre-liminary scenario analysis</style>internal-pdf://1555804674/Julich-2009-200.pdfKWB-documents_20191205.enlEndNote20520547<style face="normal" font="default" size="11">Management scenarios for reduced nitrate loads in a small catchment in Brittany (France) - the problem of data scarcity and the resulting predictive uncertainty</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://0986019153/Julich-2009-205.pdfKWB-documents_20191205.enlEndNote1157115747<style face="normal" font="default" size="100%">Vegetation effects on nitrogen and carbon cycling in slow sand filters. </style>KWB-documents_20191205.enlEndNote20120127<style face="normal" font="default" size="11">Effects of vegetation and glyphosate on denitrification in constructed wetlands - Feasibility test of technical scale simulation</style>internal-pdf://0669233744/Jacinthe-2009-201.pdfKWB-documents_20191205.enlEndNote47747717<style face="normal" font="default" size="100%">Potentiale für den Einsatz von Nährstoff-Filtersystemen in Deutschland zur Verringerung der Nährstoffeinträge in Oberflächengewässer</style>
internal-pdf://3601015471/Holsten-2012-477.pdf
KWB-documents_20191205.enlEndNote1156115647<style face="normal" font="default" size="100%">Assessment of risks to surface water from diffuse contaminants. </style>KWB-documents_20191205.enlEndNote1150115047<style face="normal" font="default" size="100%">Prévention de la contamination des ressources en eau en milieu rural et semi-rural par les zones tampons. Poster presentation</style>KWB-documents_20191205.enlEndNote1154115432<style face="normal" font="default" size="100%">Development of a GIS Method to Localize Critical Source Areas of Diffuse Nitrate Pollution – Application to the Ic Catchment, France.</style>KWB-documents_20191205.enlEndNote19919927<style face="normal" font="default" size="11">Methods for the assessment of diffuse nutrient pollution in rural catchments</style>internal-pdf://0931377916/Bugey-2009-199.pdfKWB-documents_20191205.enlEndNote1151115117<style face="normal" font="default" size="100%">Spatial Identification and Optimization of Upland Wetlands in Agricultural Watersheds</style>KWB-documents_20191205.enlEndNote1130113027<style face="normal" font="default" size="100%">Combining constructed wetlands and engineered treatment for water reuse, report WP3, Deliverable D3.1.</style>internal-pdf://2678269638/Wicke-2019-1130.pdfKWB-documents_20191205.enlEndNote1017101732<style face="normal" font="default" size="100%">Untersuchungen der Leistungsfähigkeit von bepflanzten Vertikalbodenfiltern zur Elimination von Spurenstoffen nach der Ozonung im Vergleich zu Sandfiltern</style>internal-pdf://0320872840/Weidlich-2017-1017.pdfKWB-documents_20191205.enlEndNote1203120332<style face="normal" font="default" size="100%">Performance evaluation of constructed wetlands combined with engineered systems for water reuse</style>KWB-documents_20191205.enlEndNote1234123447<style face="normal" font="default" size="100%">Rolling literature review on pathogen reduction by water treatment processes</style>KWB-documents_20191205.enlEndNote1074107432<style face="normal" font="default" size="100%">Optimierung der chemischen Reinigung einer kapillaren Nanofiltration im Pilotmaßstab zur Aufbereitung von anoxischem Grundwasser</style>internal-pdf://0639249289/Rohde-2018-1074.pdfKWB-documents_20191205.enlEndNote1228122847<style face="normal" font="default" size="100%">Compliance of combined nature-based and engineered systems with European water reuse regulations</style>KWB-documents_20191205.enlEndNote1225122547<style face="normal" font="default" size="100%">Kapillare Nanofiltration zur Behandlung von anoxischem Grundwasser und Uferfiltrat</style>KWB-documents_20191205.enlEndNote1073107317<style face="normal" font="default" size="100%">Capillary Nanofiltration under Anoxic Conditions as Post-Treatment after Bank Filtration</style>
internal-pdf://0024734634/Jährig-2018-1073.pdf
KWB-documents_20191205.enlEndNote1072107247<style face="normal" font="default" size="100%">Capillary nanofiltration under anoxic conditions as post-treatment after bank filtration – improvement of chemical cleaning and removal of sulphate and organic micropollutants</style>internal-pdf://2517938294/Jährig-2018-1072.pdfKWB-documents_20191205.enlEndNote1042104232<style face="normal" font="default" size="100%">Betriebsverhalten einer kapillaren Nanofiltration zur Sulfatentfernung in der Trinkwasseraufbereitung</style>internal-pdf://3929449002/Hoff-2017-1042.pdfKWB-documents_20191205.enlEndNote1202120232<style face="normal" font="default" size="100%">Kapillare Nanofiltration im Pilotmaßstab zur Aufbereitung von Wasser unterschiedlicher Qualitäten – Untersuchungen hinsichtlich Rückhalt, Reinigungsstrategien, Energieverbrauch und Reinigungskosten</style>KWB-documents_20191205.enlEndNote1196119632<style face="normal" font="default" size="100%">Einsatz von Bodenfiltern zur biologischen Nachbehandlung ozonierten Abwassers</style>KWB-documents_20191205.enlEndNote95595547<style face="normal" font="default" size="100%">Mikrobielle Verockerung in Trinkwasserbrunnen, im Rohrnetz und an Pumpen - Entwicklung und Bewertung von betrieblichen Gegenmaßnahmen</style>KWB-documents_20191205.enlEndNote77477427<style face="normal" font="default" size="100%">Schlussbericht Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5 "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://4256193931/Schwarzmüller-2014-774.pdfKWB-documents_20191205.enlEndNote69169127<style face="normal" font="default" size="100%">Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5: "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://2033853606/Schwarzmüller-2014-691.pdfinternal-pdf://3261290844/Schwarzmüller-2014-6911.pdfKWB-documents_20191205.enlEndNote97797717<style face="normal" font="default" size="100%">Einfluss von Standortfaktoren auf die Brunnenalterung: Klassifizierung der Berliner Trinkwasserbrunnen und Quantifizierung ihres Alterungspotentials</style>
KWB-documents_20191205.enlEndNote71671617<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 1: Probenahme aus dem Filterbereich eines Trinkwasserbrunnens mit neuartigem Unterwasserkamera- und Probenahme-System</style>
internal-pdf://1494341349/Schwarzmüller-2014-716.pdf
KWB-documents_20191205.enlEndNote73073047<style face="normal" font="default" size="100%">Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen</style>KWB-documents_20191205.enlEndNote53453447<style face="normal" font="default" size="100%">A new look on old data: Usability of continuously measured discharge rates to monitor the ageing of drinking water abstraction wells.</style>internal-pdf://3141158095/Schwarzmüller-2012-534.pdfKWB-documents_20191205.enlEndNote71771717<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 2: Molekularbiologische und mikrobiologische Untersuchungen von Ockerproben</style>
internal-pdf://3553024466/Schröder-2014-717.pdf
KWB-documents_20191205.enlEndNote56356332<style face="normal" font="default" size="100%">Aufbau einer MS-Access-Datenbank zur Versuchsdokumentation</style>internal-pdf://3079553647/Linge-2012-563.pdfKWB-documents_20191205.enlEndNote39339347<style face="normal" font="default" size="100%">Ten persistent myths and the realities of the MBR technology for municipal applications</style>internal-pdf://0662398641/Lesjean-2010-393.pdfKWB-documents_20191205.enlEndNote494927<style face="normal" font="default" size="100%">Project AMEDEUS “Accelerate membrane development for urban sewage purification" Yearly project activity report n°1 period 0ct 05-sept 06 </style>internal-pdf://2581371096/Lesjean-2006-49.pdfKWB-documents_20191205.enlEndNote545417<style face="normal" font="default" size="100%">MBR: Technology gets timely EU cash boost</style>
internal-pdf://1943574837/Lesjean-2006-54.pdf
KWB-documents_20191205.enlEndNote1216121627<style face="normal" font="default" size="100%">PROJECT AMEDEUS “ACCELERATE MEMBRANE DEVELOPMENT FOR URBAN SEWAGE PURIFICATION” FINAL ACTIVITY REPORT</style>internal-pdf://3797244140/Lesjean-2010-1216.pdfKWB-documents_20191205.enlEndNote33433427<style face="normal" font="default" size="100%">Project AMEDEUS Accelerate Membrane Development for Urban Sewage Purification - Final Activity Report</style>internal-pdf://3321524103/Lesjean-2010-334.pdfKWB-documents_20191205.enlEndNote39739717<style face="normal" font="default" size="100%">Performances and fouling control of a flat sheet membrane in a MBR pilot plant</style>
internal-pdf://2486967119/Grélot-2010-397.pdf
KWB-documents_20191205.enlEndNote39639617<style face="normal" font="default" size="100%">Activated sludge model based modelling of membrane bioreactor (MBR) processes: A critical review with special regard to MBR specifities</style>
internal-pdf://0143482783/Fenu-2010-396.pdf
KWB-documents_20191205.enlEndNote77677627<style face="normal" font="default" size="100%">Abschlussbericht Projekt Abluft „Vorversuche zur Abluftbehandlung auf der Kläranlage Schönerlinde“</style>internal-pdf://2497735255/Schubert-2014-776.pdfKWB-documents_20191205.enlEndNote1211121117<style face="normal" font="default" size="100%">Systematic Review of Toxicity Removal by Advanced Wastewater Treatment Technologies via Ozonation and Activated Carbon</style>
KWB-documents_20191205.enlEndNote1236123647<style face="normal" font="default" size="100%">Extensive Green Roof Performance and Design under Different Climatic Conditions-Analyses from China and Germany</style>KWB-documents_20191205.enlEndNote1145114517<style face="normal" font="default" size="100%">Combining Ozonation and ceramic membrane filtration for tertiary treatment</style>
KWB-documents_20191205.enlEndNote1144114417<style face="normal" font="default" size="100%">Large-scale bioreactor pilots for monitoring the long-term hydromechanics of MSW</style>KWB-documents_20191205.enlEndNote1206120632<style face="normal" font="default" size="100%">Kalibrierung eines Schmutzfrachtmodells mit InfoWorks CS - Sensitivitätsanalyse und Kalibrierung</style>KWB-documents_20191205.enlEndNote1233123347<style face="normal" font="default" size="100%">Improvement of probabilistic QMRA by quantitative integration of external information using Bayesian hierarchical modelling</style>KWB-documents_20191205.enlEndNote1210121017<style face="normal" font="default" size="100%">Entwicklung eines Frühwarnsystems für die Berliner Unterhavel</style>KWB-documents_20191205.enlEndNote1032103227<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser - Projekt: Wasserwiederverwendung</style>internal-pdf://0464199320/Schwarzmüller-2017-1032.pdfKWB-documents_20191205.enlEndNote1192119247<style face="normal" font="default" size="100%">Einfluss von Standortfaktoren auf die Brunnenalterung: Klassifizierung der Berliner Brunnen und Quantifizierung ihres Alterungspotentials</style>KWB-documents_20191205.enlEndNote1175117547<style face="normal" font="default" size="100%">Submicron particle analysis to characterize fouling in tertiary membrane filtration</style>KWB-documents_20191205.enlEndNote1183118347<style face="normal" font="default" size="100%">The evaluation of rainfall influence on CSO characteristics: the Berlin case study</style>KWB-documents_20191205.enlEndNote1191119147<style face="normal" font="default" size="100%">Wrap your model in an R package! </style>internal-pdf://3829176425/Rustler-2016-1191.pdfKWB-documents_20191205.enlEndNote116311635<style face="normal" font="default" size="100%">Verschmutzung von Regenwasser und Mischwasser</style>KWB-documents_20191205.enlEndNote1174117447<style face="normal" font="default" size="100%">Untersuchung der Auswirkungen von Mischwasserüberläufen auf ein Fließgewässer am Beispiel der Spree</style>KWB-documents_20191205.enlEndNote70970947<style face="normal" font="default" size="100%">OptiValves: Enhanced network performance and reduced maintenance cost</style>internal-pdf://3229441596/Rouault-2014-709.pdfKWB-documents_20191205.enlEndNote1231123147<style face="normal" font="default" size="100%">Gebührenstabilität durch Asset Management?</style>KWB-documents_20191205.enlEndNote1209120917<style face="normal" font="default" size="100%">Neues Frühwarnsystem zur Belastung von Badestellen</style>KWB-documents_20191205.enlEndNote1134113447<style face="normal" font="default" size="100%">Unterstützung der Kanalsanierungsplanung durch statistische und datengetriebene Alterungsmodelle</style>KWB-documents_20191205.enlEndNote1230123047<style face="normal" font="default" size="100%">Handling biased and incomplete sewer asset data for deterioration modelling</style>KWB-documents_20191205.enlEndNote100610065<style face="normal" font="default" size="100%">Assessing environmental impacts and benefits of wastewater treatment plants</style>KWB-documents_20191205.enlEndNote1189118947<style face="normal" font="default" size="100%">Total environmental profile of processes for P recovery from sewage sludge, liquor or ash with LCA</style>KWB-documents_20191205.enlEndNote1173117347<style face="normal" font="default" size="100%">Energetic comparison of advanced oxidation processes</style>KWB-documents_20191205.enlEndNote93893817<style face="normal" font="default" size="100%">Bedeutung oxidativer Prozesse in der Trinkwasseraufbereitung und Abwasserreinigung</style>
internal-pdf://1438483705/Prasse-2014-938.pdf
KWB-documents_20191205.enlEndNote1205120532<style face="normal" font="default" size="100%">Beurteilung von Managementmaßnahmen am Berliner Halensee</style>KWB-documents_20191205.enlEndNote1187118747<style face="normal" font="default" size="100%">EU project DEMEAU (2012-2015) Demonstration of promising technologies to address emerging pollutants in water and wastewater, Work area 5: Fostering the uptake of novel technologies in the water sector</style>KWB-documents_20191205.enlEndNote1188118847<style face="normal" font="default" size="100%">Ist eine weitergehende Stickstoffentfernung in die Gewässer ökonomisch sinnvoll?</style>KWB-documents_20191205.enlEndNote51251217<style face="normal" font="default" size="100%">Hypolimnetic Oxygen Depletion in Eutrophic Lakes</style>
internal-pdf://0640995138/Müller-2012-512.pdf
KWB-documents_20191205.enlEndNote1033103327<style face="normal" font="default" size="100%">Zeitreihenanalyse zur Beeinflussung des Teufelsseemoores durch die Grundwasserentnahme - Projekt: Rahmenvertrag WV-GRW</style>internal-pdf://2675449574/Menz-2017-1033.pdfKWB-documents_20191205.enlEndNote97597532<style face="normal" font="default" size="100%">Oxygen delivering processes in groundwater and their relevance for iron-related well clogging processes - A case study on the quaternary aquifers of Berlin</style>internal-pdf://1450158864/Menz-2016-975.pdfKWB-documents_20191205.enlEndNote1143114317<style face="normal" font="default" size="100%">Modellbasiertes Werkzeug - immissionsbasierte Maßnahmenplanung im Berliner Mischwassersystem</style>
KWB-documents_20191205.enlEndNote1142114217<style face="normal" font="default" size="100%">Impact-based management of combined sewer overflows – Introduction to a flexible planning instrument</style>
KWB-documents_20191205.enlEndNote37837817<style face="normal" font="default" size="100%">Hypolimnetic oxygen consumption by sediment-based reduced substances in former eutrophic lakes</style>
internal-pdf://3545615539/Matzinger-2010-378.pdf
KWB-documents_20191205.enlEndNote1140114017<style face="normal" font="default" size="100%">Trinkwassergewinnung in urbanen Räumen - Erkenntnisse zur Uferfiltration in Berlin</style>
KWB-documents_20191205.enlEndNote1172117247<style face="normal" font="default" size="100%">Operational experience of containerised sequencing batch MBR plant for semi-decentralised areas reaching high effluent requirements</style>KWB-documents_20191205.enlEndNote70870847<style face="normal" font="default" size="100%">The WellGrapher tool: Connecting land use to well-field water quality</style>internal-pdf://4078613622/Lesjean-2014-708.pdfKWB-documents_20191205.enlEndNote1166116647<style face="normal" font="default" size="100%">Water and Energy nexus as potential industrial breakthrough</style>KWB-documents_20191205.enlEndNote70470447<style face="normal" font="default" size="100%">The experience and ambition of KWB in Watershare®</style>internal-pdf://0765190261/Lesjean-2014-704.pdfKWB-documents_20191205.enlEndNote70370347<style face="normal" font="default" size="100%">Impulses on resource and energy efficient concepts for municipal wastewater treatment plants: the ‘resource / energy’ nexus</style>internal-pdf://2911339867/Lesjean-2014-703.pdfKWB-documents_20191205.enlEndNote1171117147<style face="normal" font="default" size="100%">Market prospects of low pressure membrane filtration systems for wastewater treatment</style>KWB-documents_20191205.enlEndNote1165116547<style face="normal" font="default" size="100%">Market prospects of low pressure membrane filtration systems for water purification</style>KWB-documents_20191205.enlEndNote116411645<style face="normal" font="default" size="100%">Review of promising Methods for Phosphorus Recovery and Recycling from Wastewater</style>KWB-documents_20191205.enlEndNote1190119047<style face="normal" font="default" size="100%">Circular economy - challenges and opportunities for phosphorus recycling</style>KWB-documents_20191205.enlEndNote1161116117<style face="normal" font="default" size="100%">Nutrient recovery 2.0</style>
KWB-documents_20191205.enlEndNote1160116017<style face="normal" font="default" size="100%">Launch of European initiative to share experiences of struvite-based wastewater phosphate recovery</style>
KWB-documents_20191205.enlEndNote83883817<style face="normal" font="default" size="100%">Nutrient Recovery Developments</style>KWB-documents_20191205.enlEndNote1207120717<style face="normal" font="default" size="100%">Prediction of fecal indicator organism concentrations in rivers: the shifting role of environmental factors under varying flow conditions</style>
internal-pdf://3829176424/Herrig-2019-1207.pdfinternal-pdf://0719885386/Herrig-2019-12071.pdf
KWB-documents_20191205.enlEndNote1194119410<style face="normal" font="default" size="100%">Optimizing SVM Model as Predicting Model for Sewer Pipes in the Two Main Cities in Colombia</style>KWB-documents_20191205.enlEndNote1162116217<style face="normal" font="default" size="100%">Support tools to predict the critical structural condition of uninspected pipes for case studies of Germany and Colombia</style>
KWB-documents_20191205.enlEndNote63363347<style face="normal" font="default" size="100%">Case Study Braunschweig – 100 Years Practical Experience in Water Reuse</style>internal-pdf://0719131807/00_120202_.pptKWB-documents_20191205.enlEndNote1170117047<style face="normal" font="default" size="100%">Zustandserfassung von Kanalnetzen</style>KWB-documents_20191205.enlEndNote1169116947<style face="normal" font="default" size="100%">Driving factors for water research – from local to global</style>KWB-documents_20191205.enlEndNote31431417<style face="normal" font="default" size="100%">Microcystin Elimination during Sediment Contact.</style>
internal-pdf://3566063005/Grützmacher-2010-314.pdfinternal-pdf://1261686236/Grützmacher-2010-3141.pdf
KWB-documents_20191205.enlEndNote45745717<style face="normal" font="default" size="100%">Abbau von Stoffspuren in natürlichen und künstlichen Systemen der Infiltration von Wasser</style>
internal-pdf://2735925201/Grützmacher-2011-457.pdf
KWB-documents_20191205.enlEndNote1224122447<style face="normal" font="default" size="100%">Neue Prognose-Instrumente zur Vorhersage der Hygiene von Badegewässern</style>KWB-documents_20191205.enlEndNote75375317<style face="normal" font="default" size="100%">Challenges and opportunities of German-Chinese cooperation in water science and technology</style>
internal-pdf://2120482927/Chen-2015-753.pdf
KWB-documents_20191205.enlEndNote1186118647<style face="normal" font="default" size="100%">Wie zuverlässig sind Kanalalterungsmodelle</style>KWB-documents_20191205.enlEndNote1184118447<style face="normal" font="default" size="100%">Influence of local calibration on the quality of on-line wet weather discharge monitoring: feedback from five international case studies.</style>KWB-documents_20191205.enlEndNote1182118247<style face="normal" font="default" size="100%">The influence of local calibration on the quality of UV-VIS spectrometer measurements in urban stormwater monitoring</style>KWB-documents_20191205.enlEndNote1222122247<style face="normal" font="default" size="100%">How can condition assessment uncertainty impact sewer deterioration modelling? </style>KWB-documents_20191205.enlEndNote1193119347<style face="normal" font="default" size="100%">From CCTV data to strategic planning: deterioration modelling for large sewer networks in Germany and Colombia</style>KWB-documents_20191205.enlEndNote1110111032<style face="normal" font="default" size="100%">The use of deterioration modelling to simulate sewer asset management strategies</style>internal-pdf://3136552709/Caradot-2019-1110.pdfKWB-documents_20191205.enlEndNote1185118547<style face="normal" font="default" size="100%">What is the reliability of sewer deterioration models?</style>KWB-documents_20191205.enlEndNote1167116747<style face="normal" font="default" size="100%">Submicron particle analysis to characterize fouling in tertiary membrane filtration</style>KWB-documents_20191205.enlEndNote1168116847<style face="normal" font="default" size="100%">Online analysis of the nanoparticles to prevent membrane fouling by a secondary effluent</style>KWB-documents_20191205.enlEndNote3133136<style face="normal" font="default" size="100%">Climate Change and Water - Technical Paper of the Intergovernmental Panel on Climate Change</style>internal-pdf://0789762170/Bates-2008-313.pdfKWB-documents_20191205.enlEndNote91991917<style face="normal" font="default" size="100%">How to dose powdered activated carbon in deep bed filtration for efficient micropollutant removal</style>
\ No newline at end of file diff --git a/inst/extdata/2020-05-25_KWB-documents.xml b/inst/extdata/2020-05-25_KWB-documents.xml new file mode 100644 index 0000000..2fd5d34 --- /dev/null +++ b/inst/extdata/2020-05-25_KWB-documents.xml @@ -0,0 +1 @@ +KWB-documents_20191205.enlEndNote1046104627<style face="normal" font="default" size="100%">NITROLIMIT - Stickstofflimitation in Binnengewässern: Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar? Abschlussbericht des BMBF‐Verbundprojekts NITROLIMIT II</style>internal-pdf://3618911338/2016-1046.pdfKWB-documents_20191205.enlEndNote727217<style face="normal" font="default" size="100%">Membranbelebungsverfahren mit vermehrter biologischer Phosphorelimination (EBPR)</style>
internal-pdf://3152784019/Adam-2003-72.pdf
KWB-documents_20191205.enlEndNote95495427<style face="normal" font="default" size="100%">Preliminary models and system design</style>internal-pdf://0231773736/Adlakha-2012-954.pdfKWB-documents_20191205.enlEndNote95395327<style face="normal" font="default" size="100%">Database of baseline data for study sites</style>internal-pdf://2014418176/Adlakha-2012-953.pdfKWB-documents_20191205.enlEndNote73873827<style face="normal" font="default" size="100%">Database of baseline data for study sites - Deliverable 5.1</style>internal-pdf://0144574779/Adlakha-2012-738.pdfKWB-documents_20191205.enlEndNote55355327<style face="normal" font="default" size="100%">Preliminary models and system design. Deliverable 5.2</style>internal-pdf://0865615933/Adlakha-2012-553.pdfKWB-documents_20191205.enlEndNote55155127<style face="normal" font="default" size="100%">Database of relevant pollutants in urban areas and their attenuation at RBF sites. Deliverable 1.1</style>internal-pdf://0947208175/Adlakha-2012-551.pdfKWB-documents_20191205.enlEndNote95295227<style face="normal" font="default" size="100%">Report on existing MAR practice and experience in India, especially in Chennai, Maheshwaram, Raipur</style>internal-pdf://3937375269/Ahmed-2012-952.pdfKWB-documents_20191205.enlEndNote92092032<style face="normal" font="default" size="100%">Simulating Different Strategies of Storage Capacity Increase to Reduce Combined Sewer Overflows and Flooding</style>internal-pdf://2777573414/Alem-2015-920.pdfKWB-documents_20191205.enlEndNote91991917<style face="normal" font="default" size="100%">How to dose powdered activated carbon in deep bed filtration for efficient micropollutant removal</style>
KWB-documents_20191205.enlEndNote1241124127<style face="normal" font="default" size="100%">Blau-grün-graue Infrastrukturen vernetzt planen und umsetzen. Ein Beitrag zur Klimaanpassung in Kommunen</style>internal-pdf://3494418066/Anterola-2020-1241.pdfKWB-documents_20191205.enlEndNote1151115117<style face="normal" font="default" size="100%">Spatial Identification and Optimization of Upland Wetlands in Agricultural Watersheds</style>KWB-documents_20191205.enlEndNote434327<style face="normal" font="default" size="100%">Pilotuntersuchungen zur kombinierten oxidativ-biologischen Behandlung von Klärwerksabläufen für die Entfernung von organischen Spuren- und Wirkstoffen und zur Desinfektion</style>internal-pdf://3229062385/Bahr-2007-43.pdfKWB-documents_20191205.enlEndNote32732747<style face="normal" font="default" size="100%">Pilot scale ozonation of treated municipal effluent for removal of pharmaceutical compopunds and pathogens</style>internal-pdf://4009194053/Bahr-2005-327.pdfKWB-documents_20191205.enlEndNote32832847<style face="normal" font="default" size="100%">UVA as control parameter for the effective ozonation of organic poolutants in secondary effluent</style>internal-pdf://2894623223/Bahr-2006-328.pdfKWB-documents_20191205.enlEndNote38138117<style face="normal" font="default" size="100%">First report of anatoxin-a-producing cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon issatschenkoi</style><style face="normal" font="default" size="100%"> in northeastern Germany</style>
internal-pdf://2582211254/Ballot-2010-381.pdf
KWB-documents_20191205.enlEndNote38238217<style face="normal" font="default" size="100%">Paralytic Shellfish Poisoning Toxin-Producing Cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon gracile </style><style face="normal" font="default" size="100%">in Northeast Germany</style>
internal-pdf://0376531716/Ballot-2010-382.pdf
KWB-documents_20191205.enlEndNote1215121527<style face="normal" font="default" size="100%">Comparative study of small wastewater treatment technologies under special operation conditions COMPAS</style>internal-pdf://3862120563/Barjenbruch-2009-1215.pdfKWB-documents_20191205.enlEndNote38738727<style face="normal" font="default" size="100%">Untersuchung des Betriebsverhaltens von Kleinkläranlagen unter besonderen Betriebsbedingungen - Vergleichende Studie auf dem Testfeld des BDZ in Leipzig</style>internal-pdf://1652428170/Barjenbruch-2009-387.pdfKWB-documents_20191205.enlEndNote23323327<style face="normal" font="default" size="11">Ermittlung prozessbestimmender / -begrenzender Parameter bei MW-Zufluss auf Kläranlagen. Prüfung der Übertragbarkeit auf die Kläranlagen Berlins</style>internal-pdf://2595261920/Barjenbruch-2008-233.pdfKWB-documents_20191205.enlEndNote82382327<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen (Abschlussbericht) Projektnr: 11315 UEPII/2</style>internal-pdf://3012305287/Barjenbruch-2016-823.pdfKWB-documents_20191205.enlEndNote16916927<style face="normal" font="default" size="11">An Online-Monitoring and Operating System to Prevent Odour and Corrosion in Sewer Networks - Feasibility Study</style>internal-pdf://1216942791/Barjenbruch-2008-169.pdfKWB-documents_20191205.enlEndNote71171117<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen</style>
internal-pdf://2102024956/Barjenbruch-2013-711.pdf
KWB-documents_20191205.enlEndNote22722747<style face="normal" font="default" size="11">Labor- und Praxistest von Onlinemesstechnik</style>KWB-documents_20191205.enlEndNote18118127<style face="normal" font="default" size="11">Test und Bewertung von moderner Online-Sensorik zum Kanalnetz- und Gewässermonitoring</style>internal-pdf://3473717446/Barjenbruch-2009-181.pdfKWB-documents_20191205.enlEndNote22822847<style face="normal" font="default" size="11">Vergleich von Online-Sensoren</style>internal-pdf://4152134886/Barjenbruch-2008-228.pdfKWB-documents_20191205.enlEndNote22622647<style face="normal" font="default" size="11">Onlinemesstechnik im Labor- und Praxistest</style>internal-pdf://2401471624/Barjenbruch-2009-226.pdfKWB-documents_20191205.enlEndNote41141127<style face="normal" font="default" size="100%">Watergy: Energy and Water Efficiency in Municipal Water Supply and Wastewater Treatment - </style><style face="italic" font="default" size="100%">Cost-Effective Savings of Water and Energy</style>internal-pdf://0624321367/Barry-2007-411.pdfKWB-documents_20191205.enlEndNote3133136<style face="normal" font="default" size="100%">Climate Change and Water - Technical Paper of the Intergovernmental Panel on Climate Change</style>internal-pdf://0789762170/Bates-2008-313.pdfKWB-documents_20191205.enlEndNote97397317<style face="normal" font="default" size="100%">Hydrogeochemical and isotopic insights into mineralization processes and groundwater recharge from an intermittent monsoon channel to an overexploited aquifer in eastern Haryana (India)</style>KWB-documents_20191205.enlEndNote38438417<style face="normal" font="default" size="100%">Removal of bacterial fecal indicators, coliphages and enteric adenoviruses from waters with high fecal pollution by slow sand filtration</style>
internal-pdf://2101110698/Bauer-2011-384.pdf
KWB-documents_20191205.enlEndNote25625632<style face="normal" font="default" size="100%">Kohlenstoffmassenbilanz in der anaeroben Zone zur Überprüfung der Speicherstoffdynamik im ENREM-Prozess</style>internal-pdf://3512566488/Baumer-2006-256.pdfKWB-documents_20191205.enlEndNote1124112410<style face="normal" font="default" size="100%">First application of a newly developed field gas extraction device to date old groundwater</style>KWB-documents_20191205.enlEndNote23423432<style face="normal" font="default" size="11">Modellbasierte Untersuchung zur Wirksamkeit einer Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://2639890921/Behrends-2008-234.pdfKWB-documents_20191205.enlEndNote94794727<style face="normal" font="default" size="100%">Leitfaden: Polare organische Spurenstoffe als Indikatoren im anthropogen beeinflussten Wasserkreislauf</style>internal-pdf://3423964950/Bergmann-2013-947.pdfKWB-documents_20191205.enlEndNote1196119632<style face="normal" font="default" size="100%">Einsatz von Bodenfiltern zur biologischen Nachbehandlung ozonierten Abwassers</style>KWB-documents_20191205.enlEndNote1197119732<style face="normal" font="default" size="100%">Bio-acidification and phosphorus-recovery potential from mixed excess and primary sludge in sewage treatment plants with biological and chemical phosphours removal.</style>KWB-documents_20191205.enlEndNote1221122147<style face="normal" font="default" size="100%">Kann die Kohle nachhaltig sein? – Einsatz von Aktivkohle zur Elimination von Spurenstoffen aus kommunalem Abwasser</style>KWB-documents_20191205.enlEndNote66966932<style face="normal" font="default" size="100%">Maximierung der CSB-Extraktion aus kommunalem Abwasser mit der Prozesskombination MBBR, Koagulation, Flockung und Filtration</style>internal-pdf://3478382186/Böhm-2014-669.pdfKWB-documents_20191205.enlEndNote94894827<style face="normal" font="default" size="100%">Documentation of acquired data and conceptual model of MAR impact input for WP5 modelling</style>internal-pdf://4076769171/Boisson-2013-948.pdfKWB-documents_20191205.enlEndNote30230232<style face="normal" font="default" size="100%">Adaption eines neuartigen MBR-Prozesses auf Monosubstrat zur Untersuchung des mikrobiologischen Stoffwechsels mittels in-vivo C-MNR</style>internal-pdf://3041097431/Bost-2009-302.pdfinternal-pdf://3093919509/Bost-2009-3021.pdfKWB-documents_20191205.enlEndNote35835827<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in South Africa</style>internal-pdf://1634298472/Boulestreau-2010-358.pdfKWB-documents_20191205.enlEndNote33933947<style face="normal" font="default" size="100%">Operation of a 5 m</style><style face="superscript" font="default" size="100%">3</style><style face="normal" font="default" size="100%">/d Gravity-driven Ultrafiltration Unit for Decentralised Water Supply</style>internal-pdf://4029443741/Boulestreau-2010-339.pdfKWB-documents_20191205.enlEndNote49549517<style face="normal" font="default" size="100%">Operation of gravity-driven ultrafiltration prototype for decentralised water supply</style>
internal-pdf://1531126525/Boulestreau-2012-495.pdf
KWB-documents_20191205.enlEndNote62462427<style face="normal" font="default" size="100%">Guidelines for the use of online fouling monitoring in tertiary treatment</style>internal-pdf://2470877728/Boulestreau-2013-624.pdfKWB-documents_20191205.enlEndNote65565527<style face="normal" font="default" size="100%">Recommendations for energy positive wastewater schemes. D 1.1 - Final project report</style>internal-pdf://3942124771/Boulestreau-2014-655.pdfKWB-documents_20191205.enlEndNote1168116847<style face="normal" font="default" size="100%">Online analysis of the nanoparticles to prevent membrane fouling by a secondary effluent</style>KWB-documents_20191205.enlEndNote1167116747<style face="normal" font="default" size="100%">Submicron particle analysis to characterize fouling in tertiary membrane filtration</style>KWB-documents_20191205.enlEndNote25725747<style face="normal" font="default" size="100%">Influence of sludge loadings and types of substrates on nutrients removal in MBRs</style>internal-pdf://Bracklow_Toulouse-0727839233/Bracklow_Toulouse.docKWB-documents_20191205.enlEndNote25825817<style face="normal" font="default" size="100%">Comparison of nutrient degradation in small scale membrane bioreactors fed with synthetic/domestic wastewater</style>
internal-pdf://3375071897/Bracklow-2007-258.pdf
KWB-documents_20191205.enlEndNote69769727<style face="normal" font="default" size="100%">Final Report on the Implementation of a Wetland Module for the Soil and Water Assessment Tool (SWAT)</style>internal-pdf://3650491691/Breuer-2014-697.pdfKWB-documents_20191205.enlEndNote41241232<style face="normal" font="default" size="100%">Kosten-Nutzen-Analyse zur optimierten Instandhaltungs- und Neubauplanung am Beispiel ausgewählter Trinkwasserbrunnen der Berliner Wasserbetriebe</style>internal-pdf://2677956589/Brinkmann-2011-412.pdfKWB-documents_20191205.enlEndNote20720732<style face="normal" font="default" size="11">Sensitivity Analysis Using SimLab: Application for the German Standard ATV-A 128</style>internal-pdf://2795615050/Brun-2009-207.pdfKWB-documents_20191205.enlEndNote1154115432<style face="normal" font="default" size="100%">Development of a GIS Method to Localize Critical Source Areas of Diffuse Nitrate Pollution – Application to the Ic Catchment, France.</style>KWB-documents_20191205.enlEndNote19919927<style face="normal" font="default" size="11">Methods for the assessment of diffuse nutrient pollution in rural catchments</style>internal-pdf://0931377916/Bugey-2009-199.pdfKWB-documents_20191205.enlEndNote37737727<style face="normal" font="default" size="100%">GIS approach to localize critical source areas of diffuse nitrate pollution. Case study on the Ic catchment, France</style>internal-pdf://4153501532/Bugey-2010-377.pdfKWB-documents_20191205.enlEndNote49449427<style face="normal" font="default" size="100%">Continuous Monitoring of Combined Sewer Overflows in the Sewer and the Receiving River: Return on Experience</style>internal-pdf://3006218067/Caradot-2012-494.pdfKWB-documents_20191205.enlEndNote66466427<style face="normal" font="default" size="100%">Review of current asset management strategies for sewer systems: results from a survey among European cities.</style>internal-pdf://0113292089/Caradot-2013-664.pdfKWB-documents_20191205.enlEndNote1185118547<style face="normal" font="default" size="100%">What is the reliability of sewer deterioration models?</style>KWB-documents_20191205.enlEndNote1110111032<style face="normal" font="default" size="100%">The use of deterioration modelling to simulate sewer asset management strategies</style>internal-pdf://3136552709/Caradot-2019-1110.pdfKWB-documents_20191205.enlEndNote1193119347<style face="normal" font="default" size="100%">From CCTV data to strategic planning: deterioration modelling for large sewer networks in Germany and Colombia</style>KWB-documents_20191205.enlEndNote57057047<style face="normal" font="default" size="100%">The use of continuous sewer and river monitoring data for CSO characterization and impact assessment</style>internal-pdf://2071543557/Caradot-2013-570.pdfKWB-documents_20191205.enlEndNote1060106017<style face="normal" font="default" size="100%">Practical benchmarking of statistical and machine learning models for predicting the condition of sewer pipes in Berlin, Germany</style>
internal-pdf://3644410872/Caradot-2018-1060.pdf
KWB-documents_20191205.enlEndNote1222122247<style face="normal" font="default" size="100%">How can condition assessment uncertainty impact sewer deterioration modelling? </style>KWB-documents_20191205.enlEndNote1076107617<style face="normal" font="default" size="100%">Evaluation of uncertainties in sewer condition assessment</style>
KWB-documents_20191205.enlEndNote1125112517<style face="normal" font="default" size="100%">EU-Vorhaben Digital-Water.City: Digitale Tools für das Wassermanagement</style>KWB-documents_20191205.enlEndNote83583547<style face="normal" font="default" size="100%">The influence of data availability on the performance of sewer deterioration modelling</style>internal-pdf://1964841889/Caradot-2015-835.pdfKWB-documents_20191205.enlEndNote83483447<style face="normal" font="default" size="100%">The potential of deterioration modelling to support sewer asset management</style>internal-pdf://0280321486/Caradot-2015-834.pdfKWB-documents_20191205.enlEndNote95795747<style face="normal" font="default" size="100%">The benefits of deterioration modelling to support sewer asset management strategies</style>internal-pdf://3874975480/Caradot-2016-957.pdfKWB-documents_20191205.enlEndNote95895817<style face="normal" font="default" size="100%">The relevance of sewer deterioration modelling to support asset management strategies</style>
internal-pdf://3403554457/Caradot-2016-958.pdf
KWB-documents_20191205.enlEndNote61561547<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies</style>internal-pdf://2892685862/Abstract_EJSW2013_Delpth_Caradot.docKWB-documents_20191205.enlEndNote61461447<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies – state-of-the-art and perspectives</style>internal-pdf://0698781026/Caradot-2013-614.pdfKWB-documents_20191205.enlEndNote44544547<style face="normal" font="default" size="100%">Application of online water quality sensors for integrated CSO impact assessment in Berlin (Gemany)</style>internal-pdf://2238797763/Caradot-2011-445.pdfKWB-documents_20191205.enlEndNote61161117<style face="normal" font="default" size="100%">The influence of local calibration on the quality of UV-VIS spectrometer measurements in urban stormwater monitoring</style>
internal-pdf://1077422315/Caradot-2013-611.pdfinternal-pdf://1958685605/Caradot-2013-6111.pdf
KWB-documents_20191205.enlEndNote1182118247<style face="normal" font="default" size="100%">The influence of local calibration on the quality of UV-VIS spectrometer measurements in urban stormwater monitoring</style>KWB-documents_20191205.enlEndNote61361347<style face="normal" font="default" size="100%">Optimal sampling strategy for local calibration of UV-VIS spectrometers in urban drainage monitoring</style>internal-pdf://2875218753/Caradot-2013-613.pdfKWB-documents_20191205.enlEndNote1184118447<style face="normal" font="default" size="100%">Influence of local calibration on the quality of on-line wet weather discharge monitoring: feedback from five international case studies.</style>KWB-documents_20191205.enlEndNote83383317<style face="normal" font="default" size="100%">Influence of local calibration on the quality of on-line wet weather discharge monitoring: feedback from five international case studies</style>
internal-pdf://3706132332/Caradot-2015-833.pdf
KWB-documents_20191205.enlEndNote83283217<style face="normal" font="default" size="100%">Wie zuverlässig sind Kanalalterungsmodelle?</style>
internal-pdf://4002561504/Caradot-2015-832.pdf
KWB-documents_20191205.enlEndNote1186118647<style face="normal" font="default" size="100%">Wie zuverlässig sind Kanalalterungsmodelle</style>KWB-documents_20191205.enlEndNote75375317<style face="normal" font="default" size="100%">Challenges and opportunities of German-Chinese cooperation in water science and technology</style>
internal-pdf://2120482927/Chen-2015-753.pdf
KWB-documents_20191205.enlEndNote43743727<style face="normal" font="default" size="100%">Retention and elimination of cynobacterial toxins (microcystins) through artificial recharge and bank filtration</style>internal-pdf://0016792491/Chorus-2006-437.pdfKWB-documents_20191205.enlEndNote7727<style face="normal" font="default" size="100%">Threshold Values for Oligotrophication of Lake Tegel and Schlachtensee, Berlin - Analysis of System Components and Causalities</style>internal-pdf://3378620233/Chorus-2004-7.pdfKWB-documents_20191205.enlEndNote1090109027<style face="normal" font="default" size="100%">D 2.5: Options for nitrogen removal after advanced carbon extraction </style>internal-pdf://4095564387/Christensson-2018-1090.pdfKWB-documents_20191205.enlEndNote1058105827<style face="normal" font="default" size="100%">Newfert D6.3: Cost for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote1223122347<style face="normal" font="default" size="100%">Comparative cost estimations of full-scale phosphorus recovery processes in German wastewater treatment plants</style>KWB-documents_20191205.enlEndNote25225232<style face="normal" font="default" size="11">Modelisation des Sous-Bassins Versants Berlin V et XII, Tests de Scenarios d’Amelioration</style>internal-pdf://1505789817/Daspres-2004-252.pdfKWB-documents_20191205.enlEndNote91391327<style face="normal" font="default" size="100%">D11.2 Demonstration of MAR effects on groundwater resources – development and application of different approaches for risk and impact assessment</style>internal-pdf://2325174443/de la Loma Gonzalez-2015-913.pdfKWB-documents_20191205.enlEndNote43143117<style face="normal" font="default" size="100%">Searching for a universal fouling indicator for membrane bioreactors</style>
internal-pdf://1419451371/de la Torre-2010-4311.pdf
KWB-documents_20191205.enlEndNote25925947<style face="normal" font="default" size="100%">Filtration characterisation methods in MBR systems: a practical comparison</style>internal-pdf://0914321770/de la Torre-2008-2591.pdfinternal-pdf://3298521513/de la Torre-2008-259.pdfKWB-documents_20191205.enlEndNote30430417<style face="normal" font="default" size="100%">Filtration charaterization methods in MBR systems: A practical comparison</style>
internal-pdf://1077137000/de la Torre-2009-3041.pdf
KWB-documents_20191205.enlEndNote39539517<style face="normal" font="default" size="100%">Filterability assessment in membrane bioreactors using an in-situ filtration test cell</style>
internal-pdf://1822122761/de la Torre-2010-3951.pdf
KWB-documents_20191205.enlEndNote1067106717<style face="normal" font="default" size="100%">Sixty years of global progress in managed aquifer recharge</style>
internal-pdf://0616163992/Dillon-2018-1067.pdf
KWB-documents_20191205.enlEndNote909017<style face="normal" font="default" size="100%">Contribution of the colmation layer to the elimination of coliphages by slow sand filtration</style>
internal-pdf://0965782101/Dizer-2004-90.pdf
KWB-documents_20191205.enlEndNote32932947<style face="normal" font="default" size="100%">Facility for the Simulation of Riverbank Filtration and Slow Sand Filtration - Examples of Virus Elimination in the Subsurface under near-natural Conditions</style>internal-pdf://2933026383/Dizer-2010-329.pdfKWB-documents_20191205.enlEndNote26026017<style face="normal" font="default" size="100%">Impact of ambient conditions on SMP elimination and rejection in MBR</style>
internal-pdf://1192264267/Drews-2007-260.pdf
KWB-documents_20191205.enlEndNote26126147<style face="normal" font="default" size="100%">Does fouling in MBR depend on SMP? </style>internal-pdf://0706988939/Drews-2007-261.pdfKWB-documents_20191205.enlEndNote26226217<style face="normal" font="default" size="100%">Fouling in Membranbelebungsreaktoren: Erfahrungen beim Betrieb mit diskontinuierlichem Schlammabzug</style>
internal-pdf://2543354365/Drews-2005-262.pdf
KWB-documents_20191205.enlEndNote575717<style face="normal" font="default" size="100%">Influence of unsteady membrane bioreactor operation on EPS formation and filtration resistance</style>
internal-pdf://0449289687/Drews-2006-57.pdf
KWB-documents_20191205.enlEndNote1094109432<style face="normal" font="default" size="100%">Bewertung der Mikrosiebung im großtechnischen Maßstab als erweiterte Vorklärung unter biologischen und ökonomischen Aspekten</style>internal-pdf://2258852794/Dühmke-2018-1094.pdfKWB-documents_20191205.enlEndNote79679632<style face="normal" font="default" size="100%">Ökobilanz zu Maßnahmen der Nährstoffreduktion im Kanalnetz</style>internal-pdf://1882960229/Ehrenreich-2015-796.pdfKWB-documents_20191205.enlEndNote81581532<style face="normal" font="default" size="100%">The influence of rainfall characteristics and further climate properties on trace pollutants in urban stormwater runoff</style>internal-pdf://2557113571/Eichler-2015-815.pdfKWB-documents_20191205.enlEndNote4427<style face="normal" font="default" size="100%">Berlinbeach - Erarbeitung eines Verfahrens zur Vermeidung von Einleitungen aus der Mischkanalisation in städtische Fließgewässer</style>internal-pdf://1038854647/Engel-2004-4.pdfKWB-documents_20191205.enlEndNote49149117<style face="normal" font="default" size="100%">Climate change and the water sector in Europe: A review of research and technology development needs</style>internal-pdf://0110501701/Escaler-2012-491.pdfKWB-documents_20191205.enlEndNote59259232<style face="normal" font="default" size="100%">Developing an Advanced Pump Database For Drinking Water Well Fields</style>internal-pdf://3599515225/Eslami-2013-592.pdfKWB-documents_20191205.enlEndNote929247<style face="normal" font="default" size="100%">Transport and attenuation of antibiotic residues during river bank filtration in Berlin, Germany</style>internal-pdf://4036337906/Fanck-2005-92.pdfKWB-documents_20191205.enlEndNote606017<style face="normal" font="default" size="100%">Occurrence of the Cyanobacterial Toxin Cylindrospermopsin in Northeast Germany</style>
internal-pdf://4195718292/Fastner-2007-60.pdf
KWB-documents_20191205.enlEndNote39639617<style face="normal" font="default" size="100%">Activated sludge model based modelling of membrane bioreactor (MBR) processes: A critical review with special regard to MBR specifities</style>
internal-pdf://0143482783/Fenu-2010-396.pdf
KWB-documents_20191205.enlEndNote1198119832<style face="normal" font="default" size="100%">Inbetriebnahme und Bewertung einer SBR-Pilotanlage zur Behandlung von kommunalem Abwasser mittels granuliertem Belebtschlamm-Verfahren</style>KWB-documents_20191205.enlEndNote31531517<style face="normal" font="default" size="10">Possibilities of sewer model simplifications</style>
internal-pdf://1969671722/Fischer-2009-315.pdf
KWB-documents_20191205.enlEndNote1202120232<style face="normal" font="default" size="100%">Kapillare Nanofiltration im Pilotmaßstab zur Aufbereitung von Wasser unterschiedlicher Qualitäten – Untersuchungen hinsichtlich Rückhalt, Reinigungsstrategien, Energieverbrauch und Reinigungskosten</style>KWB-documents_20191205.enlEndNote1097109732<style face="normal" font="default" size="100%">Vergleichende Bilanzierung von zwei SB-Reaktoren der Abwasserreinigung während der straßenweisen Umstellung auf eine erweiterte Vorklärung</style>internal-pdf://0820665524/Franke-2017-1097.pdfKWB-documents_20191205.enlEndNote85385327<style face="normal" font="default" size="100%">Annual progress report on the implementation of water reuse in El Port de la Selva - 2015</style>internal-pdf://3993566817/Frigola-2015-853.pdfKWB-documents_20191205.enlEndNote959517<style face="normal" font="default" size="100%">Naturnahe Grundwassergewinnung - Ergebnisse eines umfangreichen, interdisziplinären Forschungsvorhabens zur künstlichen Grundwasseranreicherung und Uferfiltration</style>
internal-pdf://2718497586/Fritz-2007-95.pdf
KWB-documents_20191205.enlEndNote939347<style face="normal" font="default" size="100%">Cleaning capacity of bank filtration and artificial recharge with influence of treated waste water</style>internal-pdf://3757222313/Fritz-2004-93.pdfKWB-documents_20191205.enlEndNote949417<style face="normal" font="default" size="100%">Process studies in a bank filtration system in Berlin using environmental tracers</style>internal-pdf://2915281259/Fritz-2003-94.pdfKWB-documents_20191205.enlEndNote28728727<style face="normal" font="default" size="11">IDB International Development of Bank Filtration -Case study India</style>internal-pdf://2445900695/Fritz-2006-287.pdfKWB-documents_20191205.enlEndNote28628627<style face="normal" font="default" size="11">NASRI Natural and Artificial Systems for Recharge and Infiltration Period 2001-2002</style>internal-pdf://1756172843/Fritz-2002-286.pdfKWB-documents_20191205.enlEndNote28828827<style face="normal" font="default" size="11">NASRI - Natural Systems for Recharge and Infiltration - Final Report</style>internal-pdf://0767916717/Fritz-2006-288.pdfKWB-documents_20191205.enlEndNote69969927<style face="normal" font="default" size="100%">Results of pilot-scale dewatering trials performed in Braunschweig Assessment of various operational factors on centrifugation performances (Project Decamax, Work Package 2)</style>internal-pdf://2405858640/Fülling-2014-699.pdfKWB-documents_20191205.enlEndNote1122112232<style face="normal" font="default" size="100%">Modellierung und Bewertung von Maßnahmen der dezentralen Regenwasserbewirtschaftung anhand aktueller Planungsvarianten in Berlin-Pankow</style>internal-pdf://3401371783/Funke-2019-1122.pdfKWB-documents_20191205.enlEndNote1121112117<style face="normal" font="default" size="100%">Partizipative Regenwasserkonzepte als wirksames Element zur Gestaltung klimaresilienter Städte</style>internal-pdf://0703516760/Funke-2019-1121.pdfKWB-documents_20191205.enlEndNote20620647<style face="normal" font="default" size="11">Projekt SPREE2011 - Entwicklung von Off-Shore Speicherräumen mit integrierter Klärtechnik zur Vermeidung von Mischwassereinleitungen in Gewässer</style>internal-pdf://0131432209/Gantner-2008-206.pdfKWB-documents_20191205.enlEndNote35135127<style face="normal" font="default" size="100%">Investigation of pre-ozonation on the performance of membrane filtration (Oxeram 1 - D 4.2)</style>internal-pdf://0435312485/Genz-2010-351.pdfKWB-documents_20191205.enlEndNote34934947<style face="normal" font="default" size="11">Die Kombination von Ozon und Flockung als Behandlungsstufe vor einer Membranfiltration (Oxeram)</style>internal-pdf://3335416346/Genz-2010-349.pdfKWB-documents_20191205.enlEndNote34834847<style face="normal" font="default" size="11">The effect of pre-ozonation and subsequent coagulation on the filtration of WWTP effluent with low-pressure membranes </style>internal-pdf://3892538881/Genz-2010-348.pdfKWB-documents_20191205.enlEndNote91691617<style face="normal" font="default" size="100%">Semi-Analytical Model for Estimation of Unsteady Seepage from a Large Water Body Influenced by Variable Flows</style>
internal-pdf://3557253739/Ghosh-2015-916.pdf
KWB-documents_20191205.enlEndNote91591527<style face="normal" font="default" size="100%">Field investigations and risk assessment in La Vall d’Uixó (Castellón, Spain)</style>internal-pdf://1923965111/Gibert-2015-915.pdfKWB-documents_20191205.enlEndNote85185127<style face="normal" font="default" size="100%">Field investigations in Sant Vicenç dels Horts (Barcelona, Spain): MAR effects on groundwater resources</style>internal-pdf://3427990701/Gibert-2015-851.pdfKWB-documents_20191205.enlEndNote42442417<style face="normal" font="default" size="100%">Optimierung des Abbaus organischer Belastungen durch die Kombination von Ozonung und Untergrundpassage</style>
internal-pdf://2029525917/Gnirß-2011-424.pdf
KWB-documents_20191205.enlEndNote464627<style face="normal" font="default" size="100%">Evaluation of enhanced biological phosphorus removal process in membrane bioreactors (operation from Oct 2001 to Apr 2002 with a sludge age of 26 days)</style>internal-pdf://2178396066/Gnirß-2002-46.pdfKWB-documents_20191205.enlEndNote737347<style face="normal" font="default" size="100%">Biologische Phosphorentfernung mit einer nachgeschaltetenDenitrifikation im Membranbelebungsverfahren</style>internal-pdf://1556654365/Gnirß-2003-73.pdfKWB-documents_20191205.enlEndNote26426427<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor ENREM: Planning, construction and operation from January 2004 to June 2007</style>internal-pdf://3808919968/Gnirß-2007-264.pdfKWB-documents_20191205.enlEndNote26526547<style face="normal" font="default" size="100%">Design criteria for semi-central sanitation with low pressure network and membrane bioreactor – the ENREM project</style>internal-pdf://1676575058/Gnirß-2007-265.pdfKWB-documents_20191205.enlEndNote87187117<style face="normal" font="default" size="100%">Ozonung für die Abwasserdesinfektion und Spurenstoffentfernung</style>
internal-pdf://2488155815/Gnirß-2016-871.pdf
KWB-documents_20191205.enlEndNote565647<style face="normal" font="default" size="100%">Planung und Bau einer Membranbelebungsanlage für die semizentrale Erschließung eines Siedlungsgebietes in einem empfindlichen Gebiet</style>internal-pdf://1234280612/Gnirß-2005-56.pdfKWB-documents_20191205.enlEndNote1224122447<style face="normal" font="default" size="100%">Neue Prognose-Instrumente zur Vorhersage der Hygiene von Badegewässern</style>KWB-documents_20191205.enlEndNote26626647<style face="normal" font="default" size="100%">Membrane Technique in a Freight Container for Advanced Nutrients Removal - The ENREM Demonstration Project</style>internal-pdf://1935247147/Gnirß-2008-266.pdfKWB-documents_20191205.enlEndNote62562527<style face="normal" font="default" size="100%">Role of organic substances in tertiary treatment via oxidation and membrane filtration</style>internal-pdf://1902160298/Godehardt-2013-625.pdfKWB-documents_20191205.enlEndNote52752747<style face="normal" font="default" size="100%">Fouling von Ultrafiltrationsmembranen - Relevanz von Proteinen und Analyse mit MALDI-TOF-MS</style>internal-pdf://4094183309/Godehardt-2012-527.pdfKWB-documents_20191205.enlEndNote52852847<style face="normal" font="default" size="100%">Influence of ozonation and coagulation as pretreatment steps for ultrafiltration in advanced wastewater treatment</style><style face="normal" font="default" size="11">.</style>internal-pdf://0956254889/Godehardt-2012-528.pdfKWB-documents_20191205.enlEndNote52952947<style face="normal" font="default" size="100%">Impacts of ozonation and coagulation on fouling during subsequent ultrafiltration in advanced wastewater treatment </style>KWB-documents_20191205.enlEndNote18618627<style face="normal" font="default" size="11">Identification of sources, pathways into a well and prevention from the risk of having pathogens entering abstraction wells</style>internal-pdf://1000911518/Graeber-2009-186.pdfKWB-documents_20191205.enlEndNote75475432<style face="normal" font="default" size="100%">Vergleichende Untersuchungen zur Abwasserdesinfektion vor einer Nutzung als Bewässerungswasser</style>internal-pdf://3089700122/Graß-2015-754.pdfinternal-pdf://3259635079/DMS Florian Graß.docxKWB-documents_20191205.enlEndNote39739717<style face="normal" font="default" size="100%">Performances and fouling control of a flat sheet membrane in a MBR pilot plant</style>
internal-pdf://2486967119/Grélot-2010-397.pdf
KWB-documents_20191205.enlEndNote989847<style face="normal" font="default" size="100%">Hydrogeochemical changes of seepage water during artificial recharge of groundwater in Berlin, Germany</style>internal-pdf://2185534857/Greskowiak-2006-98.pdfKWB-documents_20191205.enlEndNote11711717<style face="normal" font="default" size="100%">The impact of variably saturated conditions on hydrogeochemical changes during artificial recharge of groundwater</style>
internal-pdf://3990594449/Greskowiak-2005-117.pdf
KWB-documents_20191205.enlEndNote969617<style face="normal" font="default" size="100%">Modeling Seasonal Redox Dynamics and the Corresponding Fate for the Pharmaceutical Residue Phenazone During Artificial Recharge of Groundwater</style>
internal-pdf://1601904375/Greskowiak-2006-96.pdf
KWB-documents_20191205.enlEndNote979717<style face="normal" font="default" size="100%">Modeling of carbon cycling and biogeochemical changes during injection and recovery of reclaimed water at Bolivar, South Australia</style>
internal-pdf://1766826835/Greskowiak-2005-97.pdf
KWB-documents_20191205.enlEndNote919147<style face="normal" font="default" size="100%">Quantifying biogeochemical changes during ASR of reclaimed water at Bolivar, South Australia</style>internal-pdf://4291075387/Greskowiak-2005-91.pdfKWB-documents_20191205.enlEndNote68068047<style face="normal" font="default" size="100%">Development of Ammonium Concentrations at a Riverbank Filtration Site in Delhi (India) – Water-Sediment Interactions from Infiltration to Production</style>internal-pdf://3103375448/FH DGG_2014_Groeschke.docxinternal-pdf://2081687054/Gröschke-2014-680.pdfKWB-documents_20191205.enlEndNote67867847<style face="normal" font="default" size="100%">Transport of Sewage-borne Ammonium in a Floodplain Aquifer: Column Experiments with Aquifer Materials from the Yamuna Floodplain in Delhi (India)</style>internal-pdf://2458865875/IAP2014_Abstract_Maike_Groeschke.docxinternal-pdf://0692417985/Gröschke-2014-678.pdfKWB-documents_20191205.enlEndNote91191127<style face="normal" font="default" size="100%">Unique selling propositions (D51.1)</style>internal-pdf://4200616595/Gross-2015-911.pdfKWB-documents_20191205.enlEndNote11811817<style face="normal" font="default" size="100%">Removal of bulk dissolved organic carbon (DOC) and trace organic compounds by bank filtration and artificial recharge</style>
internal-pdf://2430295889/Grünheid-2005-118.pdf
KWB-documents_20191205.enlEndNote10110147<style face="normal" font="default" size="100%">Impact of temperature on biodegradation of bulk and trace organics during soil passage in an indirect reuse system</style>internal-pdf://3986448131/Grünheid-2007-101.pdfKWB-documents_20191205.enlEndNote10010047<style face="normal" font="default" size="100%">Behavior of Trace Pollutants During Bank Filtration and Ground Water Recharge of Wastewater-impacted Surface Waters</style>internal-pdf://2937104591/Grünheid-2004-100.pdfKWB-documents_20191205.enlEndNote10710747<style face="normal" font="default" size="100%">Fate of bulk organics during bank filtration of wastewater-impacted surface waters</style>internal-pdf://3643383036/Grünheid-2006-107.pdfKWB-documents_20191205.enlEndNote10910947<style face="normal" font="default" size="100%">Fate of trace organic pollutants during bank filtration and groundwater recharge</style>internal-pdf://3637009181/Grünheid-2006-109.pdfKWB-documents_20191205.enlEndNote999947<style face="normal" font="default" size="100%">Behavior of bulk organics and trace pollutants during bank filtration and groundwater recharge of wastewater-impacted surface waters</style>internal-pdf://2800461968/Grünheid-2004-99.PDFKWB-documents_20191205.enlEndNote10210217<style face="normal" font="default" size="100%">Cyanobakterientoxine bei der Uferfiltration. Unter welchen Umständen ist ihre Elimination sicher?</style>
internal-pdf://2804555418/Grützmacher-2007-102.pdf
KWB-documents_20191205.enlEndNote10510547<style face="normal" font="default" size="100%">Simulating bank filtration and artificial recharge on a technical scale</style>internal-pdf://3159881532/Grützmacher-2006-105.pdfKWB-documents_20191205.enlEndNote30030047<style face="normal" font="default" size="11">Occurrence of cylindrospermopsin, anatoxin-a and saxitoxins in France and implications for drinking water prodution</style>internal-pdf://0991654188/Grützmacher-2009-300.pdfKWB-documents_20191205.enlEndNote30830810<style face="normal" font="default" size="100%">Challenges and opportunities of Managed Aquifer Recharge</style>internal-pdf://0693072094/Grützmacher-2008-308.pdfKWB-documents_20191205.enlEndNote54054047<style face="normal" font="default" size="100%">PREPARED - enabling change: building a utility alliance on climate change adaptation.</style>KWB-documents_20191205.enlEndNote29529510<style face="normal" font="default" size="11">Function and relevance of aquifer recharge techniques to enable sustainable water resources management in developing and newly-industrialized countries</style>internal-pdf://0193885833/Grützmacher-2009-295.pdfKWB-documents_20191205.enlEndNote48148117<style face="normal" font="default" size="100%">Report on current research needs in managed aquifer recharge published by the WssTP</style>internal-pdf://0424759161/Grützmacher-2011-481.pdfKWB-documents_20191205.enlEndNote41941947<style face="normal" font="default" size="100%">A European initiative to define current research needs in managed aquifer recharge</style>internal-pdf://3197460149/Grützmacher-2010-419.pdfinternal-pdf://0856582758/Grützmacher-2010-4191.pdfKWB-documents_20191205.enlEndNote64964947<style face="normal" font="default" size="100%">Geogenic groundwater contamination – Definition, occurrence and relevance for drinking water production</style>
internal-pdf://3943533851/Grützmacher-2013-649.pdf
KWB-documents_20191205.enlEndNote39039027<style face="normal" font="default" size="100%">Literature Study on Redox Control for Infiltration Ponds and other Subsurface Systems</style>internal-pdf://3122090832/Grützmacher-2011-390.pdfKWB-documents_20191205.enlEndNote45745717<style face="normal" font="default" size="100%">Abbau von Stoffspuren in natürlichen und künstlichen Systemen der Infiltration von Wasser</style>
internal-pdf://2735925201/Grützmacher-2011-457.pdf
KWB-documents_20191205.enlEndNote45945917<style face="normal" font="default" size="100%">TECHNEAU: Perspectives of River Bank Filtration for newly industrialised and developing countries</style>
internal-pdf://1718285407/Grützmacher-2011-459.pdf
KWB-documents_20191205.enlEndNote10610647<style face="normal" font="default" size="100%">Prozesse der Elimination von Cyanobakterientoxinen bei der Infiltration</style>internal-pdf://0656512085/Grützmacher-2007-106.pdfKWB-documents_20191205.enlEndNote10410447<style face="normal" font="default" size="100%">On the behaviour of microcystins in saturated porous medium</style>internal-pdf://1593744558/Grützmacher-2006-104.pdfKWB-documents_20191205.enlEndNote32132147<style face="normal" font="default" size="100%">Organic Trace Substances Relevant for Drinking Water. Assessing their Elimination through Bank Filtration – Phase 1</style>internal-pdf://2551637891/Grützmacher-2008-321.pdfKWB-documents_20191205.enlEndNote10310347<style face="normal" font="default" size="100%">Are there limits to cyanobacterial toxin (microcystin) elimination by sand passage?</style>internal-pdf://3453328480/Grützmacher-2006-103.pdfKWB-documents_20191205.enlEndNote31431417<style face="normal" font="default" size="100%">Microcystin Elimination during Sediment Contact.</style>
internal-pdf://3566063005/Grützmacher-2010-314.pdfinternal-pdf://1261686236/Grützmacher-2010-3141.pdf
KWB-documents_20191205.enlEndNote41441447<style face="normal" font="default" size="100%">Behaviour of trace organics during drinking water production via subsurface passage</style>internal-pdf://4279787017/Grützmacher-2011-414.pdfKWB-documents_20191205.enlEndNote48948947<style face="normal" font="default" size="100%">Zum Verhalten von organischen Spurestoffen bei der Trinkwassergewinnung durch Untergrundpassage in Berlin</style>internal-pdf://0074665927/Grützmacher-2011-489.pdfKWB-documents_20191205.enlEndNote65365327<style face="normal" font="default" size="100%">Bank Filtration and Aquifer Recharde for Drinking Water Production: Application, Efficiency and Perspectives - An Integration of NASRI outcomes and International Experiences</style>internal-pdf://0810267715/Grützmacher-2011-653.pdfKWB-documents_20191205.enlEndNote29629647<style face="normal" font="default" size="11">Drinking Water Supply in Berlin - a Module within the Urban Water Cycle</style>internal-pdf://2192013919/Grützmacher-2009-296.pdfKWB-documents_20191205.enlEndNote1150115047<style face="normal" font="default" size="100%">Prévention de la contamination des ressources en eau en milieu rural et semi-rural par les zones tampons. Poster presentation</style>KWB-documents_20191205.enlEndNote11011047<style face="normal" font="default" size="100%">Clogging processes in a bank filtration system in the littoral zone of Lake Tegel (Germany)</style>internal-pdf://2128649234/Gunkel-2006-110.pdfKWB-documents_20191205.enlEndNote636317<style face="normal" font="default" size="100%">Genetic characterisation of Cylindrospermopsis raciborskii (Nostocales, Cyanobacteria) isolates from Africa and Europe.</style>
internal-pdf://1482954071/Haande-2006-63.pdf
KWB-documents_20191205.enlEndNote1087108732<style face="normal" font="default" size="100%">Energetic and economic evaluation of different scenarios for a biogas upgrading and power-to-gas technology at a wastewater treatment plant in Berlin</style>
internal-pdf://3050300144/Habibi-2018-1087.pdf
KWB-documents_20191205.enlEndNote1156115647<style face="normal" font="default" size="100%">Assessment of risks to surface water from diffuse contaminants. </style>KWB-documents_20191205.enlEndNote73373327<style face="normal" font="default" size="100%">Characterization of European managed aquifer recharge (MAR) sites - Analysis</style>internal-pdf://3369859957/Hannappel-2014-733.pdfKWB-documents_20191205.enlEndNote1169116947<style face="normal" font="default" size="100%">Driving factors for water research – from local to global</style>KWB-documents_20191205.enlEndNote1170117047<style face="normal" font="default" size="100%">Zustandserfassung von Kanalnetzen</style>KWB-documents_20191205.enlEndNote63363347<style face="normal" font="default" size="100%">Case Study Braunschweig – 100 Years Practical Experience in Water Reuse</style>internal-pdf://0719131807/00_120202_.pptKWB-documents_20191205.enlEndNote54454432<style face="normal" font="default" size="100%">Evaluation of different cleaning methods on the fouling rate of organic membranes. </style>internal-pdf://3331081080/Hattke-2012-544.pdfKWB-documents_20191205.enlEndNote11311317<style face="normal" font="default" size="100%">Occurrence, fate, and removal of pharmaceutical residues in the aquatic environment: a review of recent research data</style>
internal-pdf://1915531076/Heberer-2002-113.PDF
KWB-documents_20191205.enlEndNote11211247<style face="normal" font="default" size="100%">Occurrence, transport, attenuation and removal of pharmaceutical residues in the aquatic environment and their relevance for drinking water supply in urban areas</style>internal-pdf://1439538132/Heberer-2005-112.pdfKWB-documents_20191205.enlEndNote43443417<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of antimicrobial residues during bank filtration</style>
internal-pdf://0975838796/Heberer-2008-434.pdf
KWB-documents_20191205.enlEndNote11411447<style face="normal" font="default" size="100%">Occurrence and Fate of Pharmaceuticals During Bank Filtration</style>internal-pdf://3392450310/Heberer-2003-114.PDFKWB-documents_20191205.enlEndNote11111117<style face="normal" font="default" size="100%">Field Studies on the Fate and Transport of Pharmaceutical Residues in Bank Filtration</style>
internal-pdf://3922176066/Heberer-2004-111.pdf
KWB-documents_20191205.enlEndNote15215247<style face="normal" font="default" size="100%">Decentralized Collection of Iodinated X-Ray Contrast Media in Hospitals</style>KWB-documents_20191205.enlEndNote15315317<style face="normal" font="default" size="100%">Getrennte Erfassung von jodorganischen Röntgenkontrastmitteln mit mobilen Urinbehältern in zwei Krankenhäusern - Ergebnisse der Testphase</style>
KWB-documents_20191205.enlEndNote1149114927<style face="normal" font="default" size="100%">Leitfaden für die Sammlung von Patientenurin in Krankenhäusern </style>internal-pdf://4155790509/Heinzmann-2006-1149.pdfKWB-documents_20191205.enlEndNote88088032<style face="normal" font="default" size="100%">Stickstoffentfernung durch Wasserlinsen – Umsetzung eines energieeffizienten Verfahrens zur Reinigung ammoniumreicher Abwässer</style>internal-pdf://3639685532/Heller-2016-880.pdfKWB-documents_20191205.enlEndNote1070107027<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.2: Recommendations for WWTP operators, municipalities and WWTP technology providers willing to engage in renewable energy market</style>internal-pdf://0934116392/Helleskov Ravn-2018-1070.pdfKWB-documents_20191205.enlEndNote21621632<style face="normal" font="default" size="11">Räumlich differenzierte Modellierung des Stofftransportes im Niederschlagsabfluss von urbanen Flächen am Beispiel des Einzugsgebietes Ruschegraben, Berlin</style>internal-pdf://2523697575/Helling-2008-216.pdfKWB-documents_20191205.enlEndNote1057105717<style face="normal" font="default" size="100%">Phosphorus processing – potentials for higher efficiency</style>
internal-pdf://0910799548/Hermann-2018-1057.pdf
KWB-documents_20191205.enlEndNote1162116217<style face="normal" font="default" size="100%">Support tools to predict the critical structural condition of uninspected pipes for case studies of Germany and Colombia</style>
KWB-documents_20191205.enlEndNote1194119410<style face="normal" font="default" size="100%">Optimizing SVM Model as Predicting Model for Sewer Pipes in the Two Main Cities in Colombia</style>KWB-documents_20191205.enlEndNote1207120717<style face="normal" font="default" size="100%">Prediction of fecal indicator organism concentrations in rivers: the shifting role of environmental factors under varying flow conditions</style>
internal-pdf://3829176424/Herrig-2019-1207.pdfinternal-pdf://0719885386/Herrig-2019-12071.pdf
KWB-documents_20191205.enlEndNote1096109632<style face="normal" font="default" size="100%">Ressourcenschonende Abwasserbehandlung im ländlichen Raum - Prüfung der Rahmenbedingungen für die technische Umsetzbarkeit eines energieeffizienteren Behandlungskonzeptes</style>internal-pdf://2195152005/Herrmann-2016-1096.pdfKWB-documents_20191205.enlEndNote99599532<style face="normal" font="default" size="100%">Spurenstoffelimination mittels Ozon im Labormaßstab unter Berücksichtigung der Wasserqualität sowie weiterer Einflussfaktoren</style>internal-pdf://2116955358/Hilbrandt-2016-995.pdfKWB-documents_20191205.enlEndNote36136127<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in France</style>internal-pdf://1982818764/Hoa-2009-361.pdfKWB-documents_20191205.enlEndNote40940927<style face="normal" font="default" size="100%">Feasibility Study on Post-treatment Options after Riverbank Filtration in Delhi: Minimum Requirements</style>internal-pdf://2410767050/Hoa-2010-409.pdfKWB-documents_20191205.enlEndNote36336327<style face="normal" font="default" size="100%">International Market Survey on Membrane-Based Products for Decentralised Water Supply (POU and SSS Units) </style>internal-pdf://1547200894/Hoa-2008-363.pdfKWB-documents_20191205.enlEndNote48748727<style face="normal" font="default" size="100%">International market review of pumps available for groundwater abstraction </style>internal-pdf://0919751259/Höchel-2012-487.pdfKWB-documents_20191205.enlEndNote1042104232<style face="normal" font="default" size="100%">Betriebsverhalten einer kapillaren Nanofiltration zur Sulfatentfernung in der Trinkwasseraufbereitung</style>internal-pdf://3929449002/Hoff-2017-1042.pdfKWB-documents_20191205.enlEndNote11511547<style face="normal" font="default" size="100%">Physicochemical changes in pore water in the sandy littoral zone of Lake Tegel during bank filtration</style>internal-pdf://2427492958/Hoffmann-2006-115.pdfKWB-documents_20191205.enlEndNote1078107832<style face="normal" font="default" size="100%">Multivariate Datenanalyse zur Erfassung und Typisierung von Quellen umweltchemischer Frachten im Berliner Regenwasser</style>KWB-documents_20191205.enlEndNote68768732<style face="normal" font="default" size="100%">Micropollutants in Berlin’s urban rainwater runoff</style>internal-pdf://2853810648/Holsteijn-2014-687.pdfKWB-documents_20191205.enlEndNote47747717<style face="normal" font="default" size="100%">Potentiale für den Einsatz von Nährstoff-Filtersystemen in Deutschland zur Verringerung der Nährstoffeinträge in Oberflächengewässer</style>
internal-pdf://3601015471/Holsten-2012-477.pdf
KWB-documents_20191205.enlEndNote11611617<style face="normal" font="default" size="100%">Calculating the effect of natural attenuation during bank filtration</style>
internal-pdf://3455752735/Holzbecher-2006-116.pdf
KWB-documents_20191205.enlEndNote50150117<style face="normal" font="default" size="100%">The Influence of Redox Conditions on Phage Transport - Enclosure Experiments and Modeling</style>
internal-pdf://4000850529/Holzbecher-2006-501.pdf
KWB-documents_20191205.enlEndNote11911947<style face="normal" font="default" size="100%">On the construction of flowpath vector fields</style>internal-pdf://0911579601/Holzbecher-2006-119.pdfKWB-documents_20191205.enlEndNote12012047<style face="normal" font="default" size="100%">Simulation of bacteriophage populations during sub-surface passage</style>internal-pdf://1743100806/Holzbecher-2006-120.pdfKWB-documents_20191205.enlEndNote17017017<style face="normal" font="default" size="100%">11th International Conference on Urban Drainage in Edinburgh ICUD – aktuelle Entwicklungen aus Forschung und Praxis – zwischen Kanalbetrieb und Klimawandel</style>
internal-pdf://2460939281/Hoppe-2008-170.pdf
KWB-documents_20191205.enlEndNote24024017<style face="normal" font="default" size="100%">Vierter Weltwasserkongress der IWA - Ein Forum für Erfahrungsaustausch, neue Ideen und Know-how</style>
internal-pdf://3763794898/Hoppe-2005-240.pdf
KWB-documents_20191205.enlEndNote12112147<style face="normal" font="default" size="100%">A coupled transport and reaction model for long column experiments simulating bank filtration</style>internal-pdf://3982859080/Horner-2006-121.pdfKWB-documents_20191205.enlEndNote91091027<style face="normal" font="default" size="100%">D12.2 Pre-requisites and design criteria for new MAR systems in compliance with EU WFD and GWD (including pre-treatment)</style>internal-pdf://1756582157/Huber-2015-910.pdfKWB-documents_20191205.enlEndNote38938927<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation</style>internal-pdf://2008700679/Hübner-2010-389.pdfKWB-documents_20191205.enlEndNote43043027<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation. Final Report of OXIRED - Phase 2</style>internal-pdf://1848137401/Hübner-2011-430.pdfKWB-documents_20191205.enlEndNote41041027<style face="normal" font="default" size="100%">Analysis of the vulnerability of bank filtration systems to climate change by comparing their effectiveness under varying environmental conditions</style>internal-pdf://3328401935/Hülshoff-2009-410.pdfKWB-documents_20191205.enlEndNote39839827<style face="normal" font="default" size="100%">Relevance and opportunities of RBF systems in developing and newly-industrialised countries</style>internal-pdf://1931829853/Hülshoff-2009-398.pdfKWB-documents_20191205.enlEndNote90990947<style face="normal" font="default" size="100%">Integrated modelling and evaluation of adaptation measures in a metropolitan wastewater system</style>KWB-documents_20191205.enlEndNote101910195<style face="normal" font="default" size="100%">Entwicklung und Bewertung von Maßnahmen zur Anpassung der urbanen Abwasserinfrastruktur an die Zukunft</style>internal-pdf://2344459952/Hürter-2017-1019.pdfKWB-documents_20191205.enlEndNote17117132<style face="normal" font="default" size="11">Untersuchungen zur Verbundsteuerung des Berliner Entwässerungssystems</style>internal-pdf://4056922232/Huß-2005-171.pdfKWB-documents_20191205.enlEndNote242447<style face="normal" font="default" size="100%">Case study of global pump station control for the combined sewerage of Berlin</style>internal-pdf://1482793733/Huß-2005-24.pdfKWB-documents_20191205.enlEndNote71471427<style face="normal" font="default" size="100%">Efficiency of implemented mitigation systems to control diffuse pollution in agricultural landscapes</style>internal-pdf://1073015803/Jacinthe-2014-714.pdfKWB-documents_20191205.enlEndNote20120127<style face="normal" font="default" size="11">Effects of vegetation and glyphosate on denitrification in constructed wetlands - Feasibility test of technical scale simulation</style>internal-pdf://0669233744/Jacinthe-2009-201.pdfKWB-documents_20191205.enlEndNote1157115747<style face="normal" font="default" size="100%">Vegetation effects on nitrogen and carbon cycling in slow sand filters. </style>KWB-documents_20191205.enlEndNote1072107247<style face="normal" font="default" size="100%">Capillary nanofiltration under anoxic conditions as post-treatment after bank filtration – improvement of chemical cleaning and removal of sulphate and organic micropollutants</style>internal-pdf://2517938294/Jährig-2018-1072.pdfKWB-documents_20191205.enlEndNote1073107317<style face="normal" font="default" size="100%">Capillary Nanofiltration under Anoxic Conditions as Post-Treatment after Bank Filtration</style>
internal-pdf://0024734634/Jährig-2018-1073.pdf
KWB-documents_20191205.enlEndNote1225122547<style face="normal" font="default" size="100%">Kapillare Nanofiltration zur Behandlung von anoxischem Grundwasser und Uferfiltrat</style>KWB-documents_20191205.enlEndNote22522527<style face="normal" font="default" size="11">International practices and standards of Rainwater Harvesting in urban and peri-urban environment and current R&D projects</style>internal-pdf://4058404350/Jaulhac-2008-225.pdfKWB-documents_20191205.enlEndNote43943927<style face="normal" font="default" size="100%">Organic substances in bank filtration and groundwater recharge - Process studies</style>internal-pdf://0789789502/Jekel-2006-439.pdfKWB-documents_20191205.enlEndNote85885827<style face="normal" font="default" size="100%">Integration der Spurenstoffentfernung in Technologieansätze der 4. Reinigungsstufe bei Klärwerken</style>internal-pdf://3696311816/Jekel-2015-858.pdfKWB-documents_20191205.enlEndNote12312347<style face="normal" font="default" size="100%">Bank filtration and groundwater recharge for treatment of polluted surface waters</style>internal-pdf://1529651895/Jekel-2005-123.pdfKWB-documents_20191205.enlEndNote12212217<style face="normal" font="default" size="100%">lst die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>
internal-pdf://3258473167/Jekel-2007-122.PDF
KWB-documents_20191205.enlEndNote12412447<style face="normal" font="default" size="100%">Ist die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>internal-pdf://1746836218/Jekel-2006-124.pdfKWB-documents_20191205.enlEndNote43843827<style face="normal" font="default" size="100%">Occurrence and fate of drug residues and related polar contaminants during bank filtration and artificial recharge</style>internal-pdf://3351329504/Jekel-2006-438.pdfKWB-documents_20191205.enlEndNote53853832<style face="normal" font="default" size="100%">Rapid Sand Filter Design - A Comparative study on Danish and German groundwater treatment. – Bachelor Thesis, , 114.</style>internal-pdf://4060889882/Jensen-2012-538.pdfKWB-documents_20191205.enlEndNote46646632<style face="normal" font="default" size="100%">Determination of the carbonate scaling potential of drinking water abstraction wells from hydrochemical data using hydro-geochemical modelling software PhreeqC</style>internal-pdf://3080515564/Josse-2011-466.pdfKWB-documents_20191205.enlEndNote20520547<style face="normal" font="default" size="11">Management scenarios for reduced nitrate loads in a small catchment in Brittany (France) - the problem of data scarcity and the resulting predictive uncertainty</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://0986019153/Julich-2009-205.pdfKWB-documents_20191205.enlEndNote20020027<style face="normal" font="default" size="11">Hydrological and nitrate modelling for the River Ic in Brittany (France) - Simulation results and pre-liminary scenario analysis</style>internal-pdf://1555804674/Julich-2009-200.pdfKWB-documents_20191205.enlEndNote6436435<style face="normal" font="default" size="100%">The limited resources of phosphorus and how to close the phosphorus cycle</style>internal-pdf://0156580456/Kabbe-2013-643.pdfKWB-documents_20191205.enlEndNote64164117<style face="normal" font="default" size="100%">Nachhaltiges Phosphormanagement in Europa</style>
internal-pdf://0064217720/Kabbe-2013-641.pdfinternal-pdf://0224883288/Kabbe-2013-6411.pdf
KWB-documents_20191205.enlEndNote56256217<style face="normal" font="default" size="100%">Sustainable Sewage Sludge Management Fostering Phosphorus Recovery</style>
internal-pdf://2780970523/Kabbe-2013-562.pdf
KWB-documents_20191205.enlEndNote69269217<style face="normal" font="default" size="100%">Chancen für Phosphorrückgewinnung und -recycling aus dem Abwasserpfad in Europa</style>
internal-pdf://3940109612/Kabbe-2014-692.pdf
KWB-documents_20191205.enlEndNote75675617<style face="normal" font="default" size="100%">Closing the Nutrient Cycle - Circular Economy Thinking for Phosphorus Recovery</style>
internal-pdf://0178077443/Kabbe-2015-756.pdf
KWB-documents_20191205.enlEndNote83883817<style face="normal" font="default" size="100%">Nutrient Recovery Developments</style>KWB-documents_20191205.enlEndNote1190119047<style face="normal" font="default" size="100%">Circular economy - challenges and opportunities for phosphorus recycling</style>KWB-documents_20191205.enlEndNote1160116017<style face="normal" font="default" size="100%">Launch of European initiative to share experiences of struvite-based wastewater phosphate recovery</style>
KWB-documents_20191205.enlEndNote1161116117<style face="normal" font="default" size="100%">Nutrient recovery 2.0</style>
KWB-documents_20191205.enlEndNote101310135<style face="normal" font="default" size="100%">Circular Economy – Bridging the gap between Phosphorus Recovery and Recycling</style>KWB-documents_20191205.enlEndNote67167127<style face="normal" font="default" size="100%">Phosphorpotenziale im Land Berlin - Abschlussbericht Projekt P-Pot</style>internal-pdf://0533570931/Kabbe-2014-671.pdfKWB-documents_20191205.enlEndNote64064047<style face="normal" font="default" size="100%">Implementation of Phosphorus Recovery from the wastewater stream – The European FP7 project P-REX</style>internal-pdf://0975755479/Kabbe-2013-640.pdfKWB-documents_20191205.enlEndNote90890810<style face="normal" font="default" size="100%">Phosphorrückgewinnung und -recycling aus Abwasser in Europa</style>internal-pdf://3927592995/Kabbe-2015-908.pdfKWB-documents_20191205.enlEndNote98898810<style face="normal" font="default" size="100%">Phosphorrecycling – Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote1011101110<style face="normal" font="default" size="100%">Kreislaufwirtschaft? - Von der Phosphorrückgewinnung zum tatsächlichen Recycling</style>KWB-documents_20191205.enlEndNote1012101217<style face="normal" font="default" size="100%">P recovery: from evolution to revolution</style>KWB-documents_20191205.enlEndNote101010105<style face="normal" font="default" size="100%">Phosphor – der Flaschenhals des Lebens</style>KWB-documents_20191205.enlEndNote83983927<style face="normal" font="default" size="100%">Integral guidance document for phosphorus recovery and recycling D12.1</style>internal-pdf://1591140686/Kabbe-2015-839.pdfKWB-documents_20191205.enlEndNote81881810<style face="normal" font="default" size="100%">P-Rückgewinnung und Recycling in Europa - Schlussfolgerungen aus dem Projekt P-REX</style>internal-pdf://2559516112/Kabbe-2015-818.pdfKWB-documents_20191205.enlEndNote76676647<style face="normal" font="default" size="100%">Review of promising Methods for Phosphorus Recovery and Recycling from Wastewater</style>internal-pdf://2085259822/Kabbe-2015-766.pdfKWB-documents_20191205.enlEndNote116411645<style face="normal" font="default" size="100%">Review of promising Methods for Phosphorus Recovery and Recycling from Wastewater</style>KWB-documents_20191205.enlEndNote1009100910<style face="normal" font="default" size="100%">Circular Economy – Challenges and Opportunities for Phosphorus Recovery & Recycling from Wastes in Europe</style>KWB-documents_20191205.enlEndNote70570547<style face="normal" font="default" size="100%">Challenges and opportunities for P recovery and recycling from municipal wastewater in Europe</style>internal-pdf://0513505548/Kabbe-2014-705.pdfKWB-documents_20191205.enlEndNote1095109532<style face="normal" font="default" size="100%">Application of Duckweed in Wastewater Treatment – an Alternative Method for Nitrogen Removal?</style>internal-pdf://1640061976/Kahlert-2017-1095.pdfKWB-documents_20191205.enlEndNote45245227<style face="normal" font="default" size="100%">Reactive transport modeling. Deliverable 3.4</style>internal-pdf://0071587248/Kalka-2011-452.pdfKWB-documents_20191205.enlEndNote83783727<style face="normal" font="default" size="100%">Modelling of asset management strategies in Braunschweig. Internal Report 3</style>internal-pdf://2757923102/Kästner-2015-837.pdfKWB-documents_20191205.enlEndNote83683627<style face="normal" font="default" size="100%">Results of sewer deterioration modelling in Braunschweig. Internal Report 2.1</style>internal-pdf://4285449886/Kästner-2015-836.pdfKWB-documents_20191205.enlEndNote55455427<style face="normal" font="default" size="100%">Report on pilot and full-scale trials performed in Braunschweig on codigestion and thermal hydrolysis - Workpackage 3</style>internal-pdf://1253458636/Klein-2012-554.pdfKWB-documents_20191205.enlEndNote66366327<style face="normal" font="default" size="100%">Review of sewer deterioration models</style>internal-pdf://1914220386/Kley-2013-663.pdfKWB-documents_20191205.enlEndNote66266227<style face="normal" font="default" size="100%">Review of available technologies and methodologies for sewer condition evaluation</style>internal-pdf://2503540940/Kley-2013-662.pdfKWB-documents_20191205.enlEndNote1133113327<style face="normal" font="default" size="100%">Assessment of baseline conditions for all case studies. Deliverable D.1.1.</style>internal-pdf://4179994627/Kleyböcker-2019-1133.pdfKWB-documents_20191205.enlEndNote1099109917<style face="normal" font="default" size="100%">Nährstoffrückgewinnung aus dem Abwasserstrom</style>
internal-pdf://3399851189/Kleyböcker-2019-1099.pdf
KWB-documents_20191205.enlEndNote33633617<style face="normal" font="default" size="100%">Retention and Degradation of the cyanobacterial Toxin Cylindrospermopsin in Sediments - The Role of Sediment preconditioning and DOM composition</style>
internal-pdf://2726850704/Klitzke-2010-336.pdf
KWB-documents_20191205.enlEndNote37937917<style face="normal" font="default" size="100%">Sorption of the cyanobacterial toxins cylindrospermopsin and anatoxin-a to sediments</style>
internal-pdf://3552864560/Klitzke-2011-379.pdfinternal-pdf://Klitzke et al Supplement-0857521921/Klitzke et al Supplement.doc
KWB-documents_20191205.enlEndNote12512547<style face="normal" font="default" size="100%">Exploring surface- and groundwater interactions with the help of environmental tracers and wastewater indicators in Berlin/Germany</style>internal-pdf://0340433580/Knappe-2006-125.pdfKWB-documents_20191205.enlEndNote36236227<style face="normal" font="default" size="100%">Development of UV-LED disinfection</style>internal-pdf://3992219074/Kneissl-2010-362.pdfKWB-documents_20191205.enlEndNote24424447<style face="normal" font="default" size="11">Poster: Community comparison of clogging-related bacteria in Berlin water wells</style>internal-pdf://3562306081/Knobel-2009-244.pdfKWB-documents_20191205.enlEndNote28928917<style face="normal" font="default" size="11">Sources of oxygen flux in groundwater during induced bank filtration at a site in Berlin, Germany</style>
internal-pdf://2116377217/Kohfahl-2009-289.pdf
KWB-documents_20191205.enlEndNote32332332<style face="normal" font="default" size="11">Determination of the clogging potential of drinking water wells in Berlin by an outlier analysis of well management data</style>internal-pdf://0044265522/Köpp-2009-323.pdfKWB-documents_20191205.enlEndNote484827<style face="normal" font="default" size="100%">Preliminary Studies on P-removal by Adsorption from MBR filtrates</style>internal-pdf://3888754360/Kornmüller-2002-48.pdfKWB-documents_20191205.enlEndNote2227<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel (Berlin-Brandenburg)</style>internal-pdf://2772938330/Kranz-2003-2.pdfKWB-documents_20191205.enlEndNote28328327<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel</style>internal-pdf://3482089923/Kranz-2004-283.pdfKWB-documents_20191205.enlEndNote81781732<style face="normal" font="default" size="100%">Phosphorus recovery from wastewater – Risk assessment for recycling in agriculture</style>internal-pdf://3816365239/Kraus-2015-817.pdfKWB-documents_20191205.enlEndNote86986917<style face="normal" font="default" size="100%">Phosphorrecycling aus Klärschlamm</style>
internal-pdf://3825601838/Kraus-2016-869.pdf
KWB-documents_20191205.enlEndNote1008100810<style face="normal" font="default" size="100%">Stand und Perspektiven beim Phosphorrecycling</style>KWB-documents_20191205.enlEndNote1226122647<style face="normal" font="default" size="100%">Die Vorgaben der Klärschlammverwertung zur Phosphorrückgewinnung – ein Interpretationsversuch</style>KWB-documents_20191205.enlEndNote1056105627<style face="normal" font="default" size="100%">Newfert D6.2: Environmental Impact for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote1055105527<style face="normal" font="default" size="100%">Newfert D6.1: Methodology for LCA and LCC</style>KWB-documents_20191205.enlEndNote98798710<style face="normal" font="default" size="100%">Anforderungen an das P-Recycling</style>KWB-documents_20191205.enlEndNote98698610<style face="normal" font="default" size="100%">Klärschlamm: Phosphorstrategie infolge neuer rechtlicher Regelungen</style>KWB-documents_20191205.enlEndNote98498410<style face="normal" font="default" size="100%">Phosphorrückgewinnung aus Klärschlamm (Praxisbeispiel)</style>KWB-documents_20191205.enlEndNote1007100717<style face="normal" font="default" size="100%">Phosphorrückgewinnung in der Praxis – so funktioniert es in den Niederlanden</style>
internal-pdf://0231184458/Kraus-2017-1007.pdf
KWB-documents_20191205.enlEndNote83183117<style face="normal" font="default" size="100%">Klärschlammmanagement und Phosphorrecycling in Deutschland – Eine Abschätzung von Kosten, Umweltauswirkungen und Konsequenzen der geplanten Novelle der AbfKlärV. </style>
KWB-documents_20191205.enlEndNote98598510<style face="normal" font="default" size="100%">34. Bochumer Workshop: Kläranlage der Zukunft - Phosphorrecycling: Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote1035103527<style face="normal" font="default" size="100%">Deliverable D3.3: Generic assessment of treatment trains concerning their environmental impact and risk reduction potential</style>internal-pdf://3372000036/Kraus-2016-1035.pdfKWB-documents_20191205.enlEndNote81981927<style face="normal" font="default" size="100%">Quantitative risk assessment of potential hazards for humans and the environment: quantification of potential hazards resulting from agricultural use of the manufactured fertilizers (D9.1)</style>internal-pdf://2439847563/Kraus-2015-819.pdfKWB-documents_20191205.enlEndNote1036103627<style face="normal" font="default" size="100%">Deliverable D3.2: Show case of the environmental benefits and risk assessment of reuse schemes</style>internal-pdf://2421269347/Kraus-2016-1036.pdfKWB-documents_20191205.enlEndNote105410545<style face="normal" font="default" size="100%">Ökobilanzieller Vergleich der konventionellen P-Düngemittelproduktion aus Rohphosphat mit der Phosphorrückgewinnung aus dem Abwasserpfad</style>KWB-documents_20191205.enlEndNote1053105327<style face="normal" font="default" size="100%">Phorwärts Abschlussbericht: Ökobilanzieller Vergleich der P-Rückgewinnung aus dem Abwasserstrom mit der Düngemittelproduktion aus Rohphosphaten unter Einbeziehung von Umweltfolgeschäden und deren Vermeidung</style>internal-pdf://2535167896/Kraus-2019-1053.pdfKWB-documents_20191205.enlEndNote1109110927<style face="normal" font="default" size="100%">Einsatzmöglichkeiten für Nährstoffrezyklate im Ökolandbau - Abschlussbericht des Projektes nurec4org</style>internal-pdf://1700780674/Kraus-2019-1109.pdfKWB-documents_20191205.enlEndNote33533527<style face="normal" font="default" size="100%">Properties of Atrazine and Bentazone</style>internal-pdf://0134574052/Krause-2010-335.pdfKWB-documents_20191205.enlEndNote1146114627<style face="normal" font="default" size="100%">Organic Trace Substances Relevant for Drinking Water – Assessing their Elimination through Bank Filtration. Project acronym: TRACE</style>internal-pdf://2105210140/Krause-2009-1146.pdfKWB-documents_20191205.enlEndNote1217121727<style face="normal" font="default" size="100%">Report on efficient design of mitigation zones for pesticide removal</style>internal-pdf://3829176422/Krause Camilo-2014-1217.pdfKWB-documents_20191205.enlEndNote63663617<style face="normal" font="default" size="100%">Concurrent nitrate and atrazine retention in bioreactors of straw and bark mulch at short hydraulic residence times</style>
internal-pdf://3967446471/Krause Camilo-2013-636.pdf
KWB-documents_20191205.enlEndNote70070032<style face="normal" font="default" size="100%">Untersuchungen zur Morphologie eisenoxidierender Grundwasserbakterien und ihrer Toleranz gegenüber Wasserstoffperoxid</style>internal-pdf://3763317585/Kutun-2010-700.pdfKWB-documents_20191205.enlEndNote474727<style face="normal" font="default" size="100%">Application of Liquid Chromatography-Online Carbon Detection (LC-OCD) to the understanding of organic fouling in membrane bioreactors (MBRs)</style>internal-pdf://1984538597/Laabs-2004-47.pdfKWB-documents_20191205.enlEndNote25325332<style face="normal" font="default" size="11">Modelisation d’un Reseau d’Assainissement, Berlin VIII</style>internal-pdf://2568849102/Laborde-2003-253.pdfKWB-documents_20191205.enlEndNote46846832<style face="normal" font="default" size="11">Optimization of flocculation for advanced phosphorus removal via microsieve filtration </style>internal-pdf://0369644274/Langer-2011-468.pdfKWB-documents_20191205.enlEndNote52352347<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration in tertiary treatment: Performance and operation</style>internal-pdf://0459208446/Langer-2012-523.pdfKWB-documents_20191205.enlEndNote46946947<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0922571428/Langer-2011-469.pdfKWB-documents_20191205.enlEndNote47047047<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0680874582/Langer-2011-470.pdfKWB-documents_20191205.enlEndNote62662627<style face="normal" font="default" size="100%">Feasibility of the microsieve technology for advanced phosphorus removal</style>internal-pdf://3507393793/Langer-2013-626.pdfKWB-documents_20191205.enlEndNote53753732<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration - Process optimization for dynamic operation and discussion of effects on operating cost.</style>internal-pdf://1824671535/Lardon-2012-537.pdfKWB-documents_20191205.enlEndNote12612647<style face="normal" font="default" size="100%">Statistical description and analysis of a bank filtration system</style>internal-pdf://2940901233/Leipnitz-2006-126.pdfKWB-documents_20191205.enlEndNote25125132<style face="normal" font="default" size="11">Modélisation du transport de matières en suspension dans le réseau d’assainissement de Berlin</style>internal-pdf://4204889728/Lemaire-2003-251.pdfKWB-documents_20191205.enlEndNote95695617<style face="normal" font="default" size="100%">Calibration of UV/Vis spectrophotometers: A review and comparison of different methods to estimate TSS and total and dissolved COD concentrations in sewers, WWTPs and rivers</style>
internal-pdf://2613579970/Lepot-2016-956.pdf
KWB-documents_20191205.enlEndNote3303306<style face="normal" font="default" size="100%">Membrane technologies for wastewater treatment and reuse : 4 - 5 June 2007, Berlin (Germany), 2nd IWA National Young Water Professionals Conference ; conference proceedings</style>internal-pdf://2522337168/Lesjean-2007-330.pdfinternal-pdf://3111702479/Lesjean-2007-3301.pdfKWB-documents_20191205.enlEndNote1165116547<style face="normal" font="default" size="100%">Market prospects of low pressure membrane filtration systems for water purification</style>KWB-documents_20191205.enlEndNote1171117147<style face="normal" font="default" size="100%">Market prospects of low pressure membrane filtration systems for wastewater treatment</style>KWB-documents_20191205.enlEndNote71071047<style face="normal" font="default" size="100%">CARISMO project: From wastewater treatment plant to power plant</style>internal-pdf://1443619152/Lesjean-2014-710.pdfKWB-documents_20191205.enlEndNote70470447<style face="normal" font="default" size="100%">The experience and ambition of KWB in Watershare®</style>internal-pdf://0765190261/Lesjean-2014-704.pdfKWB-documents_20191205.enlEndNote70370347<style face="normal" font="default" size="100%">Impulses on resource and energy efficient concepts for municipal wastewater treatment plants: the ‘resource / energy’ nexus</style>internal-pdf://2911339867/Lesjean-2014-703.pdfKWB-documents_20191205.enlEndNote75975947<style face="normal" font="default" size="100%">Green Jobs with Phosphorus Recycling</style>internal-pdf://1527082761/Lesjean-2015-759.pdfKWB-documents_20191205.enlEndNote505027<style face="normal" font="default" size="100%">Technical interim report 2006 - Enhanced Nutrients Removal in Membrane Bioreactor (ENREM)</style>internal-pdf://0541694339/Lesjean-2006-50.pdfKWB-documents_20191205.enlEndNote747417<style face="normal" font="default" size="100%">Process configurations adapted to membrane bioreactors for enhanced biological phosphorous and nitrogen removal</style>
internal-pdf://3379015180/Lesjean-2002-74.pdf
KWB-documents_20191205.enlEndNote757547<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation of Membrane Bioreactor Process configurations for biological advanced nutrients removal from municipal wastewater</style>KWB-documents_20191205.enlEndNote767617<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation on enhanced biological nutrients removal and trace organics elimination in membrane bioreactor (MBR)</style>
internal-pdf://0392201778/Lesjean-2005-76.pdf
KWB-documents_20191205.enlEndNote686847<style face="normal" font="default" size="100%">Membrane bioreactor for semi-central sanitation with enhanced treatment performances</style>internal-pdf://1121487259/Lesjean-2005-68.pdfKWB-documents_20191205.enlEndNote1216121627<style face="normal" font="default" size="100%">PROJECT AMEDEUS “ACCELERATE MEMBRANE DEVELOPMENT FOR URBAN SEWAGE PURIFICATION” FINAL ACTIVITY REPORT</style>internal-pdf://3797244140/Lesjean-2010-1216.pdfKWB-documents_20191205.enlEndNote33433427<style face="normal" font="default" size="100%">Project AMEDEUS Accelerate Membrane Development for Urban Sewage Purification - Final Activity Report</style>internal-pdf://3321524103/Lesjean-2010-334.pdfKWB-documents_20191205.enlEndNote3913916<style face="normal" font="default" size="100%">Strategic Research Agenda of European Technology Platform for Water (WssTP)</style>internal-pdf://0915039999/Lesjean-2010-391.pdfKWB-documents_20191205.enlEndNote23923947<style face="normal" font="default" size="11">International Review of Rainwater Harvesting Management: Practices, Market and Current Developments</style>internal-pdf://3889190242/Lesjean-2009-239.pdfKWB-documents_20191205.enlEndNote75875847<style face="normal" font="default" size="100%">Key Outcomes of FP7 Project P-REX</style>internal-pdf://0411719618/Lesjean-2015-758.pdfKWB-documents_20191205.enlEndNote1166116647<style face="normal" font="default" size="100%">Water and Energy nexus as potential industrial breakthrough</style>KWB-documents_20191205.enlEndNote545417<style face="normal" font="default" size="100%">MBR: Technology gets timely EU cash boost</style>
internal-pdf://1943574837/Lesjean-2006-54.pdf
KWB-documents_20191205.enlEndNote94494410<style face="normal" font="default" size="100%">Proof of concept for an innovative energy positive wastewater treatment scheme</style>internal-pdf://1837468433/Lesjean-2014-944.pdfKWB-documents_20191205.enlEndNote74974947<style face="normal" font="default" size="100%">Energiepositive Abwasserreinigung: Das CARISMO-Verfahren und seine Umsetzung in die Praxis</style>internal-pdf://2086079227/Lesjean-2015-749.pdfKWB-documents_20191205.enlEndNote76076047<style face="normal" font="default" size="100%">Energiepositive Klärwerke: Innovationsprojekte am Kompetenzzentrum Wasser Berlin</style>internal-pdf://3192183244/Lesjean-2015-760.pdfKWB-documents_20191205.enlEndNote70670647<style face="normal" font="default" size="100%">Proof of concept for an innovative energy-positive wastewater treatment scheme</style>internal-pdf://3518260074/Lesjean-2014-706.pdfKWB-documents_20191205.enlEndNote70770747<style face="normal" font="default" size="100%">Energie- und CO2-Bilanz von HTC im Vergleich zu konventionellen Verfahren der Klärschlammbehandlung</style>internal-pdf://1199549953/Lesjean-2014-707.pdfKWB-documents_20191205.enlEndNote70870847<style face="normal" font="default" size="100%">The WellGrapher tool: Connecting land use to well-field water quality</style>internal-pdf://4078613622/Lesjean-2014-708.pdfKWB-documents_20191205.enlEndNote494927<style face="normal" font="default" size="100%">Project AMEDEUS “Accelerate membrane development for urban sewage purification" Yearly project activity report n°1 period 0ct 05-sept 06 </style>internal-pdf://2581371096/Lesjean-2006-49.pdfKWB-documents_20191205.enlEndNote39339347<style face="normal" font="default" size="100%">Ten persistent myths and the realities of the MBR technology for municipal applications</style>internal-pdf://0662398641/Lesjean-2010-393.pdfKWB-documents_20191205.enlEndNote26826847<style face="normal" font="default" size="100%">Evidences of unknown anaerobically cell intern stored carbon source used for enhanced post-denitrification</style>internal-pdf://1448771267/Lesjean-2008-268.pdfKWB-documents_20191205.enlEndNote22322327<style face="normal" font="default" size="11">Möglichkeiten und Grenzen der Revitalisierung der Stadtspree als Lebensraum für die Fischfauna</style>internal-pdf://3374158169/Leszinski-2009-223.pdfKWB-documents_20191205.enlEndNote24724727<style face="normal" font="default" size="11">Auswirkungen urbaner Nutzungen auf den Stoffhaushalt und die Biozönosen von Tieflandflüssen unter besonderer Berücksichtigung der Mischwasserentlastung</style>internal-pdf://3948381637/Leszinski-2006-247.pdfKWB-documents_20191205.enlEndNote24824827<style face="normal" font="default" size="11">Immissionsorientierte Bewertung von Mischwasserentlastungen in Tieflandflüssen</style>internal-pdf://1558086906/Leszinski-2007-248.pdfKWB-documents_20191205.enlEndNote12712747<style face="normal" font="default" size="100%">Estimating of the solute transport parameters retardation factor and decay coefficient of pharmaceutical residues using the program visual CXTFIT</style>internal-pdf://2778503321/Licht-2006-127.pdfKWB-documents_20191205.enlEndNote1721726<style face="normal" font="default" size="11">12 Jahre Pilotbetrieb Karolinenhöhe - Zusammenfassende Auswertung</style>
internal-pdf://0186023541/Liese-2007-172.pdf
KWB-documents_20191205.enlEndNote444427<style face="normal" font="default" size="100%">12 Jahre Pilotbetrieb Karolinenhöhe – eine erste Auswertung</style>internal-pdf://2111833628/Liese-2004-44.pdfKWB-documents_20191205.enlEndNote56356332<style face="normal" font="default" size="100%">Aufbau einer MS-Access-Datenbank zur Versuchsdokumentation</style>internal-pdf://3079553647/Linge-2012-563.pdfKWB-documents_20191205.enlEndNote42042017<style face="normal" font="default" size="100%">Comparative studies on the retardation and reduction of glyphosate during subsurface passage</style>
internal-pdf://1434589844/Litz-2011-420.pdf
KWB-documents_20191205.enlEndNote1085108527<style face="normal" font="default" size="100%">Reasons/conditions leading to the choice of the 5 pilots</style>
internal-pdf://1171120802/Loderer-2018-1085.pdf
KWB-documents_20191205.enlEndNote1098109827<style face="normal" font="default" size="100%">D2.4 Feasibility of mainstream nitrogen removal and biomass production with duckweed bioreactor</style>internal-pdf://1203125622/Loderer-2018-1098.pdfKWB-documents_20191205.enlEndNote45345327<style face="normal" font="default" size="100%">Using bacteriophages, indicator bacteria, and viral pathogens for assessing the health risk of drinking water obtained by bank filtration</style>internal-pdf://3842767541/López-Pila-2006-453.pdfKWB-documents_20191205.enlEndNote40440427<style face="normal" font="default" size="100%">Results on the background work and data integration of MAR systems for an Integrated Water Resource Management</style>internal-pdf://3970590197/Lorenzen-2007-404.pdfKWB-documents_20191205.enlEndNote38338317<style face="normal" font="default" size="100%">A Simple Method to Hide Data Loggers Safely in Observation Wells</style>KWB-documents_20191205.enlEndNote34034017<style face="normal" font="default" size="100%">Assessment of the potential for bank filtration in a water-stressed megacity (Delhi, India)</style>internal-pdf://2871090588/Lorenzen-2010-340.pdfKWB-documents_20191205.enlEndNote393927<style face="normal" font="default" size="100%">Progress Report No. 01 - Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater (SCST)</style>internal-pdf://3135153915/Luck-2004-39.pdfKWB-documents_20191205.enlEndNote8827<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor (ENREM) - Progress report 1- LIFE 04 ENV/D/058</style>internal-pdf://3016138838/Luck-2005-8.pdfKWB-documents_20191205.enlEndNote272747<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries et leurs toxines dans la rivière Erdre (France)</style>internal-pdf://1640605357/Luck-2004-27.pdfKWB-documents_20191205.enlEndNote1172117247<style face="normal" font="default" size="100%">Operational experience of containerised sequencing batch MBR plant for semi-decentralised areas reaching high effluent requirements</style>KWB-documents_20191205.enlEndNote414127<style face="normal" font="default" size="100%">Machbarkeitsstudie für die Einrichtung eines Informations- und Testzentrums Messtechnik (ITZM) im Wasser- und Abwasserbereich</style>internal-pdf://0860464735/Lühr-2004-41.pdfKWB-documents_20191205.enlEndNote22422427<style face="normal" font="default" size="11">WSSTP - Urban Pilot Theme 1: Project proposals and Demonstration Sites. Managing rain events and flooding in urban areas</style>internal-pdf://2201572613/Lynggaard-Jensen-2008-224.pdfKWB-documents_20191205.enlEndNote57557527<style face="normal" font="default" size="100%">Depth-oriented sampling, seasonal effects and impact of intermittent operation - Documentation of data acquisition and results from field and laboratory experiments</style>internal-pdf://1237986649/Maiwald-2011-575.pdfKWB-documents_20191205.enlEndNote1158115832<style face="normal" font="default" size="100%">Effect of constructed wetlands in retention of agricultural diffuse pollution – two case studies in Brittany (France)</style>KWB-documents_20191205.enlEndNote20420427<style face="normal" font="default" size="11">Retention of agricultural diffuse pollution through constructed wetlands - A case study in Iffendic (France)</style>internal-pdf://2487333300/Mangeot-2009-204.pdfKWB-documents_20191205.enlEndNote24124147<style face="normal" font="default" size="11">Erfahrungen mit neuronalen Netzen für Simulationen des Kanalnetzes</style>KWB-documents_20191205.enlEndNote24224247<style face="normal" font="default" size="11">Pegelbasierte Förderstromregelung - eine Möglichkeit zur gezielten Bewirtschaftung des Kanals</style>KWB-documents_20191205.enlEndNote32432432<style face="normal" font="default" size="11">Anwendungsgrenzen automatisierter Datenanalyse zur quantitativen Diagnose von Brunnenalterungsprozessen aus der zeitlichen Änderung der Brunnenergiebigkeit auf Basis kontinuierlicher Messungen von Betriebsparametern am Beispiel der Brunnengalerie Tegel-Hohenzollernkanal der Berliner Wasserbetriebe</style>internal-pdf://3310186281/Martin-2009-324.pdfKWB-documents_20191205.enlEndNote81481432<style face="normal" font="default" size="100%">Identification of individual rain events and evaluation of their specific characteristics from pluviograph records: A review with analysis of data from a project investigating micro pollutant loads in Berlin rainwater runoff</style>internal-pdf://3852596911/Masch-2015-814.pdfKWB-documents_20191205.enlEndNote77177132<style face="normal" font="default" size="100%">Risk inventory for impacts of emerging subsurface activities on groundwater</style>internal-pdf://1085163934/Massat-2012-771.pdfKWB-documents_20191205.enlEndNote13213247<style face="normal" font="default" size="100%">Investigating surface water - groundwater interactions with the help of sewage indicators in Berlin, Germany</style>internal-pdf://1135191569/Massmann-2004-132.PDFKWB-documents_20191205.enlEndNote12912917<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration - Investigation of residues of phenazone-type analgesics </style>
internal-pdf://2768525875/Massmann-2007-129.pdf
KWB-documents_20191205.enlEndNote13713717<style face="normal" font="default" size="100%">The impact of variable temperatures on the redox conditions and the behaviour of pharmaceutical residues during artificial recharge</style>
internal-pdf://4286772912/Massmann-2006-137.pdf
KWB-documents_20191205.enlEndNote13613647<style face="normal" font="default" size="100%">The impact of alternating redox conditions on groundwater chemistry during artificial recharge in Berlin</style>internal-pdf://3333396555/Massmann-2006-136.pdfKWB-documents_20191205.enlEndNote13513547<style face="normal" font="default" size="100%">Evaluation of the hydrochemical conditions during bank filtration and artificial recharge in Berlin</style>internal-pdf://3960772605/Massmann-2006-135.pdfKWB-documents_20191205.enlEndNote13113117<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration – Investigation of residues of phenazone-type analgesics</style>
internal-pdf://1310415333/Massmann-2008-131.pdf
KWB-documents_20191205.enlEndNote13313317<style face="normal" font="default" size="100%">Trinkwassergewinnung in urbanen Räumen - Erkenntnisse zur Uferlfiltration in Berlin</style>
internal-pdf://1076124055/Massmann-2007-133.pdf
KWB-documents_20191205.enlEndNote898917<style face="normal" font="default" size="100%">Investigating the influence of treated sewage in ground- and surface water using wastewater indicators in Berlin, Germany</style>
internal-pdf://2872157635/Massmann-2004-89.pdf
KWB-documents_20191205.enlEndNote13813847<style face="normal" font="default" size="100%">Application of Different Tracers to Evaluate the Flow Regime at Riverbank Filtration Sites in Berlin, Germany</style>internal-pdf://2875043262/Massmann-2003-138.pdfKWB-documents_20191205.enlEndNote43243217<style face="normal" font="default" size="100%">Seasonal and spatial distribution of redox zones during lake bank filtration in Berlin, Germany</style>
internal-pdf://0549199280/Massmann-2007-432.pdf
KWB-documents_20191205.enlEndNote1140114017<style face="normal" font="default" size="100%">Trinkwassergewinnung in urbanen Räumen - Erkenntnisse zur Uferfiltration in Berlin</style>
KWB-documents_20191205.enlEndNote13913917<style face="normal" font="default" size="100%">Identification of processes affecting excess airformation during natural bank filtration and managed aquifer recharge</style>
internal-pdf://0856455541/Massmann-2008-139.pdf
KWB-documents_20191205.enlEndNote13413417<style face="normal" font="default" size="100%">Investigation of groundwater residence times during bank filtration in Berlin - a multi-tracer approach</style>
internal-pdf://0881678587/Massmann-2007-134.pdf
KWB-documents_20191205.enlEndNote888847<style face="normal" font="default" size="100%">Using the Tritium/Helium Age Dating Method to characterise two river recharged aquifer systems in Germany</style>internal-pdf://0607104384/Massmann-2003-88.pdfKWB-documents_20191205.enlEndNote43343317<style face="normal" font="default" size="100%">Analysis of long-term dispersion in a river-recharged aquifer using tritium/helium data</style>
internal-pdf://2997902670/Massmann-2009-433.pdf
KWB-documents_20191205.enlEndNote21921927<style face="normal" font="default" size="11">River water quality modelling: Status quo</style>internal-pdf://0446533899/Matzinger-2009-219.pdfKWB-documents_20191205.enlEndNote102010205<style face="normal" font="default" size="100%">Maßnahmen der Regenwasserbewirtschaftung – Umfassende Bewertung als Entscheidungshilfe</style>internal-pdf://0408657630/Matzinger-2017-1020.pdfKWB-documents_20191205.enlEndNote1023102317<style face="normal" font="default" size="100%">Maßnahmenplanung unter Berücksichtigung der Regenwasserbewirtschaftung - Ergebnisse des Projekts Kuras</style>
internal-pdf://1268359034/Matzinger-2017-1023.pdf
KWB-documents_20191205.enlEndNote4934935<style face="normal" font="default" size="100%">Modellierung von biogeochemischen Prozessen in Fließgewässern</style>internal-pdf://0120179969/Matzinger-2012-493.pdfKWB-documents_20191205.enlEndNote1107110747<style face="normal" font="default" size="100%">Neues zur Auswahl geeigneter blau-grau-grüner Infrastrukturen für das Quartier</style>internal-pdf://3358193801/Matzinger-2019-1107.pdfKWB-documents_20191205.enlEndNote37437447<style face="normal" font="default" size="100%">Buffer system implementation with increased infiltration and nitrate retention capacity - A case study from Brittany, France</style>internal-pdf://0180381938/Matzinger-2010-374.pdfKWB-documents_20191205.enlEndNote1108110827<style face="normal" font="default" size="100%">Optimierte Materialien und Verfahren zur Entfernung von Mikroplastik aus dem Wasserkreislauf - Schlussbericht Verbundprojekt OEMP (Teilprojekt Kompetenzzentrum Wasser Berlin gGmbH)</style>internal-pdf://0572321530/Matzinger-2019-1108.pdfKWB-documents_20191205.enlEndNote21821827<style face="normal" font="default" size="11">Immissionsrichtlinien für Mischwassereinleitungen</style>internal-pdf://1905955005/Matzinger-2008-218.pdfKWB-documents_20191205.enlEndNote19419447<style face="normal" font="default" size="11">Assessing the effectiveness of a constructed wetland for water quality mitigation in Brittany (France) - A case study within the Aquisafe project</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://2368778614/Matzinger-2008-194.pdfKWB-documents_20191205.enlEndNote37837817<style face="normal" font="default" size="100%">Hypolimnetic oxygen consumption by sediment-based reduced substances in former eutrophic lakes</style>
internal-pdf://3545615539/Matzinger-2010-378.pdf
KWB-documents_20191205.enlEndNote66066047<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Standorte</style>internal-pdf://2013642015/Matzinger-2013-660.pdfKWB-documents_20191205.enlEndNote1105110547<style face="normal" font="default" size="100%">Maßnahmenplanung für die Regenwasserbewirtschaftung in Berlin Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://2452402236/Matzinger-2019-1105.pdfKWB-documents_20191205.enlEndNote1104110447<style face="normal" font="default" size="100%">Berücksichtigung vielfältiger Ziele der Regenwasserbewirtschaftung in der Planung - Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://0702068422/Matzinger-2019-1104.pdfKWB-documents_20191205.enlEndNote1103110347<style face="normal" font="default" size="100%">Potenzial von Bilddaten aus sozialen Medien für die urbane Überflutungsvorsorge - Versuch einer Anwendung für zwei extreme Starkregenereignisse in Berlin. </style>internal-pdf://2384799813/Matzinger-2019-1103.pdfKWB-documents_20191205.enlEndNote1024102417<style face="normal" font="default" size="100%">Die Potenziale der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>
internal-pdf://3960905641/Matzinger-2017-1024.pdf
KWB-documents_20191205.enlEndNote1080108017<style face="normal" font="default" size="100%">Ergebnisse des Projekts KURAS - Integrierte Maßnahmenplanung unter Berücksichtigung der vielfältigen Potentiale der Regenwasserbewirtschaftung</style>
internal-pdf://0099189714/Matzinger-2018-1080.pdf
KWB-documents_20191205.enlEndNote19519547<style face="normal" font="default" size="11">Diffuse pollution and potential mitigation strategies - two case studies within the Aquisafe Project from agriculturally dominated Brittany (France)</style>internal-pdf://4081758504/Matzinger-2008-195.pdfKWB-documents_20191205.enlEndNote1142114217<style face="normal" font="default" size="100%">Impact-based management of combined sewer overflows – Introduction to a flexible planning instrument</style>
KWB-documents_20191205.enlEndNote45045027<style face="normal" font="default" size="100%">Ammonia toxicity: Impact assessment of combined sewer overflows on the River Spree in Berlin</style>internal-pdf://0325342406/Matzinger-2011-450.pdfKWB-documents_20191205.enlEndNote53053027<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change (Deliverable 5.4.2)</style>internal-pdf://2160871137/Matzinger-2012-530.pdfKWB-documents_20191205.enlEndNote8578575<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change</style>
internal-pdf://4142838706/Matzinger-2015-857.pdf
KWB-documents_20191205.enlEndNote1027102727<style face="normal" font="default" size="100%">Zielorientierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>internal-pdf://3606472960/Matzinger-2017-1027.pdfKWB-documents_20191205.enlEndNote98298247<style face="normal" font="default" size="100%">Quantification of multiple benefits and cost of stormwater management</style>internal-pdf://2904523385/Matzinger-2016-982.pdfKWB-documents_20191205.enlEndNote98198147<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung</style>internal-pdf://0642154973/Matzinger-2016-981.pdfKWB-documents_20191205.enlEndNote63563547<style face="normal" font="default" size="100%">Aufbau, Validierung und Anwendung eines modellbasierten Werkzeugs für die immissionsbasierte Maßnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://1822383364/Matzinger-2013-635.pdfKWB-documents_20191205.enlEndNote1143114317<style face="normal" font="default" size="100%">Modellbasiertes Werkzeug - immissionsbasierte Maßnahmenplanung im Berliner Mischwassersystem</style>
KWB-documents_20191205.enlEndNote63463447<style face="normal" font="default" size="100%">Modellbasiertes Werkzeug - immissionsbasierte Massnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://0120693934/Matzinger-2013-634.pdfKWB-documents_20191205.enlEndNote1025102517<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung - Ergebnisse aus dem Verbundprojekt KURAS</style>
internal-pdf://0497721304/Matzinger-2017-1025.pdf
KWB-documents_20191205.enlEndNote102610265<style face="normal" font="default" size="100%">Potenziale der Regenwasserbewirtschaftung im Siedlungsbestand</style>internal-pdf://1119512723/Matzinger-2017-1026.pdfKWB-documents_20191205.enlEndNote50950947<style face="normal" font="default" size="100%">A large urban river under pressure - Research and actions for the mitigation of impacts from combined sewer overflows in Berlin, Germany.</style>internal-pdf://4291447324/Matzinger-2012-509.pdfKWB-documents_20191205.enlEndNote18318347<style face="normal" font="default" size="11">Impact assessment of combined sewer overflows on the River Spree in Berlin, Germany</style>internal-pdf://3121640707/Matzinger-2009-183.pdfKWB-documents_20191205.enlEndNote1079107917<style face="normal" font="default" size="100%">Integrierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Anwendung und Weiterentwicklung der "KURAS-Methode" in Berlin</style>
internal-pdf://0296387475/Matzinger-2018-1079.pdf
KWB-documents_20191205.enlEndNote1153115347<style face="normal" font="default" size="100%">Zones tampons pour prévenir la pollution diffuse en milieu rural et semi-rural – présentation du projet “Aquisafe“.</style>KWB-documents_20191205.enlEndNote1021102117<style face="normal" font="default" size="100%">Integrated planning of urban stormwater management - Introduction to the KURAS-approach from Berlin, Germany</style>internal-pdf://0051027756/Matzinger-2017-1021.pdfKWB-documents_20191205.enlEndNote74674610<style face="normal" font="default" size="100%">Quantifying the effects of urban stormwater management - Towards a novel approach for integrated planning</style>internal-pdf://3201310600/Matzinger-2014-746.pdfKWB-documents_20191205.enlEndNote19619617<style face="normal" font="default" size="11">Naturnahe Puffer gegen diffuse Verschmutzung</style>
internal-pdf://2668869690/Matzinger-2009-196.pdf
KWB-documents_20191205.enlEndNote31031017<style face="normal" font="default" size="100%">Naturnahe Pufferzonen als Gewässerschutzmodelle</style>
internal-pdf://1593122161/Matzinger-2009-310.pdf
KWB-documents_20191205.enlEndNote1155115547<style face="normal" font="default" size="100%">Reduction of non-point source pollution in surface waters – presentation of semi-natural methods with case studies from France and the USA.</style>KWB-documents_20191205.enlEndNote66866817<style face="normal" font="default" size="100%">KURAS gestartet: Neue Konzepte für Berlin</style>
internal-pdf://3362320290/Matzinger-2014-668.pdf
KWB-documents_20191205.enlEndNote74774717<style face="normal" font="default" size="100%">New concepts for combined stormwater and wastewater management</style>
internal-pdf://0650846478/Matzinger-2014-747.pdf
KWB-documents_20191205.enlEndNote81281247<style face="normal" font="default" size="100%">Stormwater runoff leads to pollution peaks in small urban stream</style>internal-pdf://0341552465/Matzinger-2015-812.pdfKWB-documents_20191205.enlEndNote80880847<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – Load estimation at city scale</style>internal-pdf://3429111453/Matzinger-2015-808.pdfKWB-documents_20191205.enlEndNote1050105047<style face="normal" font="default" size="100%">Quantitative Beschreibung der Resilienz urbaner Wassersysteme</style>internal-pdf://1944797400/Matzinger-2018-1050.pdfKWB-documents_20191205.enlEndNote1101110147<style face="normal" font="default" size="100%">Resilience of urban drainage systems - Proposition of a quantitative approach</style>internal-pdf://2298431128/Matzinger-2019-1101.pdfKWB-documents_20191205.enlEndNote1062106232<style face="normal" font="default" size="100%">Qualitätssicherung von UV-Onlinedaten bei der Ozonierung kommunalen Abwassers - Identifizierung von Fouling mittels Onlinedatenanalyse zur Optimierung der Betriebsführung</style>internal-pdf://4270798414/Mauch-2018-1062.pdfKWB-documents_20191205.enlEndNote14014047<style face="normal" font="default" size="100%">Fate and transport of pharmaceutical residues during bank filtration</style>internal-pdf://3146815423/Mechlinski-2006-140.pdfKWB-documents_20191205.enlEndNote42642617<style face="normal" font="default" size="100%">Competitiveness of invasive and native cyanobacteria from temperate freshwaters under various light and temperature conditions</style>
internal-pdf://3552976117/Mehnert-2010-426.pdf
KWB-documents_20191205.enlEndNote44844832<style face="normal" font="default" size="100%">Ökobilanz und wirtschaftlicher Vergleich verschiedener Phosphoreliminationsverfahren in Kläranlagen</style>internal-pdf://2916863077/Meinel-2011-448.pdfKWB-documents_20191205.enlEndNote59059027<style face="normal" font="default" size="100%">RIKO-1 RISIKOANALYSE DES EINTRAGS MIKROBIELLER KONTAMINATION IN TRINKWASSERBRUNNEN UND ABLEITUNG VON VERMEIDUNGSSTRATEGIEN – PHASE 1 -Durchführung und Ergebnisse der Tracerversuche an Brunnen im Wasserwerk Jungfernheide</style>internal-pdf://0671098923/Menz-2013-590.pdfKWB-documents_20191205.enlEndNote97597532<style face="normal" font="default" size="100%">Oxygen delivering processes in groundwater and their relevance for iron-related well clogging processes - A case study on the quaternary aquifers of Berlin</style>internal-pdf://1450158864/Menz-2016-975.pdfKWB-documents_20191205.enlEndNote57757727<style face="normal" font="default" size="100%">Efficiency of H2O2 treatment - Documentation of data acquisition and recommendation of optimized procedure</style>internal-pdf://0762327250/Menz-2011-577.pdfKWB-documents_20191205.enlEndNote1033103327<style face="normal" font="default" size="100%">Zeitreihenanalyse zur Beeinflussung des Teufelsseemoores durch die Grundwasserentnahme - Projekt: Rahmenvertrag WV-GRW</style>internal-pdf://2675449574/Menz-2017-1033.pdfKWB-documents_20191205.enlEndNote58758727<style face="normal" font="default" size="100%">RIKO-1 Synthesebericht</style>internal-pdf://0703079602/Menz-2013-587.pdfKWB-documents_20191205.enlEndNote72672627<style face="normal" font="default" size="100%">Geological CO2 storage and other emerging subsurface activities - Best practice: monitoring strategy & methods for groundwater protection</style>internal-pdf://0265678973/Menz-2014-726.pdfKWB-documents_20191205.enlEndNote46446447<style face="normal" font="default" size="100%">Impact of well operation on iron-related clogging in quarternary aquifers in Berlin, Germany </style>internal-pdf://2632339992/Menz-2011-464.pdfKWB-documents_20191205.enlEndNote58858827<style face="normal" font="default" size="100%">RIKO-1 Durchführung und Ergebnisse der Felduntersuchungen zur Uferfiltrat-Passage an Brunnen im Wasserwerk Tiefwerder</style>internal-pdf://1658073361/Menz-2013-588.pdfKWB-documents_20191205.enlEndNote96796732<style face="normal" font="default" size="100%">Abschätzung der Verweilzeit bei der Untergrundpassage am Grundwasseranreicherungsstandort Berlin-Spandau anhand der Umwelttracer Temperatur und stabile Isotope - Masterarbeit</style>KWB-documents_20191205.enlEndNote66666632<style face="normal" font="default" size="100%">Optimisation of sewage sludge treatment to foster dewaterability and nutrient recovery</style>internal-pdf://0413288228/Michalski-2014-666.pdfKWB-documents_20191205.enlEndNote33333327<style face="normal" font="default" size="100%">DOC and Trace Organic removal via ozonation & underground passage - expected benefit and limitations</style>internal-pdf://3460722021/Miehe-2010-333.pdfKWB-documents_20191205.enlEndNote61761747<style face="normal" font="default" size="100%">Managed Aquifer Recharge with Reclaimed Water –Optimization of Pre-treatment via Ozonation</style>internal-pdf://3223058735/Miehe-2013-617.pdfKWB-documents_20191205.enlEndNote45445427<style face="normal" font="default" size="100%">Synthesis Report on Practical Implications and Opportunities for Transfer to Field Scale</style>internal-pdf://0731011245/Miehe-2011-454.pdfKWB-documents_20191205.enlEndNote62862827<style face="normal" font="default" size="100%">Abschlussbericht OXERAM 2</style>internal-pdf://3087355193/Miehe-2013-628.pdfKWB-documents_20191205.enlEndNote65465427<style face="normal" font="default" size="100%">Optimization of flocculation for tertiary filtration processes and evaluation of sustainability of tertiary wastewater treatment</style>internal-pdf://1936253374/Miehe-2014-654.pdfKWB-documents_20191205.enlEndNote85485417<style face="normal" font="default" size="100%">Vergleich von Desinfektionsverfahren für eine landwirtschaftliche Wasserwiederverwendung in Braunschweig</style>
internal-pdf://2415792366/Miehe-2015-854.pdf
KWB-documents_20191205.enlEndNote1227122747<style face="normal" font="default" size="100%">Extensive Green Roof Performance and Design under Different Climatic Conditions-Analyses from China and Germany</style>KWB-documents_20191205.enlEndNote1228122847<style face="normal" font="default" size="100%">Compliance of combined nature-based and engineered systems with European water reuse regulations</style>KWB-documents_20191205.enlEndNote98098017<style face="normal" font="default" size="100%">KURAS - Forschung trifft Praxis: Zukunftsorientierte Anpassung des urbanen Regenwasser- und Abwassermanagements</style>
internal-pdf://0392593573/Mitchell-2016-980.pdf
KWB-documents_20191205.enlEndNote78378347<style face="normal" font="default" size="100%">Improving Urban Drainage in face of climate and demographic change: interim results of the joint research project KURAS (Concepts for urban rainwater management, drainage and sewage systems)</style>KWB-documents_20191205.enlEndNote17317327<style face="normal" font="default" size="100%">Kausale Zusammenhänge zwischen den Signalen einer optischen Multiparametersonde und Biofilmwachstum in wasserführenden Rohrnetzen - Erste Untersuchungen</style>internal-pdf://3521971630/Mittenzwey-2006-173.pdfKWB-documents_20191205.enlEndNote19219232<style face="normal" font="default" size="11">Analyse de la nature, de l’occurrence et des risques de contamination d’eau de surface par des pollutions diffuses en milieu rural et semi-rural en Europe</style>internal-pdf://4062164956/Morel-Fatio-2007-192.pdfKWB-documents_20191205.enlEndNote31631617<style face="normal" font="Courier New" size="10">Research Project Aquisafe: Mitigation of contaminants in rural and semi-rural environments to protect surface source water.</style>
internal-pdf://2774627524/Morel-Fatio-2008-316.pdf
KWB-documents_20191205.enlEndNote19319347<style face="normal" font="default" size="11">Analysis of source water contamination in rural and semi-rural areas in Europe and United States</style>internal-pdf://0880785310/Morel-Fatio-2008-193.pdfKWB-documents_20191205.enlEndNote1088108827<style face="normal" font="default" size="100%">5 Training Courses in the 5 regions for utility partners and stakeholders on pilotactivities</style>
internal-pdf://4282442590/Müller-2018-1088.pdf
KWB-documents_20191205.enlEndNote1089108927<style face="normal" font="default" size="100%">5 REPORTS ON THE LEGISLATIVE/ADMINISTRATIVE FRAMEWORKS IN THE INVOLVED REGION – STRUCTURE AND QUESTIONNAIRE</style>
internal-pdf://1850729357/Müller-2018-1089.pdf
KWB-documents_20191205.enlEndNote51251217<style face="normal" font="default" size="100%">Hypolimnetic Oxygen Depletion in Eutrophic Lakes</style>
internal-pdf://0640995138/Müller-2012-512.pdf
KWB-documents_20191205.enlEndNote55955917<style face="normal" font="default" size="100%">Transport of primidone, carbamazepine, and sulfamethoxazole in thermally treated sediments—laboratory column experiments</style>
internal-pdf://0345448979/Müller-2013-559.pdf
KWB-documents_20191205.enlEndNote31231217<style face="normal" font="default" size="11">The HSG procedure for modelling integrated urban wastewater systems</style>
internal-pdf://2832168054/Muschalla-2009-312.pdf
KWB-documents_20191205.enlEndNote21321347<style face="normal" font="default" size="11">The HSG Guideline Document for Modelling Integrated Urban Wastewater Systems</style>internal-pdf://2250739823/Muschalla-2008-213.pdfKWB-documents_20191205.enlEndNote28228227<style face="normal" font="default" size="100%">Final report for task 8 of the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST) , Fertilizer Usage</style>internal-pdf://1280146983/Muskolus-2007-282.pdfKWB-documents_20191205.enlEndNote56156132<style face="normal" font="default" size="100%">Vergleichende Ökobilanz von weitergehenden Stickstoffeliminierungsverfahren in Großkläranlagen</style>internal-pdf://0003026655/Mutz-2013-561.pdfKWB-documents_20191205.enlEndNote1188118847<style face="normal" font="default" size="100%">Ist eine weitergehende Stickstoffentfernung in die Gewässer ökonomisch sinnvoll?</style>KWB-documents_20191205.enlEndNote78978947<style face="normal" font="default" size="100%">Is Further Nitrogen Reduction in Surface Waters Economically Feasible?</style>internal-pdf://2858265545/Mutz-2015-789.pdfinternal-pdf://4240354405/Mutz-2015-7891.pdfKWB-documents_20191205.enlEndNote63863827<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Bereiche, NITROLIMIT Diskussionspapier Band 2</style>internal-pdf://2131204062/Mutz-2013-638.pdfKWB-documents_20191205.enlEndNote79879810<style face="normal" font="default" size="100%">Integrating Ozonation or Adsorption on Activated Carbon into Tertiary Wastewater Treatment: Environmental Impacts with Life Cycle Assessment</style>internal-pdf://3498751120/Mutz-2015-798.pdfinternal-pdf://1787147564/Mutz-2015-7982.pdfinternal-pdf://2421142953/Mutz-2015-7983.pdfKWB-documents_20191205.enlEndNote1187118747<style face="normal" font="default" size="100%">EU project DEMEAU (2012-2015) Demonstration of promising technologies to address emerging pollutants in water and wastewater, Work area 5: Fostering the uptake of novel technologies in the water sector</style>KWB-documents_20191205.enlEndNote93993947<style face="normal" font="default" size="100%">EU project P-REX (2012-2015) Phosphorus recovery from municipal wastewater: from prototype to market, Work area 4: Life Cycle Assessment</style>internal-pdf://0553223698/Mutz-2014-939.pdfinternal-pdf://3444541164/Mutz-2014-9391.pdfKWB-documents_20191205.enlEndNote1049104927<style face="normal" font="default" size="100%">Ökobilanz von ausgesuchten Maßnahmen im urbanen Bereich. NITROLIMIT2, Gemeinsamer Ergebnisbericht, Kap. 3.6</style>internal-pdf://3656646906/Mutz-2016-1049.pdfKWB-documents_20191205.enlEndNote99699617<style face="normal" font="default" size="100%">Einfluss von Ozonung oder Aktivkohleadsorption zur weitergehenden Entfernung organischer Spurenstoffe auf den Energieaufwand und CO2-Fußabdruck einer Kläranlage</style>
internal-pdf://0509980595/Mutz-2017-996.pdf
KWB-documents_20191205.enlEndNote64464447<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung auf Großklärwerken – eine Ökobilanz</style>internal-pdf://0123678389/Mutz-2013-644.pdfinternal-pdf://1253860468/Mutz-2013-6441.pdfKWB-documents_20191205.enlEndNote1119111917<style face="normal" font="default" size="100%">Wasser in der Stadt gemeinsam anders denken und planen</style>KWB-documents_20191205.enlEndNote1102110247<style face="normal" font="default" size="100%">Potenziale grau-grün-blau gekoppelter Wasserinfrastrukturen für die Gestaltung zukunftsfähiger und klimagerechter Städte - Ergebnisse eines strategischen Planungsprozesses in einem Pilotquartier</style>internal-pdf://2382771495/Nenz-2019-1102.PDFinternal-pdf://0123968011/Nenz-2019-11021.pdfKWB-documents_20191205.enlEndNote1106110647<style face="normal" font="default" size="100%">Integration eines partizipativen Ansatzes in den Planungsprozess</style>internal-pdf://2739131427/Nenz-2019-1106.pdfKWB-documents_20191205.enlEndNote35035047<style face="normal" font="default" size="100%">The Development of an International Guidance Manual for the Management of Toxic Cyanobacteria</style><style face="bold" font="Times New Roman" size="14"> </style>internal-pdf://3567188536/Newcombe-2010-350.pdfKWB-documents_20191205.enlEndNote26926932<style face="normal" font="default" size="100%">Nutzung zellinterner Speicherstoffe als Kohlenstoffquelle bei der nachgeschalteten Denitrifikation ohne Zugabe einer externen Kohlenstoffquelle</style>internal-pdf://2949152201/Nicke-2005-269.pdfKWB-documents_20191205.enlEndNote97997947<style face="normal" font="default" size="100%">Improving Decision-Making in Urban Stormwater Management – Strategy and stakeholder process </style>internal-pdf://0728596489/Nickel-2016-979.pdfKWB-documents_20191205.enlEndNote67367327<style face="normal" font="default" size="100%">Abschlussbericht NITROLIMIT I: Stickstofflimitation in Binnengewässern – Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar?</style>internal-pdf://0308015807/Nixdorf-2014-673.pdfKWB-documents_20191205.enlEndNote1201120127<style face="normal" font="default" size="100%">Info-Broschüre: Einsatzmöglichkeiten für Nährstoffrezyklate im Ökolandbau (Projekt nurec4org)</style>internal-pdf://0753452067/nurec4org-2018-1201.pdfKWB-documents_20191205.enlEndNote44144127<style face="normal" font="default" size="100%">Integrated modelling concepts for bank filtration processes: coupled ground water transport and biogeochemical reactions.</style>internal-pdf://0982203011/Nützmann-2006-441.pdfKWB-documents_20191205.enlEndNote14114147<style face="normal" font="default" size="100%">Visual CXTFIT - a user-friendly simulation tool for modelling one-dimensional transport, sorption and degradation processes during bank filtration</style>internal-pdf://2409928483/Nützmann-2006-141.pdfKWB-documents_20191205.enlEndNote28028027<style face="normal" font="default" size="100%">Final cost calculation for the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST)</style>internal-pdf://2897174977/Oldenburg-2007-280.pdfKWB-documents_20191205.enlEndNote1093109327<style face="normal" font="default" size="100%">D 1.2: Design and performance of advanced primary treatment with microscreen</style>internal-pdf://0799365965/Olsson-2018-1093.pdfKWB-documents_20191205.enlEndNote1205120532<style face="normal" font="default" size="100%">Beurteilung von Managementmaßnahmen am Berliner Halensee</style>KWB-documents_20191205.enlEndNote37537547<style face="normal" font="default" size="100%">Development of a GIS Method to Localize Critical Source Areas of Diffuse Nitrate Pollution</style>internal-pdf://0047540310/Orlikowski-2010-375.pdfKWB-documents_20191205.enlEndNote43543517<style face="normal" font="default" size="100%">Development of a GIS method to localize critical source areas of diffuse nitrate pollution</style>
internal-pdf://1064827370/Orlikowski-2011-435.pdf
KWB-documents_20191205.enlEndNote34734727<style face="normal" font="default" size="100%">Ergebnisse der bundesweiten DVGW-Umfrage zur Instandhaltung von Brunnen 2009</style>internal-pdf://1281191191/Orlikowski-2010-347.pdfKWB-documents_20191205.enlEndNote17417427<style face="normal" font="default" size="11">Advanced statistical analyses of well data. </style>internal-pdf://0211990336/Orlikowski-2009-174.pdfKWB-documents_20191205.enlEndNote81381317<style face="normal" font="default" size="100%">Life Cycle Assessment modelling of stormwater treatment systems</style>
internal-pdf://3110451928/O'Sullivan-2015-813.pdf
KWB-documents_20191205.enlEndNote86386332<style face="normal" font="default" size="100%">Bewertung des Einflusses dezentraler Regenwasserbewirtschaftungsmaßnahmen auf das Grundwasser anhand ausgewählter Indikatoren </style>KWB-documents_20191205.enlEndNote97497432<style face="normal" font="default" size="100%">Indirect Potable Reuse: A Risk Assessment for Vendée Eau</style>internal-pdf://3354434734/Pacheco Fernández-2016-974.pdfKWB-documents_20191205.enlEndNote454527<style face="normal" font="default" size="100%">SCST, Technical interim report 2005</style>internal-pdf://0020946937/Pawlowski-2005-45.pdfKWB-documents_20191205.enlEndNote838347<style face="normal" font="default" size="100%">Application of InfoWorks CS® for the Evaluation of CSO-Impacts in Berlin</style>internal-pdf://4259550137/Pawlowsky-Reusing-2007-83.pdfKWB-documents_20191205.enlEndNote28428447<style face="normal" font="default" size="11">The Berlin Force Main Model - Application of InfoWorks 9.5 CS® for the evaluation of a large force main network and the pollution load to a WWTP</style>internal-pdf://2838461663/Pawlowsky-Reusing-2009-284.pdfinternal-pdf://1701936413/Pawlowsky-Reusing-2009-2842.pdfKWB-documents_20191205.enlEndNote23823847<style face="normal" font="default" size="11">State of Implementation of RTC in Berlin, Germany</style>internal-pdf://3317729629/Pawlowsky-Reusing-2007-238.pdfKWB-documents_20191205.enlEndNote101027<style face="normal" font="default" size="100%">ISM - Integrated Sewage Management - Final Research Report</style>internal-pdf://0375035574/Pawlowsky-Reusing-2006-10.pdfKWB-documents_20191205.enlEndNote21421447<style face="normal" font="default" size="11">Integrated modelling of the impact from Combined Sewer Overflows on the water quality of slow-flowing lowland rivers</style>internal-pdf://0207065121/Pawlowsky-Reusing-2008-214.pdfKWB-documents_20191205.enlEndNote44044027<style face="normal" font="default" size="100%">Investigating hydrogeological-hydrogeochemical processes during bank filtration and artificial ground water recharge using a multi trace approach</style>internal-pdf://0652229141/Pekdeger-2006-440.pdfKWB-documents_20191205.enlEndNote40740727<style face="normal" font="default" size="100%">Preliminary report on data of all inorganic substances and physicochemical parameters listed in the Indian and German drinking water Standards from surface water and groundwater at the 3(+1) field sites</style>internal-pdf://4099223169/Pekdeger-2008-407.pdfKWB-documents_20191205.enlEndNote363627<style face="normal" font="default" size="100%">FINAL REPORT DRAFT v0.1 NASRI Natural and Artificial Systems for Recharge and Infiltration Project acronym: NASRI </style>internal-pdf://3389323520/Pekdeger-2006-36.pdfKWB-documents_20191205.enlEndNote70170127<style face="normal" font="default" size="100%">Identification of existing mitigation systems that can attenuate nitrates during high flow events from drained, agricultural fields</style>internal-pdf://3075006591/Périllon-2010-701.pdfKWB-documents_20191205.enlEndNote37637647<style face="normal" font="default" size="100%">Mitigation of diffuse agricultural pollution in Brittany (France): Pilot designs for constructed wetlands and bioretention swales</style><style face="normal" font="Times New Roman" size="100%"> </style>internal-pdf://3687446582/Périllon-2010-376.pdfKWB-documents_20191205.enlEndNote43643647<style face="normal" font="default" size="100%">Implementation of small organically enriched constructed wetlands to mitigate agricultural nitrate hotspots in Brittany, France</style>internal-pdf://1931695162/Périllon-2011-436.pdfinternal-pdf://0382620792/Périllon-2011-4361.pdfKWB-documents_20191205.enlEndNote27727727<style face="normal" font="default" size="100%">Sanitärkonzepte zur seperaten Behandlung von Urin, Fäkalien und Grauwasser (SCST) - Layman Report</style>internal-pdf://3322773764/Peter-Fröhlich-2007-277.pdfKWB-documents_20191205.enlEndNote27827827<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, faeces and Greywater (SCST) - Results</style>internal-pdf://3731849382/Peter-Fröhlich-2007-278.pdfKWB-documents_20191205.enlEndNote404047<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces and Greywater Pilot Project</style>internal-pdf://3271292904/Peter-Fröhlich-2003-40.pdfKWB-documents_20191205.enlEndNote353517<style face="normal" font="default" size="100%">Separate Ableitung und Behandlung von Urin, Fäkalien und Grauwasser – ein Pilotprojekt </style>
internal-pdf://0826025060/Peter-Fröhlich-2004-35.pdf
KWB-documents_20191205.enlEndNote16116117<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces, and Grey Water - A Pilot Project</style>
KWB-documents_20191205.enlEndNote303047<style face="normal" font="default" size="100%">Sanitärkonzepte zur getrennten Behandlung von Urin, Fäkalien und Grauwasser</style>internal-pdf://3109465098/Peter-Fröhlich-2003-30.pdfKWB-documents_20191205.enlEndNote343447<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater - Cost Comparison with the Conventional Wastewater System</style>KWB-documents_20191205.enlEndNote323247<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater – First Results</style>internal-pdf://0960472437/Peter-Fröhlich-2004-32.pdfKWB-documents_20191205.enlEndNote333347<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater - Demonstration Project in Berlin, Germany</style>internal-pdf://1554752807/Peter-Fröhlich-2004-33.pdfKWB-documents_20191205.enlEndNote313147<style face="normal" font="default" size="100%">EU-Demonstrationsprojekt Sanitärkonzepte für die separate Erfassung und Behandlung von Urin, Fäkalien und Grauwasser - erste Ergebnisse</style>KWB-documents_20191205.enlEndNote36036027<style face="normal" font="default" size="100%">NOM-fouling in low flux UF membrane systems</style>internal-pdf://0117402809/Peter-Varbanets-2007-360.pdfKWB-documents_20191205.enlEndNote78078047<style face="normal" font="default" size="100%">How to find suitable locations for in-sewer storage? - Test on a combined sewer catchment in Berlin</style>internal-pdf://0848460257/Philippon-2015-780.pdfKWB-documents_20191205.enlEndNote69869847<style face="normal" font="default" size="100%">A tool for minimizing the energy demand of drinking water well fields</style>internal-pdf://2679884733/Philippon-2014-698.pdfKWB-documents_20191205.enlEndNote1077107732<style face="normal" font="default" size="100%">Überflutungskarten anhand von Social Media Daten - Erhebung, Auswertung und Validierung am Beispiel von zwei Starkregenereignissen in Berlin</style>internal-pdf://0512721717/Pilger-2018-1077.pdfKWB-documents_20191205.enlEndNote6627<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von Röntgenkontrastmitteln - Zwischenbericht</style>internal-pdf://0304063065/Pineau-2004-6.pdfKWB-documents_20191205.enlEndNote3327<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von iodorganischen Röntgenkontrastmitteln in Krankenhäusern</style>internal-pdf://2463473563/Pineau-2005-3.pdfKWB-documents_20191205.enlEndNote9927<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries dans la rivière Erdre Travaux de recherche en laboratoire. Rapport final Janvier 2004</style>internal-pdf://0677181322/Pineau-2004-9.pdfKWB-documents_20191205.enlEndNote18218227<style face="normal" font="default" size="11">Spurenstoffe in Mischwassereinleitungen</style>internal-pdf://3887314658/Plume-2008-182.pdfKWB-documents_20191205.enlEndNote93893817<style face="normal" font="default" size="100%">Bedeutung oxidativer Prozesse in der Trinkwasseraufbereitung und Abwasserreinigung</style>
internal-pdf://1438483705/Prasse-2014-938.pdf
KWB-documents_20191205.enlEndNote616117<style face="normal" font="default" size="100%">First report on cylindrospermopsin producing Aphanizomenon flos-aquae (Cyanobacteria) isolated from two German lakes</style>
internal-pdf://3188891469/Preußel-2005-61.pdf
KWB-documents_20191205.enlEndNote1045104532<style face="normal" font="default" size="100%">Modellierung der Spurenstoffelimination im Klärwerksablauf durch Ozonung im Labormaßstab. Erprobung alternativer Indikatoren zur Abschätzung der Ozon- und OH-Radikalexposition</style>internal-pdf://3341684842/Rau-2017-1045.pdfKWB-documents_20191205.enlEndNote86286217<style face="normal" font="default" size="100%">Overview of technichal developments in opencast mine drainage at RWE Power AG</style>
internal-pdf://0090003709/Reich-2015-862.pdf
KWB-documents_20191205.enlEndNote86186117<style face="normal" font="default" size="100%">Technische Entwicklung in der Tagebauentwässerung - ein Überblick</style>
internal-pdf://0879466699/Reich-2015-861.pdf
KWB-documents_20191205.enlEndNote75575532<style face="normal" font="default" size="100%">Comparison of UV Irradiation and Performic Acid Dosing for Agricultural Wastewater Reuse in Braunschweig</style>internal-pdf://1585398431/Reichelt-2015-755.pdfinternal-pdf://2293646154/DMS Ludwig Reichelt.docxKWB-documents_20191205.enlEndNote1242124227<style face="normal" font="default" size="100%">Fokusgebiet Sanierung und Erweiterung einer Kindertagesstätte. Arbeitshilfe für die Planung blau-grün-grau gekoppelter Infrastrukturen in der wassersensiblen Stadt</style>internal-pdf://3529221289/Reichmann-2020-1242.pdfKWB-documents_20191205.enlEndNote23623647<style face="normal" font="default" size="11">Analyse von Niederschlagsextremen zur Verbesserung der Steuerung der Abwasserförderung in Berlin</style>KWB-documents_20191205.enlEndNote23723747<style face="normal" font="default" size="11">Räumlich und zeitlich hochaufgelöste Niederschlagsanalyse in Berlin als Randbedingung für die Abwasserförderung</style>KWB-documents_20191205.enlEndNote23023027<style face="normal" font="default" size="11">Analyse der zeitlich hochaufgelösten Niederschlagsdaten 2002 in Berlin</style>internal-pdf://1649118266/Reimer-2008-230.pdfKWB-documents_20191205.enlEndNote48248247<style face="normal" font="default" size="100%">Life Cycle Assessment: Quantifying environmental impacts of urban water management</style>internal-pdf://2176929298/Remy-2010-482.pdfKWB-documents_20191205.enlEndNote1173117347<style face="normal" font="default" size="100%">Energetic comparison of advanced oxidation processes</style>KWB-documents_20191205.enlEndNote48448447<style face="normal" font="default" size="100%">Energetischer Vergleich der erweiterten Oxidationsverfahren</style>internal-pdf://0288048787/Remy-2011-484.pdfKWB-documents_20191205.enlEndNote48348347<style face="normal" font="default" size="100%">Agricultural reuse of WWTP effluent and sludge: Results of CoDiGreen</style>internal-pdf://3637266894/Remy-2012-483.pdfKWB-documents_20191205.enlEndNote47647627<style face="normal" font="default" size="100%">LCA study of Braunschweig wastewater scheme: Final report of project CoDiGreen work package 2</style>internal-pdf://0553602407/Remy-2012-476.pdfKWB-documents_20191205.enlEndNote47547527<style face="normal" font="default" size="100%">LCA study of sludge treatment line in WWTP Berlin-Waßmannsdorf: Final report of project CoDiGreen work package 2</style>internal-pdf://0622611908/Remy-2012-475.pdfKWB-documents_20191205.enlEndNote52052047<style face="normal" font="default" size="11">Agricultural reuse of WWTP effluent and sludge: optimization + environmental footprint via LCA</style>internal-pdf://4050536848/Remy-2013-520.pdfKWB-documents_20191205.enlEndNote62762727<style face="normal" font="default" size="100%">Life Cycle Assessment and Life Cycle Costing of tertiary treatment schemes</style>internal-pdf://2260400962/Remy-2013-627.pdfKWB-documents_20191205.enlEndNote60760747<style face="normal" font="default" size="100%">Ökobilanzen als Entscheidungshilfen bei der Planung von Klärprozessen</style>internal-pdf://3313186028/Remy-2013-607.pdfKWB-documents_20191205.enlEndNote1189118947<style face="normal" font="default" size="100%">Total environmental profile of processes for P recovery from sewage sludge, liquor or ash with LCA</style>KWB-documents_20191205.enlEndNote93593517<style face="normal" font="default" size="100%">Proof of concept for a new energy-positive wastewater treatment scheme</style>
internal-pdf://1449230876/Remy-2014-935.pdf
KWB-documents_20191205.enlEndNote72172110<style face="normal" font="default" size="100%">Technischer Nachweis eines innovativen Konzepts für ein energie-positives Klärwerk</style>internal-pdf://2531780004/Remy-2014-721.pdfKWB-documents_20191205.enlEndNote89489417<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>KWB-documents_20191205.enlEndNote75175147<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Innovative Abwasserbehandlung mit Energiegewinn</style>internal-pdf://3366820555/Remy-2015-751.pdfKWB-documents_20191205.enlEndNote75275247<style face="normal" font="default" size="100%">Evaluating new processes and concepts for energy and resource recovery from municipal wastewater with Life Cycle Assessment</style>internal-pdf://3418488118/Remy-2015-752.pdfinternal-pdf://0762261029/Remy-2015-7522.pdfinternal-pdf://1674086080/Remy-2015-7523.pdfKWB-documents_20191205.enlEndNote69469447<style face="normal" font="default" size="100%">Integrating concepts for energy and resource recovery from municipal wastewater with LCA.</style>internal-pdf://3115070902/Remy-2014-694.pdfKWB-documents_20191205.enlEndNote1038103827<style face="normal" font="default" size="100%">Deliverable D5.1: Proposition of POWERSTEP process schemes and WWTP reference models</style>internal-pdf://0900768938/Remy-2016-1038.pdfKWB-documents_20191205.enlEndNote1068106827<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.5: Recommendations for ecoefficient new concepts of energy positive WWTP</style>internal-pdf://2718006125/Remy-2018-1068.pdfKWB-documents_20191205.enlEndNote100610065<style face="normal" font="default" size="100%">Assessing environmental impacts and benefits of wastewater treatment plants</style>KWB-documents_20191205.enlEndNote1039103927<style face="normal" font="default" size="100%">POWERSTEP WP3 Biogas Valorization and Efficient Energy Management: Deliverable D3.1: Best practices for improved sludge digestion</style>internal-pdf://0543991017/Remy-2016-1039.pdfKWB-documents_20191205.enlEndNote89389327<style face="normal" font="default" size="100%">Comparative Life Cycle Assessment of treatment-recovery paths (D9.2)</style>internal-pdf://0517881557/Remy-2015-893.pdfKWB-documents_20191205.enlEndNote82182127<style face="normal" font="default" size="100%">Life Cycle Assessment of selected processes for P recovery from sewage sludge, sludge liquor, or ash - D9.2</style>internal-pdf://1977294865/Remy-2015-821.pdfKWB-documents_20191205.enlEndNote59759747<style face="normal" font="default" size="100%">Übersicht der Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1243820368/Remy-2013-597.pdfKWB-documents_20191205.enlEndNote60060047<style face="normal" font="default" size="100%">Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1936233763/Remy-2013-600.pdfKWB-documents_20191205.enlEndNote100510055<style face="normal" font="default" size="100%">Life Cycle Assessment of processes for P recycling</style>KWB-documents_20191205.enlEndNote46246247<style face="normal" font="default" size="100%">Life cycle management for assessing systems of urban water management: Case studies and methodological gaps</style>internal-pdf://3088141530/Remy-2011-462.pdfinternal-pdf://3890760985/Remy-2011-4621.pdfKWB-documents_20191205.enlEndNote55055027<style face="normal" font="default" size="100%">Optimierung der Energie- und Nährstoffrückgewinnung in der Abwasserbehandlung (Kurzfassung)</style>internal-pdf://1892696531/Remy-2012-550.pdfKWB-documents_20191205.enlEndNote54954927<style face="normal" font="default" size="100%">Optimisation of energy and nutrient recovery in wastewater treatment schemes (Executive Summary)</style>internal-pdf://2562933281/Remy-2012-549.pdfKWB-documents_20191205.enlEndNote48048017<style face="normal" font="default" size="100%">Methodik der Ökobilanz zur ganzheitlichen Erfassung des Energieverbrauchs in der Abwasserreinigung</style>
internal-pdf://2553684421/Remy-2011-480.pdf
KWB-documents_20191205.enlEndNote49049017<style face="normal" font="default" size="100%">Using the Life Cycle Assessment methodology for a comprehensive evaluation of energy demand in wastewater treament</style>internal-pdf://0247996791/Remy-2012-490.pdfKWB-documents_20191205.enlEndNote46146147<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0202920394/Remy-2011-461.pdfinternal-pdf://3787716310/Remy-2011-4611.pdfKWB-documents_20191205.enlEndNote51551547<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0230639875/Remy-2012-515.pdfinternal-pdf://3553642818/Remy-2012-5151.pdfKWB-documents_20191205.enlEndNote46346347<style face="normal" font="default" size="100%">Sustainable sewage treatment plant of the future: Identifying global warming and energy optimization potentials with Life Cycle Assessment</style>internal-pdf://2789429503/Remy-2011-463.pdfinternal-pdf://2440450365/Remy-2011-4631.pdfKWB-documents_20191205.enlEndNote51951917<style face="normal" font="default" size="100%">Identifying energy and carbon footprint optimization potentials of a sludge treatment line with Life Cycle Assessment</style>
internal-pdf://0035266857/Remy-2013-519.pdf
KWB-documents_20191205.enlEndNote1004100447<style face="normal" font="default" size="100%">Neue Wege in der Abwassertechnik: Großtechnische Erfahrungen mit dem CARISMO-Verfahren</style>internal-pdf://2743244686/Remy-2017-1004.pdfKWB-documents_20191205.enlEndNote51651647<style face="normal" font="default" size="100%">Weitestgehende Phosphorelimination in Kläranlagen: Ökologischer Vergleich von Filtrationsverfahren mittels Life Cycle Assessment</style>internal-pdf://2857629282/Remy-2012-516.pdfKWB-documents_20191205.enlEndNote93493417<style face="normal" font="default" size="100%">Comparing environmental impacts of tertiary wastewater treatment technologies for advanced phosphorus removal and disinfection with life cycle assessment</style>
internal-pdf://1446805903/Remy-2014-934.pdf
KWB-documents_20191205.enlEndNote59959947<style face="normal" font="default" size="100%">Neue Verfahrenskombinationen der weitergehenden Abwasserbehandlung – Darstellung von Aufwand und Nutzen mit Methoden der Ökobilanzierung</style>internal-pdf://1830837210/Remy-2013-599.pdfKWB-documents_20191205.enlEndNote60160147<style face="normal" font="default" size="100%">Comparison of environmental impacts of tertiary filtration technologies for advanced phosphorus removal via Life Cycle Assessment</style>internal-pdf://2999488642/Remy-2013-601.pdfinternal-pdf://2658926442/Remy-2013-6011.pdfKWB-documents_20191205.enlEndNote1229122947<style face="normal" font="default" size="100%">Life Cycle Assessment of material recovery from municipal wastewater: circular economy with environmental benefits?</style>KWB-documents_20191205.enlEndNote60860847<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung in Großklärwerken – eine Ökobilanz</style>internal-pdf://1243087713/Remy-2013-608.pdfKWB-documents_20191205.enlEndNote1069106927<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.4: Technology dossiers to apply for ETV certification and guidelines</style>internal-pdf://2906356714/Remy-2018-1069.pdfKWB-documents_20191205.enlEndNote28128127<style face="normal" font="default" size="100%">Ecological assessment of alternative sanitation concepts with Life Cycle Assessment</style>internal-pdf://1761770610/Remy-2006-281.pdfKWB-documents_20191205.enlEndNote1208120817<style face="normal" font="default" size="100%">Risk management and environmental benefits of a prospective system for indirect potable reuse of municipal wastewater in France</style>
internal-pdf://3829176423/Remy-2019-1208.pdf
KWB-documents_20191205.enlEndNote51451447<style face="normal" font="default" size="11">Ökobilanzielle Bewertung des Braunschweiger Modells der Abwasserwiederverwendung über Life Cycle Assessment</style>internal-pdf://1351742933/Remy-2012-514.pdfinternal-pdf://2482632212/Remy-2012-5141.pdfKWB-documents_20191205.enlEndNote84584527<style face="normal" font="default" size="100%">Weiterentwicklung des Klima- und Ressourceneffizienzpotentials durch HTC-Behandlung ausgewählter Berliner Klärschlämme - HTC-Berlin (11443UEPII/2)</style>internal-pdf://2438919938/Remy-2015-845.pdfKWB-documents_20191205.enlEndNote75075017<style face="normal" font="default" size="100%">Hydrothermale Carbonisierung: Eine neue Option der Klärschlammbehandlung? Theoretische Energie/CO2-Bilanz</style>
internal-pdf://0503371832/Remy-2015-750.pdf
KWB-documents_20191205.enlEndNote60460447<style face="normal" font="default" size="100%">HTC-Check: Energiebilanz und Carbon Footprint von Referenztechnologien und HTC-Prozess bei der Klärschlammentsorgung</style>internal-pdf://3059538448/Remy-2013-604.pdfKWB-documents_20191205.enlEndNote60660647<style face="normal" font="default" size="100%">Theoretische Energie- und CO2-Bilanz von Referenzverfahren und HTC-Prozess bei der Entsorgung kommunaler Klärschlämme</style>internal-pdf://2107687682/Remy-2013-606.pdfKWB-documents_20191205.enlEndNote62962927<style face="normal" font="default" size="100%">Hydrothermal Carbonisation (HTC): Theoretical evaluation of selected schemes for municipal sludge treatment</style>internal-pdf://0521169592/Remy-2013-629.pdfKWB-documents_20191205.enlEndNote60560527<style face="normal" font="default" size="100%">Hydrothermal carbonisation: Theoretical evaluation of selected schemes for municipal sludge treatment</style>KWB-documents_20191205.enlEndNote82682627<style face="normal" font="default" size="100%">Final guidelines for sustainability assessment of water technologies (D51.2)</style>internal-pdf://0239019046/Remy-2015-826.pdfKWB-documents_20191205.enlEndNote18418447<style face="normal" font="default" size="11">Development of a monitoring concept for combined sewer overflows - testing of modern online-sensors</style>internal-pdf://0724661288/Rettig-2009-184.pdfKWB-documents_20191205.enlEndNote21721732<style face="normal" font="default" size="11">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://0555585475/Riechel-2009-217.pdfKWB-documents_20191205.enlEndNote30930927<style face="normal" font="default" size="100%">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://3204281291/Riechel-2009-309.pdfKWB-documents_20191205.enlEndNote1028102827<style face="normal" font="default" size="100%">Beschreibung der Schlauchliner in Berlin und statistische Analyse zu Zustand und Schäden - Kurzbericht des Forschungsvorhabens SEMA-Berlin (Memo).</style>internal-pdf://0161460569/Riechel-2017-1028.pdfKWB-documents_20191205.enlEndNote1127112747<style face="normal" font="default" size="100%">Model-based prediction of pipe age for filling gaps in sewer asset data</style>internal-pdf://1489257713/Riechel-2019-1127.pdfKWB-documents_20191205.enlEndNote1029102927<style face="normal" font="default" size="100%">Analyse und Modellierung des Zustands von Abwasserkanälen in Berlin - Bericht des Forschungsvorhabens SEMA-Berlin (D2 und D4).</style>internal-pdf://1320530328/Riechel-2017-1029.pdfKWB-documents_20191205.enlEndNote1059105917<style face="normal" font="default" size="100%">Bewertung verschiedener Modellansätze zur Vorhersage des Zustands von Abwasserkanälen am Beispiel von Berlin</style>
internal-pdf://3194698134/Riechel-2018-1059.pdf
KWB-documents_20191205.enlEndNote1230123047<style face="normal" font="default" size="100%">Handling biased and incomplete sewer asset data for deterioration modelling</style>KWB-documents_20191205.enlEndNote102210225<style face="normal" font="default" size="100%">Klima- und Demografieszenarien für die urbane Abwasserentsorgung</style>internal-pdf://1922735963/Riechel-2017-1022.pdfKWB-documents_20191205.enlEndNote50750747<style face="normal" font="default" size="100%">Towards an Impact-based Planning Instrument for Combined Sewer Management in Berlin, Germany. </style>internal-pdf://0453724341/Riechel-2011-507.pdfKWB-documents_20191205.enlEndNote101810185<style face="normal" font="default" size="100%">Gewässerschutz durch kombinierte dezentrale und zentrale Maßnahmen der Regenwasserbewirtschaftung - Modellstudie am Beispiel Berlins</style>internal-pdf://2258607745/Riechel-2017-1018.pdfKWB-documents_20191205.enlEndNote87387317<style face="normal" font="default" size="100%">Impacts of combined sewer overflows on a large urban river - Understanding the effect of different management strategies</style>
internal-pdf://1104274690/Riechel-2016-873.pdf
KWB-documents_20191205.enlEndNote34534547<style face="normal" font="default" size="100%">Application of stormwater impact assessment guidelines for urban lowland rivers – the challenge of distinction between background pollution and impacts of combined sewer overflows (CSO) (presented by Andreas Matzinger, participation of Pascale Rouault and Nicolas Caradot)</style>internal-pdf://2372101481/Riechel-2010-345.pdfKWB-documents_20191205.enlEndNote50850847<style face="normal" font="default" size="100%">Validation and sensitivity of a coupled model tool for CSO impact assessment in Berlin, Germany.</style>internal-pdf://1200639116/Riechel-2012-508.pdfKWB-documents_20191205.enlEndNote50650617<style face="normal" font="default" size="100%">Immissionsorientierte Mischwasserbewirtschaftung</style>
internal-pdf://3752730859/Riechel-2012-506.pdf
KWB-documents_20191205.enlEndNote1048104827<style face="normal" font="default" size="100%">Bewertung umgesetzter urbaner Maßnahmen zur Nährstoffreduktion. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kap. 3.1.2</style>internal-pdf://2653823832/Riechel-2016-1048.pdfKWB-documents_20191205.enlEndNote87487447<style face="normal" font="default" size="100%">A modelling approach for assessing acute river impacts of realistic stormwater management strategies</style>internal-pdf://1286673172/Riechel-2016-874.pdfKWB-documents_20191205.enlEndNote79179147<style face="normal" font="default" size="100%">Austrag und Rückhalt von Mecoprop durch Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://3493310072/Riechel-2015-791.pdfKWB-documents_20191205.enlEndNote69069047<style face="normal" font="default" size="100%">Bewertung von Maßnahmen der Regenwasserbewirtschaftung am Beispiel von Umwelteffekten</style>internal-pdf://2982641709/Riechel-2014-690.pdfinternal-pdf://2256216708/Riechel-2014-6901.pdfKWB-documents_20191205.enlEndNote1061106110<style face="normal" font="default" size="100%">Relevance of Different CSO Outlets for Bathing Water Quality in a River System</style>internal-pdf://4144312900/Riechel-2018-1061.pdfKWB-documents_20191205.enlEndNote1134113447<style face="normal" font="default" size="100%">Unterstützung der Kanalsanierungsplanung durch statistische und datengetriebene Alterungsmodelle</style>KWB-documents_20191205.enlEndNote78178147<style face="normal" font="default" size="100%">A Holistic Assessment Approach to Quantify the Effects of Adaptation Measures on CSO and Flooding</style>internal-pdf://0470580352/Riechel-2015-781.pdfKWB-documents_20191205.enlEndNote8558555<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions</style>
internal-pdf://0516496904/Riechel-2015-855.pdf
KWB-documents_20191205.enlEndNote1074107432<style face="normal" font="default" size="100%">Optimierung der chemischen Reinigung einer kapillaren Nanofiltration im Pilotmaßstab zur Aufbereitung von anoxischem Grundwasser</style>internal-pdf://0639249289/Rohde-2018-1074.pdfKWB-documents_20191205.enlEndNote797917<style face="normal" font="default" size="100%">Impact of colloidal and soluble organic material on membrane performance in membrane bioreactors for municipal waste water treatment</style>
internal-pdf://4178584535/Rosenberger-2006-79.pdf
KWB-documents_20191205.enlEndNote787847<style face="normal" font="default" size="100%">Zusammenhang zwischen Membranfouling und gelösten Substanzen in Membranbelebungsreaktoren</style>internal-pdf://3570174956/Rosenberger-2003-78.pdfKWB-documents_20191205.enlEndNote1237123727<style face="normal" font="default" size="100%">Monitoring of Water Quality Parameters in Combined Sewer Overflows </style>internal-pdf://3592461291/Rouault-2009-1237.pdfKWB-documents_20191205.enlEndNote27627627<style face="normal" font="default" size="11">Monitoring von Wassergüteparametern an Mischwasserüberläufen</style>internal-pdf://4277567498/Rouault-2009-276.pdfKWB-documents_20191205.enlEndNote1209120917<style face="normal" font="default" size="100%">Neues Frühwarnsystem zur Belastung von Badestellen</style>KWB-documents_20191205.enlEndNote1231123147<style face="normal" font="default" size="100%">Gebührenstabilität durch Asset Management?</style>KWB-documents_20191205.enlEndNote21021047<style face="normal" font="default" size="11">Simplification of dynamic flow routing models using hybrid modelling approaches - two case studies</style>internal-pdf://1915333501/Rouault-2008-210.pdfinternal-pdf://0144354236/Rouault-2008-2101.pdfKWB-documents_20191205.enlEndNote51351347<style face="normal" font="default" size="100%">Mitigation systems to attenuate diffuse agricultural pollution: location and design choice</style>internal-pdf://2569488487/Rouault-2012-513.pdfKWB-documents_20191205.enlEndNote70970947<style face="normal" font="default" size="100%">OptiValves: Enhanced network performance and reduced maintenance cost</style>internal-pdf://3229441596/Rouault-2014-709.pdfKWB-documents_20191205.enlEndNote1174117447<style face="normal" font="default" size="100%">Untersuchung der Auswirkungen von Mischwasserüberläufen auf ein Fließgewässer am Beispiel der Spree</style>KWB-documents_20191205.enlEndNote116311635<style face="normal" font="default" size="100%">Verschmutzung von Regenwasser und Mischwasser</style>KWB-documents_20191205.enlEndNote67267227<style face="normal" font="default" size="100%">Stickstofflimitation in Binnengewässern - Teilprojekt: Sensitivitätsanalyse zur Modellierung des Stickstoffumsatzes in Fließgewässern und Life Cycle Assessment von Reinigungsverfahren</style>internal-pdf://0355183787/Rouault-2014-672.pdfKWB-documents_20191205.enlEndNote97897810<style face="normal" font="default" size="100%">Zielorientierte Regenwasserbewirtschaftung zur Verbesserung der Lebensqualität und der Umweltbedingungen in der Stadt</style>internal-pdf://2836496065/Rouault-2016-978.pdfKWB-documents_20191205.enlEndNote23123127<style face="normal" font="default" size="11">Bewertung des Potenzials von Online-Niederschlagsmessung und Niederschlagsvorhersage aus Radardaten bezüglich der Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3562245022/Rouault-2008-231.pdfKWB-documents_20191205.enlEndNote51751747<style face="normal" font="default" size="100%">Development of a planning instrument to reduce future ecosystem impacts of combined sewer overflows in the Berlin River Spree.</style>internal-pdf://3553837445/Rouault-2012-517.pdfKWB-documents_20191205.enlEndNote707047<style face="normal" font="default" size="100%">Consideration of online rainfall measurement and now casting for RTC of the combined sewage system</style>internal-pdf://4116877173/Rouault-2007-70.pdfKWB-documents_20191205.enlEndNote23523517<style face="normal" font="default" size="11">Consideration of online rainfall measurement and nowcasting for RTC of the combined sewage system</style>
internal-pdf://Rouault et al_2007_Consideration of online rainfall measurement and now-1721221121/Rouault et al_2007_Consideration of online rainfall measurement and now casting for RTC of the combined sewage system_8p.pdfinternal-pdf://4225014070/Rouault-2008-235.pdf
KWB-documents_20191205.enlEndNote65665647<style face="normal" font="default" size="100%">Multigas-sensor systems for sewer odour measurement - Evaluation of four different E-noses based on tests under realistic conditions</style>internal-pdf://0831797502/Rouault-2013-656.pdfKWB-documents_20191205.enlEndNote34334347<style face="normal" font="default" size="100%">Online monitoring for evaluation of CSO impact on surface water (presented by Hauke Sonnenberg)</style>internal-pdf://2588210052/Rouault-2010-343.pdfKWB-documents_20191205.enlEndNote1219121927<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur- Leitfaden zum methodischen Vorgehen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://0719885384/Rouault-2016-1219.pdfKWB-documents_20191205.enlEndNote1218121827<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur-Einzelmaßnahmen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://3829176421/Rouault-2016-1218.pdfKWB-documents_20191205.enlEndNote1220122027<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur-Maßnahmenkombinationen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://3172686010/Rouault-2016-1220.pdfKWB-documents_20191205.enlEndNote626217<style face="normal" font="default" size="100%">Concentrations of particulate and dissolved cylindrospermopsin in 21 Aphanizomenon-dominated temperate lakes</style>
internal-pdf://4045443963/Rücker-2007-62.pdf
KWB-documents_20191205.enlEndNote585817<style face="normal" font="default" size="100%">Distribution and regulation of the originally tropical cyanobacterium Cylindrospermopsis raciborskii at its northern limits</style>internal-pdf://3739194984/Rücker-2006-58.pdfKWB-documents_20191205.enlEndNote39939927<style face="normal" font="default" size="100%">Decision Support System for Bank Filtration Systems</style>internal-pdf://2793693555/Rustler-2011-399.pdfKWB-documents_20191205.enlEndNote40040027<style face="normal" font="default" size="100%">State-of-the-art in the field of well field optimization modelling</style>internal-pdf://3291177253/Rustler-2010-400.pdfKWB-documents_20191205.enlEndNote40140127<style face="normal" font="default" size="100%">Bank Filtration Simulator - Manual</style>internal-pdf://0245260503/Rustler-2009-401.pdfKWB-documents_20191205.enlEndNote40240227<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling </style>internal-pdf://0476536064/Rustler-2011-402.pdfKWB-documents_20191205.enlEndNote53953947<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling</style>internal-pdf://2552863667/Rustler-2012-539.pdfKWB-documents_20191205.enlEndNote41741747<style face="normal" font="default" size="100%">Decision support system for the multi-objective optimization of bank filtration systems</style>internal-pdf://1544641589/Rustler-2010-417.pdfinternal-pdf://2607111284/Rustler-2010-4172.pdfinternal-pdf://2103860402/Rustler-2010-4173.pdfKWB-documents_20191205.enlEndNote40340327<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://0798843017/Rustler-2011-403.pdfKWB-documents_20191205.enlEndNote41641647<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://1339906985/Rustler-2011-416.pdfinternal-pdf://4121648103/Rustler-2011-4161.pdfKWB-documents_20191205.enlEndNote99499427<style face="normal" font="default" size="100%">Optiwells-2 Synthesis report</style>internal-pdf://3078848568/Rustler-2016-994.pdfKWB-documents_20191205.enlEndNote54254227<style face="normal" font="default" size="100%">Decision Support for managing substance flows within the Berlin water cycle under climate change conditions – Synthesis Report</style>internal-pdf://0332475253/Rustler-2012-542.pdfKWB-documents_20191205.enlEndNote1191119147<style face="normal" font="default" size="100%">Wrap your model in an R package! </style>internal-pdf://3829176425/Rustler-2016-1191.pdfKWB-documents_20191205.enlEndNote59159132<style face="normal" font="default" size="100%">Energy optimisation of drinking water well field operation</style>internal-pdf://3919260440/Sáinz-García-2013-591.pdfKWB-documents_20191205.enlEndNote71571532<style face="normal" font="default" size="100%">Modelling of Dynamic and Static Adaptation Measures for Combined Sewer System Optimisation: Case-Study of Wilmersdorf Catchment, Berlin</style>internal-pdf://0949679218/Salvan-2014-715.pdfKWB-documents_20191205.enlEndNote61261217<style face="normal" font="default" size="100%">The evaluation of rainfall influence on CSO characteristics: the Berlin case study</style>
internal-pdf://0292106268/Sandoval-2013-612.pdfinternal-pdf://3118847682/Sandoval-2013-6121.pdf
KWB-documents_20191205.enlEndNote1183118347<style face="normal" font="default" size="100%">The evaluation of rainfall influence on CSO characteristics: the Berlin case study</style>KWB-documents_20191205.enlEndNote30330332<style face="normal" font="default" size="100%">Wirtschaftliche Betrachtung semizentraler MBR-Anlagen in Abhängigkeit von den Reinigungszielen.</style>internal-pdf://2189104159/Schallehn-2009-303.pdfinternal-pdf://3841135709/Schallehn-2009-3031.pdfKWB-documents_20191205.enlEndNote14814817<style face="normal" font="default" size="100%">Assessment of the success of internal and external lake restoration measures in two Berlin lakes</style>KWB-documents_20191205.enlEndNote18018017<style face="normal" font="default" size="11">Water and phosphorus mass balance of Lake Tegel and Schlachtensee - A modelling approach</style>
internal-pdf://2830546580/Schauser-2009-180.pdf
KWB-documents_20191205.enlEndNote15015017<style face="normal" font="default" size="100%">Strategy and Current Status of Combating Eutrophication in 2 Berlin Lakes for Safeguarding Drinking Water Resources</style>
KWB-documents_20191205.enlEndNote14914917<style face="normal" font="default" size="100%">Effects of nitrate on phosphorus release: comparison of two Berlin lakes</style>
KWB-documents_20191205.enlEndNote2552556<style face="bold" font="default" size="10">Perspectives of Lake Modelling towards Predicting Reaction to Throphic Change</style>internal-pdf://3771237548/Schauser-2005-255.pdfKWB-documents_20191205.enlEndNote95095027<style face="normal" font="default" size="100%">Catalogue of European MAR applications</style>internal-pdf://1573163476/Scheibler-2012-950.pdfKWB-documents_20191205.enlEndNote63763727<style face="normal" font="default" size="100%">Development of a Catalogue on European MAR Sites - Documentation</style>internal-pdf://2974534039/Scheibler-2012-637.pdfKWB-documents_20191205.enlEndNote65065047<style face="normal" font="default" size="100%">Development of a European MAR catalogue</style>internal-pdf://0210908144/Scheibler-2013-650.pdfinternal-pdf://2486604654/Scheibler-2013-6501.pdfKWB-documents_20191205.enlEndNote53653632<style face="normal" font="default" size="100%">Advanced Wastewater Treatment Through the Combination of Flocculation, Microsieve Filtration and UV-Disinfection.</style>internal-pdf://1321879078/Schermann-2012-536.pdfKWB-documents_20191205.enlEndNote45645627<style face="normal" font="default" size="100%">Laboratory column experiments on options for redox control in infiltration ponds for artificial recharge</style>internal-pdf://3458748593/Scheytt-2011-456.pdfKWB-documents_20191205.enlEndNote82982917<style face="normal" font="default" size="100%">Phosphorus management in Europe in a changing world</style>
internal-pdf://1272963796/Schoumans-2015-829.pdf
KWB-documents_20191205.enlEndNote71771717<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 2: Molekularbiologische und mikrobiologische Untersuchungen von Ockerproben</style>
internal-pdf://3553024466/Schröder-2014-717.pdf
KWB-documents_20191205.enlEndNote28528547<style face="normal" font="default" size="11">Integrated Sewage Management - Setup of an integrated strategy for the control of the Berlin sewage system</style>internal-pdf://0878804004/Schroeder-2002-285.pdfKWB-documents_20191205.enlEndNote21121147<style face="normal" font="default" size="100%">Bewertung von Strategien der Abflusssteuerung mittels Kanalnetzsimulation</style>internal-pdf://2268066614/Schroeder-2004-211.pdfKWB-documents_20191205.enlEndNote878747<style face="normal" font="default" size="100%">Simulationsgestützte Entwicklung von Strategien der Verbundsteuerung am Beispiel des Berliner Entwässerungssystems</style>internal-pdf://1268490763/Schroeder-2004-87.pdfKWB-documents_20191205.enlEndNote21221247<style face="normal" font="default" size="11">Integrale Bewirtschaftung von Entwässerungssystemen</style>internal-pdf://0150514479/Schroeder-2007-212.pdfKWB-documents_20191205.enlEndNote24624647<style face="normal" font="default" size="11">Integrated Sewer Management</style>internal-pdf://1908245598/Schroeder-2007-246.pdfKWB-documents_20191205.enlEndNote1177117747<style face="normal" font="default" size="100%">Grundlagen der Kanalnetzsimulation</style>KWB-documents_20191205.enlEndNote20820847<style face="normal" font="default" size="11">Pharmaceutical residues in the urban water cycle - An overview of the state of the art</style>internal-pdf://3311432573/Schroeder-2009-208.pdfKWB-documents_20191205.enlEndNote202047<style face="normal" font="default" size="100%">Model-based evaluation of a level dependant real-time control for sewage pump stations</style>internal-pdf://1245154128/Schroeder-2004-20.pdfKWB-documents_20191205.enlEndNote696947<style face="normal" font="default" size="100%">Implementation of a decision support system for global pump station control in Berlin</style>internal-pdf://2245104429/Schroeder-2007-69.pdfKWB-documents_20191205.enlEndNote22922927<style face="normal" font="default" size="11">Umsetzung eines Entscheidungshilfesystems zur Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3231353587/Schroeder-2008-229.pdfKWB-documents_20191205.enlEndNote181847<style face="normal" font="default" size="100%">Integrated Sewage Management - Setup of networked models for analysis and improvement of the Berlin sewage system</style>internal-pdf://3109923553/Schroeder-2002-18.pdfKWB-documents_20191205.enlEndNote191947<style face="normal" font="default" size="100%">Integriertes Abwasser Management – Aufbau eines integrierten Modells zur Optimierung des Berliner Abwasser Systems</style>internal-pdf://2293082022/Schroeder-2003-19.pdfKWB-documents_20191205.enlEndNote20920947<style face="normal" font="default" size="11">Integriertes Misch- und Regenwassermanagement</style>internal-pdf://2448470234/Schroeder-2008-209.pdfKWB-documents_20191205.enlEndNote21521547<style face="normal" font="default" size="11">A water quality based method for the assessment of CSO impact on receiving waters in Berlin</style>internal-pdf://3220148959/Schroeder-2008-215.pdfKWB-documents_20191205.enlEndNote111147<style face="normal" font="default" size="100%">Assessment of global pump station control strategies on the basis of numerical modelling</style>internal-pdf://2135334655/Schroeder-2005-11.pdfKWB-documents_20191205.enlEndNote222247<style face="normal" font="default" size="100%">Integrated Simulation of the Berlin Sewage System and Evaluation of a global Real-time Control Concept</style>internal-pdf://1659477681/Schroeder-2005-22.pdfKWB-documents_20191205.enlEndNote858547<style face="normal" font="default" size="100%">Zustand und Entwicklung der Steuerung des Berliner Entwässerungssystems</style>internal-pdf://3686304374/Schroeder-2003-85.pdfinternal-pdf://1405258420/Schroeder-2003-851.pdfKWB-documents_20191205.enlEndNote151547<style face="normal" font="default" size="100%">Current State And Development Of The Real-Time Control Of The Berlin Sewage System</style>file://Z:\Dokument-Managementsystem\Dokuments\Publikation\Schroeder%20and%20Pawlowsky-Reusing,%202004%20-%20Current%20State%20And%20Development%20Of%20The%20Real-Time%20Control%20Of%20The%20Berlin%20Sewage%20System.pdfKWB-documents_20191205.enlEndNote141417<style face="normal" font="default" size="100%">Integrated sewage management to reduce pollution load in Berlin</style>
internal-pdf://1791926733/Schroeder-2004-14.pdf
KWB-documents_20191205.enlEndNote161617<style face="normal" font="default" size="100%">Integriertes Abwassermanagement - Strategien für eine integrierte Bewirtschaftung des Berliner Abwassersystems und Nutzen von lokalen und globalen Steuerungskonzepten</style>
internal-pdf://1725070309/Schroeder-2004-16.PDF
KWB-documents_20191205.enlEndNote282817<style face="normal" font="default" size="100%">Current state and development of the real-time control of the Berlin sewage system</style>
internal-pdf://2939330163/Schroeder-2005-28.pdf
KWB-documents_20191205.enlEndNote171747<style face="normal" font="default" size="100%">Adapted integrated modelling of drainage systems dominated by wastewater pump stations</style>internal-pdf://0046434591/Schroeder-2006-17.pdfKWB-documents_20191205.enlEndNote212147<style face="normal" font="default" size="100%">Integrated Sewage Management - Development of a global Real Time Control for three interconnected Subcatchments of the Berlin Drainage System</style>internal-pdf://1348248793/Schroeder-2004-21.PDFKWB-documents_20191205.enlEndNote37337347<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>internal-pdf://0507638504/Schroeder-2010-373.pdfKWB-documents_20191205.enlEndNote38538517<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>
internal-pdf://3797640491/Schroeder-2011-385.pdf
KWB-documents_20191205.enlEndNote34434447<style face="normal" font="default" size="100%">Development of a planning instrument for CSO management - Cooperation of research, water utility and public water authority in the city of Berlin (presented by Kai Schroeder)</style>internal-pdf://3208930525/Schroeder-2010-344.pdfKWB-documents_20191205.enlEndNote17717727<style face="normal" font="default" size="11">SPREE2011, AP 1.2 - Schmutzfrachtsimulation zur Bestimmung der hydraulischen und qualitativen Belastung des Regenbeckens</style>internal-pdf://2464527927/Schroeder-2007-177.pdfKWB-documents_20191205.enlEndNote1091109127<style face="normal" font="default" size="100%">D2.1 Advanced Control strategy for Nitrogen Removal</style>internal-pdf://3925564112/Schubert-2018-1091.pdfKWB-documents_20191205.enlEndNote56656647<style face="normal" font="default" size="100%">Novel wastewater process scheme for maximum COD extraction: high load MBBR followed by microsieve filtration</style>internal-pdf://4262215055/Schubert-2013-566.pdfinternal-pdf://3547479501/Schubert-2013-5661.pdfKWB-documents_20191205.enlEndNote80980947<style face="normal" font="default" size="100%">Monitoring of trace organic contaminants in stormwater runoff from five catchments in Berlin</style>internal-pdf://3490228227/Schubert-2015-809.pdfKWB-documents_20191205.enlEndNote77677627<style face="normal" font="default" size="100%">Abschlussbericht Projekt Abluft „Vorversuche zur Abluftbehandlung auf der Kläranlage Schönerlinde“</style>internal-pdf://2497735255/Schubert-2014-776.pdfKWB-documents_20191205.enlEndNote1092109227<style face="normal" font="default" size="100%">D 1.3: Compendium of best practices for advanced primary treatment</style>internal-pdf://4112669454/Schubert-2018-1092.pdfKWB-documents_20191205.enlEndNote77877847<style face="normal" font="default" size="100%">Monitoring of runoff water quality from green and gravel roofs with bitumen membranes</style>internal-pdf://3368711269/Schubert-2015-778.pdfKWB-documents_20191205.enlEndNote1175117547<style face="normal" font="default" size="100%">Submicron particle analysis to characterize fouling in tertiary membrane filtration</style>KWB-documents_20191205.enlEndNote52652647<style face="normal" font="default" size="100%">Prediction of fouling potential of treated domestic wastewater by on-line submicron particle analysis. </style>KWB-documents_20191205.enlEndNote44944947<style face="normal" font="default" size="100%">Analysis of nanoparticles in treated domestic wastewater for improved understanding and prevention of membrane fouling</style>internal-pdf://1708606874/Schulz-2011-449.pdfinternal-pdf://3809887704/Schulz-2011-4491.pdfKWB-documents_20191205.enlEndNote52452447<style face="normal" font="default" size="100%">Kolloidales Fouling von Niederdruckmembranen in der weitergehenden Abwasserreinigung: Analyse und Maßnahmen zur Verringerung</style>internal-pdf://2818656297/Schulz-2012-524.pdfKWB-documents_20191205.enlEndNote52552547<style face="normal" font="default" size="100%">On-line submicron particle analysis for the assessment of fouling potential in tertiary membrane filtration.</style>internal-pdf://1385776413/Schulz-2012-525.pdfinternal-pdf://4249896283/Schulz-2012-5251.pdfKWB-documents_20191205.enlEndNote22122127<style face="normal" font="default" size="11">Instationäre, hydronumerische 1D-Berechnung von Wasserstand und Durchfluss in der Stauhaltung Charlottenburg (Spree und Kanäle) für die Abflussjahre 2002 bis 2007</style>internal-pdf://3093729063/Schumacher-2008-221.pdfKWB-documents_20191205.enlEndNote24924927<style face="normal" font="default" size="11">Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung der Mischwasserentlastungen am Beispiel eines Starkregenereignisses im September 2005</style>internal-pdf://3050669056/Schumacher-2007-249.pdfKWB-documents_20191205.enlEndNote22022027<style face="normal" font="default" size="11">Erläuterungsbericht zur weiteren Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung von Mischwasserentlastungen im September 2005</style>internal-pdf://3361378009/Schumacher-2009-220.pdfKWB-documents_20191205.enlEndNote1147114732<style face="normal" font="default" size="100%">Möglichkeiten der getrennten Erfassung von Arzneimitteln in Krankenhäusern zur Entlastung des Abwassers, am Beispiel der iodorganischen Röntgenkontrastmittel und der Zytostatika</style>KWB-documents_20191205.enlEndNote1148114827<style face="normal" font="default" size="100%">Getrennte Erfassung von jodorganischen Röntgenkontrastmitteln in Krankenhäusern. Abschlussbericht des Forschungsprojektes Phase 2: Praktische Durchführung. Abschlussbericht des Kompetenzzentrum Wasser Berlin</style>internal-pdf://1037062015/Schuster-2006-1148.pdfKWB-documents_20191205.enlEndNote74874827<style face="normal" font="default" size="100%">Separate Collection of Iodinated X-ray Contrast Media in Hospitals: Phase 2 Implementation</style>internal-pdf://0261279961/Schuster-2006-748.pdfKWB-documents_20191205.enlEndNote15415417<style face="normal" font="default" size="100%">Medikamente verlangen dem Klärwerk Höchstleistungen ab</style>KWB-documents_20191205.enlEndNote15115147<style face="normal" font="default" size="100%">Erfassung von jodorganischen Röntgenkontrastmitteln</style>KWB-documents_20191205.enlEndNote49249227<style face="normal" font="default" size="100%">Market Review on Available Instruments for Odour Measurement</style>internal-pdf://2779597886/Schwarzböck-2012-492.pdfKWB-documents_20191205.enlEndNote44744710<style face="normal" font="default" size="100%">Elektronische Nasen als Tool für Geruchsmanagement in Abwasserkanalisationen – Test und Bewertung von vier Multigas-Sensorsystemen</style>internal-pdf://3961345004/Schwarzböck-2011-447.pdfKWB-documents_20191205.enlEndNote35335317<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>
internal-pdf://0371876944/Schwarzböck-2010-353.pdfinternal-pdf://1622172815/Schwarzböck-2010-3531.pdf
KWB-documents_20191205.enlEndNote35435447<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>internal-pdf://3159059501/Schwarzböck-2010-354.pdfinternal-pdf://3811601515/Schwarzböck-2010-3541.pdfKWB-documents_20191205.enlEndNote18518527<style face="normal" font="default" size="11">State of the art of (1) The distinction of well ageing types and their extension; (2.1) Monitoring and diagnosis; (2.2) Maintenance; (3.1) Well design and construction and (3.2) Operation</style>internal-pdf://1951118825/Schwarzmüller-2009-185.pdfKWB-documents_20191205.enlEndNote1181118127<style face="normal" font="default" size="100%">Erweiterte Kurzfassung Projekt: WELLMA1</style>internal-pdf://4170873677/Schwarzmüller-2011-1181.pdfKWB-documents_20191205.enlEndNote58358327<style face="normal" font="default" size="100%">Technical guidance for the evaluation of regeneration success </style>internal-pdf://1719090497/Schwarzmüller-2011-583.pdfKWB-documents_20191205.enlEndNote58258227<style face="normal" font="default" size="100%">Overview of common well regeneration methods </style>internal-pdf://0363412723/Schwarzmüller-2012-582.pdfKWB-documents_20191205.enlEndNote58558527<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der deskriptiven Datenanalyse</style>internal-pdf://0987376330/Schwarzmüller-2013-585.pdfKWB-documents_20191205.enlEndNote93193147<style face="normal" font="default" size="100%">Glaskugel- und konventionell geschüttete Vertikalfilterbrunnen: Betrieb und Regenerierung</style>internal-pdf://0674134950/Schwarzmüller-2014-931.pdfKWB-documents_20191205.enlEndNote1192119247<style face="normal" font="default" size="100%">Einfluss von Standortfaktoren auf die Brunnenalterung: Klassifizierung der Berliner Brunnen und Quantifizierung ihres Alterungspotentials</style>KWB-documents_20191205.enlEndNote1244124427<style face="normal" font="default" size="100%">WELLMA - outil d’aide á la décision- mode d'emploi</style>internal-pdf://0794933742/Schwarzmüller-2013-1244.pdfKWB-documents_20191205.enlEndNote57857827<style face="normal" font="default" size="100%">WELLMA Decision Support Tool: Manual</style>internal-pdf://1196632622/Schwarzmüller-2013-578.pdfKWB-documents_20191205.enlEndNote1243124327<style face="normal" font="default" size="100%">WELLMA Decision Support Tool: Manual</style>internal-pdf://0675192179/Schwarzmüller-2013-1243.pdfKWB-documents_20191205.enlEndNote53353347<style face="normal" font="default" size="100%">Evaluation of the ageing potential of drinking water wells to optimize well operation and maintenance.</style>internal-pdf://1317420197/Schwarzmüller-2012-533.pdfKWB-documents_20191205.enlEndNote53453447<style face="normal" font="default" size="100%">A new look on old data: Usability of continuously measured discharge rates to monitor the ageing of drinking water abstraction wells.</style>internal-pdf://3141158095/Schwarzmüller-2012-534.pdfKWB-documents_20191205.enlEndNote66166127<style face="normal" font="default" size="100%">WELLMA-2 Synthesis report</style>internal-pdf://2065132266/Schwarzmüller-2013-661.pdfKWB-documents_20191205.enlEndNote73073047<style face="normal" font="default" size="100%">Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen</style>KWB-documents_20191205.enlEndNote71671617<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 1: Probenahme aus dem Filterbereich eines Trinkwasserbrunnens mit neuartigem Unterwasserkamera- und Probenahme-System</style>
internal-pdf://1494341349/Schwarzmüller-2014-716.pdf
KWB-documents_20191205.enlEndNote97797717<style face="normal" font="default" size="100%">Einfluss von Standortfaktoren auf die Brunnenalterung: Klassifizierung der Berliner Trinkwasserbrunnen und Quantifizierung ihres Alterungspotentials</style>
KWB-documents_20191205.enlEndNote73173127<style face="normal" font="default" size="100%">Geological CO2 Storage and Other Emerging Subsurface Activities – Countermeasures against risks arising from shale gas exploration</style>internal-pdf://2153183181/Schwarzmüller-2014-731.pdfKWB-documents_20191205.enlEndNote56056017<style face="normal" font="default" size="100%">Auswirkung unterschiedlicher Schüttmaterialien auf die Verockerung und Regenerierbarkeit von Brunnen</style>
internal-pdf://0458629277/Schwarzmüller-2013-560.pdf
KWB-documents_20191205.enlEndNote77477427<style face="normal" font="default" size="100%">Schlussbericht Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5 "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://4256193931/Schwarzmüller-2014-774.pdfKWB-documents_20191205.enlEndNote69169127<style face="normal" font="default" size="100%">Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5: "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://2033853606/Schwarzmüller-2014-691.pdfinternal-pdf://3261290844/Schwarzmüller-2014-6911.pdfKWB-documents_20191205.enlEndNote35235217<style face="normal" font="default" size="100%">Survey on the implementation of DVGW drinking water well monitoring guidelines W125 in practice</style>
internal-pdf://2786271311/Schwarzmüller-2010-352.pdf
KWB-documents_20191205.enlEndNote18718727<style face="normal" font="default" size="100%">Comparison of direct and indirect diagnosis tools and methods to determine and distinguish clogging</style>internal-pdf://2389915074/Schwarzmüller-2009-187.pdfKWB-documents_20191205.enlEndNote57457427<style face="normal" font="default" size="100%">Extended summary of the results and conclusions of the preparatory phase of the WellMa project</style>internal-pdf://1171469528/Schwarzmüller-2011-574.pdfKWB-documents_20191205.enlEndNote1239123927<style face="normal" font="default" size="100%">EXTENDED SUMMARY Project acronym: WellMa1</style>internal-pdf://2906118969/Schwarzmüller-2011-1239.pdfKWB-documents_20191205.enlEndNote1240124027<style face="normal" font="default" size="100%">RÉSUMÉ ÉTENDU Projet: WELLMA1</style>internal-pdf://2976402389/Schwarzmüller-2012-1240.pdfKWB-documents_20191205.enlEndNote29729717<style face="normal" font="default" size="100%">Optimierung des Brunnenbetriebs und Instandhaltung: Zwischenergebnisse des interdisziplinären Forschungsprojektes WellMa am Kompetenzzentrum Wasser Berlin</style>
internal-pdf://3958436506/Schwarzmüller-2009-297.pdf
KWB-documents_20191205.enlEndNote95595547<style face="normal" font="default" size="100%">Mikrobielle Verockerung in Trinkwasserbrunnen, im Rohrnetz und an Pumpen - Entwicklung und Bewertung von betrieblichen Gegenmaßnahmen</style>KWB-documents_20191205.enlEndNote1032103227<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser - Projekt: Wasserwiederverwendung</style>internal-pdf://0464199320/Schwarzmüller-2017-1032.pdfKWB-documents_20191205.enlEndNote1066106627<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser</style>internal-pdf://0859022840/Schwarzmüller-2018-1066.pdfKWB-documents_20191205.enlEndNote1031103110<style face="normal" font="default" size="100%">Eignung von saisonalen Temperatursignalen zur Überwachung von Grundwasserfließzeiten bei der Uferfiltration und Grundwasseranreicherung in Berlin</style>internal-pdf://0638393930/Schwarzmüller-2017-1031.pdfKWB-documents_20191205.enlEndNote1115111547<style face="normal" font="default" size="100%">Einsatz einfacher und kostengünstiger Methoden zur Überwachung von Fließzeiten und Prozessen in der Grundwasseranreicherung</style>internal-pdf://0767020926/Schwarzmüller-2020-1115.pdfKWB-documents_20191205.enlEndNote34234247<style face="normal" font="default" size="100%">Wie angewandte Forschung hilft, die Brunnenalterung zu verlangsamen</style>internal-pdf://1281518574/Schwarzmüller-2010-342.pdfKWB-documents_20191205.enlEndNote34134147<style face="normal" font="default" size="11">Einfluss der Schalthäufigkeit auf die Brunnenalterung</style>internal-pdf://1075573324/Schwarzmüller-2009-341.pdfKWB-documents_20191205.enlEndNote58658627<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der Feld- und Laborarbeiten an Brunnen SPAsued10-/1983V</style>internal-pdf://0130886049/Schwarzmüller-2013-586.pdfKWB-documents_20191205.enlEndNote72772747<style face="normal" font="default" size="100%">Auslöser von Alterungsprozessen in Brunnen und deren Verminderung im Betrieb</style>KWB-documents_20191205.enlEndNote41341317<style face="normal" font="default" size="100%">Eisenbakterien in Trinkwasserbrunnen</style>
internal-pdf://1446386870/Schwarzmüller-2011-413.pdf
KWB-documents_20191205.enlEndNote32532517<style face="normal" font="default" size="11">Untersuchungen zur Reduzierung biochemischer Brunnenalterung</style>
internal-pdf://2066247403/Schwarzmüller-2009-325.pdf
KWB-documents_20191205.enlEndNote58458427<style face="normal" font="default" size="100%">Synthesis report: Quantitative Diagnosis and Assessment of the Differences in the Ageing Behaviour of the VE-operated wells Gabachot & Boulac</style>internal-pdf://0321727755/Schwarzmüller-2012-584.pdfKWB-documents_20191205.enlEndNote1178117827<style face="normal" font="default" size="100%">Integration and Consolidation of Information on Pharmaceutical Residues in the Urban Water Cycle - IC Pharma Final Project Report </style>internal-pdf://1454762948/Seeber-2010-1178.pdfKWB-documents_20191205.enlEndNote46046032<style face="normal" font="default" size="11">Risk assessment of the wastewater-reuse strategy of Braunschweig concerning impacts on the environment and human health</style>internal-pdf://3582480467/Seis-2011-460.pdfKWB-documents_20191205.enlEndNote54854827<style face="normal" font="default" size="100%">Risk assessment auf Braunschweig wastewater reuse scheme</style>internal-pdf://2435596599/Seis-2012-548.pdfKWB-documents_20191205.enlEndNote63063047<style face="normal" font="default" size="100%">Risk assessment of the wastewater reuse system of Braunschweig</style>internal-pdf://1560697257/Seis-2013-630.pdfKWB-documents_20191205.enlEndNote1200120027<style face="normal" font="default" size="100%">Rahmenbedingungen für die umweltgerechte Nutzung von behandeltem Abwasser zur landwirtschaftlichen Bewässerung</style>internal-pdf://0251151893/Seis-2016-1200.pdfKWB-documents_20191205.enlEndNote1210121017<style face="normal" font="default" size="100%">Entwicklung eines Frühwarnsystems für die Berliner Unterhavel</style>KWB-documents_20191205.enlEndNote84384327<style face="normal" font="default" size="100%">Appropriate and user friendly methodologies for Risk assessment, Life Cycle Assessment, and Water Footprinting (D3.1)</style>internal-pdf://0973403531/Seis-2015-843.pdfKWB-documents_20191205.enlEndNote1037103727<style face="normal" font="default" size="100%">Deliverable D6.5: Health and environmental risk management for the operation of the greenfield demo site</style>internal-pdf://2716312653/Seis-2016-1037.pdfKWB-documents_20191205.enlEndNote63163147<style face="normal" font="default" size="100%">Microbial Risk Assessment of the Water Reuse Scheme in Braunschweig based on WHO guidelines </style>internal-pdf://3676029140/Seis-2013-631.pdfKWB-documents_20191205.enlEndNote1233123347<style face="normal" font="default" size="100%">Improvement of probabilistic QMRA by quantitative integration of external information using Bayesian hierarchical modelling</style>KWB-documents_20191205.enlEndNote80780727<style face="normal" font="default" size="100%">Application of the Australian Guidelines for Water Recycling: Managing Health and Environmental Risks</style>internal-pdf://2926113496/Seis-2015-807.pdfKWB-documents_20191205.enlEndNote51151127<style face="normal" font="default" size="100%">Geological CO2 Storage and other subsurface emerging activities: Catalogue of potential impacts on drinking water production</style>internal-pdf://1938115568/Seis-2013-511.pdfKWB-documents_20191205.enlEndNote98998947<style face="normal" font="default" size="100%">Quantifying microbial contamination in urban stormwater runoff</style>internal-pdf://1065922641/Seis-2016-989.pdfKWB-documents_20191205.enlEndNote1051105117<style face="normal" font="default" size="100%">On the implementation of reliable early warning systems at European bathing waters using multivariate Bayesian regression modelling</style>
internal-pdf://0454065717/Seis-2018-1051.pdf
KWB-documents_20191205.enlEndNote1232123247<style face="normal" font="default" size="100%">Implementation of reliable early warning systems at European bathing waters using multivariate Bayesian regression modelling</style>KWB-documents_20191205.enlEndNote1234123447<style face="normal" font="default" size="100%">Rolling literature review on pathogen reduction by water treatment processes</style>KWB-documents_20191205.enlEndNote1152115247<style face="normal" font="default" size="100%">The Effect of Hydraulic Retention Time and Flow Patch on Ntrate and Atrazine Attenuation in a Bioretention Swale</style>KWB-documents_20191205.enlEndNote71271247<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen - Forschungsprogramm UEP II Berlin</style>internal-pdf://2891585415/Sommer-2014-712.pdfKWB-documents_20191205.enlEndNote85985932<style face="normal" font="default" size="100%">Vergleichende Ökobilanzierung verschiedener Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://1464085052/Sommer-2015-859.pdfKWB-documents_20191205.enlEndNote25025032<style face="normal" font="default" size="11">Untersuchungen zur integrierten Modellierung von Freispiegel- und Druckabfluss im Berliner Abwassersystem</style>internal-pdf://1735951251/Sonnenberg-2006-250.pdfKWB-documents_20191205.enlEndNote17917932<style face="normal" font="default" size="11">Bemessung eines Mischwasserspeichers in der Spree mittels numerischer Langzeitsimulation und Analyse ausgewählter Unsicherheiten</style>internal-pdf://0379696476/Sonnenberg-2008-179.pdfKWB-documents_20191205.enlEndNote27527527<style face="normal" font="default" size="11">Applicability of OpenMI and API for coupling models within MIA-CSO</style>internal-pdf://3994582957/Sonnenberg-2009-275.pdfKWB-documents_20191205.enlEndNote30130147<style face="normal" font="default" size="100%">Technical Conference Report</style>internal-pdf://0526905870/Sonnenberg-2009-301.pdfKWB-documents_20191205.enlEndNote44644647<style face="normal" font="default" size="100%">Different methods of CSO identification in sewer systems and receiving waters</style>internal-pdf://1757960287/Sonnenberg-2011-446.pdfKWB-documents_20191205.enlEndNote1180118047<style face="normal" font="default" size="100%">Best data handling practices in water-related research. </style>KWB-documents_20191205.enlEndNote50550517<style face="normal" font="default" size="100%">Best data handling practices in water-related research</style>
internal-pdf://3142198122/Sonnenberg-2013-505.pdfinternal-pdf://1115275490/Sonnenberg-2013-5051.pdf
KWB-documents_20191205.enlEndNote22222227<style face="normal" font="default" size="11">Literature Review on the Open Modelling Interface and Environment (OpenMI)</style>internal-pdf://0440241803/Sonnenberg-2008-222.pdfKWB-documents_20191205.enlEndNote17817847<style face="normal" font="default" size="11">Dimensioning of a stormwater tank using long-term simulation and assessment of uncertainties</style>internal-pdf://3286333735/Sonnenberg-2009-178.pdfKWB-documents_20191205.enlEndNote25425432<style face="normal" font="default" size="11">Modélisation et campagne de mesures sur le bassin-versant Berlin VII</style>internal-pdf://0192119621/Souchon-2001-254.pdfKWB-documents_20191205.enlEndNote80680627<style face="normal" font="default" size="100%">Hydraulic characterisation of managed aquifer recharge sites by tracer techniques</style>internal-pdf://4017091132/Sprenger-2015-806.pdfKWB-documents_20191205.enlEndNote1065106527<style face="normal" font="default" size="100%">Entwicklung einer Monitorstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin Tiefwerder und - Spandau - Zusatzbericht zur Bestimmung der thermischen Retardation. Development of a strategy for continuous monitoring of flow times from aquifer recharge and bank filtration to drinking water wells at Berlin Tiefwerder and Spandau - additional report for the determination of thermal retardation</style>internal-pdf://2824906169/Sprenger-2018-1065.pdfKWB-documents_20191205.enlEndNote86586517<style face="normal" font="default" size="100%">Inventory of Managed Aquifer Recharge sites in Europe – historical development, current situation and perspectives</style>
internal-pdf://3302492098/Sprenger-2017-865.pdf
KWB-documents_20191205.enlEndNote80580527<style face="normal" font="default" size="100%">Managing Aquifer Recharge - Subsurface treatment, storage and recovery</style>internal-pdf://2143154451/Sprenger-2015-805.pdfKWB-documents_20191205.enlEndNote73473417<style face="normal" font="default" size="100%">Hydrogeochemistry of Urban Floodplain Aquifer Under the Influence of Contaminated River Seepage in Delhi (India)</style>
internal-pdf://1463418404/Sprenger-2014-734.pdf
KWB-documents_20191205.enlEndNote73573517<style face="normal" font="default" size="100%">Removal of indigenous coliphages and enteric viruses during riverbank filtration from highly polluted river water in Delhi (India)</style>
internal-pdf://2114453433/Sprenger-2014-735.pdf
KWB-documents_20191205.enlEndNote31131147<style face="normal" font="default" size="100%">The Potential of River Bank Filtration for Reducing Chemical Pollutants and Pathogens from River Water ion Megacities: The New Delhi Experience</style>internal-pdf://1705014078/Sprenger-2009-311.pdfKWB-documents_20191205.enlEndNote40640617<style face="normal" font="default" size="100%">Vulnerability of bank filtration systems to climate change</style>
internal-pdf://1645240379/Sprenger-2010-406.pdf
KWB-documents_20191205.enlEndNote40840827<style face="normal" font="default" size="11">Occurrence and fate of microbial pathogens and organic trace compounds at riverbank filtration sites in Delhi, India</style>internal-pdf://0831546370/Sprenger-2008-408.pdfKWB-documents_20191205.enlEndNote1016101627<style face="normal" font="default" size="100%">Entwicklung einer Monitoringstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin-Tiefwerder und -Spandau - Schlussbericht T-MON</style>internal-pdf://2764214178/Sprenger-2017-1016.pdfKWB-documents_20191205.enlEndNote9619615<style face="normal" font="default" size="100%">Numerical and analytical models for natural water treatment systems in the Indian context </style>
internal-pdf://0581186432/Sprenger-2016-961.pdf
KWB-documents_20191205.enlEndNote65265247<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani–Koratallai (A-K) basin north of Chennai (India) </style>internal-pdf://0600419013/Sprenger-2013-652.pdfKWB-documents_20191205.enlEndNote73673617<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani-Koratallai (A-K) basin north of Chennai (India)</style>
internal-pdf://2451177791/Sprenger-2014-736.pdf
KWB-documents_20191205.enlEndNote99299210<style face="normal" font="default" size="100%">Temperature measurements during Managed Aquifer Recharge for safeguarding subsurface travel times</style>internal-pdf://1076870471/Sprenger-2016-992.pdfKWB-documents_20191205.enlEndNote1206120632<style face="normal" font="default" size="100%">Kalibrierung eines Schmutzfrachtmodells mit InfoWorks CS - Sensitivitätsanalyse und Kalibrierung</style>KWB-documents_20191205.enlEndNote99399347<style face="normal" font="default" size="100%">Impacts of suspended solids, water temperature and dilution on TrOC elimination and UVA254 reduction by laboratory scale ozonation of secondary effluent</style>internal-pdf://1235209285/Stapf-2016-993.pdfinternal-pdf://2406816387/Stapf-2016-9931.pdfKWB-documents_20191205.enlEndNote76776747<style face="normal" font="default" size="100%">Application of Ultraviolet Absorption Measurement for Closed-loop Control of Tertiary Ozonation</style>internal-pdf://3549719910/Stapf-2015-767.pdfinternal-pdf://3362196797/Stapf-2015-7671.pdfKWB-documents_20191205.enlEndNote76876847<style face="normal" font="default" size="100%">Betriebserfahrungen einer Ozonungsanlage zur Spurenstoffeliminierung mittels SAK</style><style face="subscript" font="default" size="100%">254</style><style face="normal" font="default" size="100%">-Differenz-Regelung</style>internal-pdf://4084496634/Stapf-2015-768.pdfinternal-pdf://3256998600/Stapf-2015-7681.pdfKWB-documents_20191205.enlEndNote87287217<style face="normal" font="default" size="100%">Application of online UV absorption measurements for ozone process control in secondary effluent with variable nitrite concentration</style>
internal-pdf://2199996736/Stapf-2016-872.pdf
KWB-documents_20191205.enlEndNote62062047<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2384536520/Stapf-2013-620.pdfKWB-documents_20191205.enlEndNote62162147<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2111940862/Stapf-2013-621.pdfKWB-documents_20191205.enlEndNote61861847<style face="normal" font="default" size="100%">Comparison between two different filter systems as a post treatment of an ozonation to remove micropollutants</style>internal-pdf://2049651007/Stapf-2013-618.pdfinternal-pdf://0904845546/Stapf-2013-6181.pdfKWB-documents_20191205.enlEndNote61661647<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://2510383502/Stapf-2014-616.pdfKWB-documents_20191205.enlEndNote92392310<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://1310289891/Stapf-2014-923.pdfinternal-pdf://1412919517/Stapf-2014-9231.pdfKWB-documents_20191205.enlEndNote99899827<style face="normal" font="default" size="100%">Studie über Effekte und Nebeneffekte bei der Behandlung von kommunalem Abwasser mit Ozon</style>internal-pdf://2569007758/Stapf-2017-998.pdfKWB-documents_20191205.enlEndNote1235123547<style face="normal" font="default" size="100%">Untersuchung des Foulingverhaltens von UV-Onlinesonden im Betrieb einer Ozonung auf Kläranlagen</style>KWB-documents_20191205.enlEndNote1131113147<style face="normal" font="default" size="100%">Einsatz einer Fluoreszenz-Onlinemessung zur Überwachung einer Ozonung zur Spurenstoffelimination - Betriebserfahrungen und Vergleich zum SAK254</style>internal-pdf://0573880737/Stapf-2019-1131.pdfKWB-documents_20191205.enlEndNote1132113247<style face="normal" font="default" size="100%">Implementation of a fluorescence (FDOM) online measurement at an ozonation plant used for micropollutant elimination – operational aspects and comparison to UVA254, Ozone and Advanced Oxidation. Leading-edge science and technologies</style>internal-pdf://2411923777/Stapf-2019-1132.pdfKWB-documents_20191205.enlEndNote46746727<style face="normal" font="default" size="100%">Literature review on theoretical pump and motor efficiency of submersible pump systems</style>internal-pdf://1189039010/Staub-2011-467.pdfKWB-documents_20191205.enlEndNote1144114417<style face="normal" font="default" size="100%">Large-scale bioreactor pilots for monitoring the long-term hydromechanics of MSW</style>KWB-documents_20191205.enlEndNote55855827<style face="normal" font="default" size="100%">Market potential of MAR solutions with reclaimed water for non-potable reuse</style>internal-pdf://0657534141/Staub-2013-558.pdfKWB-documents_20191205.enlEndNote48848847<style face="normal" font="default" size="100%">A catalogue and matrix of initiatives as a toolbox for utilities to enhance their preparedness for climate change</style>internal-pdf://2629521413/Staub-2012-488.pdfKWB-documents_20191205.enlEndNote42542527<style face="normal" font="default" size="100%">Catalogue of European adaptive initiatives of the water sector to face climate change impacts V3 (Updated 2012 Release)</style>internal-pdf://1548569413/Staub-2012-425.pdfKWB-documents_20191205.enlEndNote59459427<style face="normal" font="default" size="100%">Hybrid Concepts for MAR with Reclaimed Water for for Nonpotable Reuse (D1.1)</style>internal-pdf://3221240232/Staub-2013-594.pdfKWB-documents_20191205.enlEndNote49649627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report </style>internal-pdf://1420911657/Staub-2012-496.pdfKWB-documents_20191205.enlEndNote1126112627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report - confidential</style>internal-pdf://1454680212/Staub-2012-1126.pdfKWB-documents_20191205.enlEndNote49849847<style face="normal" font="default" size="100%">Potentials for energy savings through drinking water well field optimisation</style>internal-pdf://2182232410/Staub-2012-498.pdfKWB-documents_20191205.enlEndNote54554532<style face="normal" font="default" size="100%">Advanced wastewater treatment by the implementation of a ceramic membrane. Studienarbeit</style>internal-pdf://1426931851/Stein-2012-545.pdfKWB-documents_20191205.enlEndNote1064106427<style face="normal" font="default" size="100%">Challenges and technological approaches for tackling emerging contaminants in drinking and wastewater</style>internal-pdf://1276093834/Stein-2018-1064.pdfKWB-documents_20191205.enlEndNote23223227<style face="normal" font="default" size="11">Entwicklung eines Optimierungsmodells für die Abwasserverteilung in Berlin und Implementierung im algebraischen Modellierungssystem GAMS</style>internal-pdf://3891629614/Steinbach-2008-232.pdfKWB-documents_20191205.enlEndNote53153132<style face="normal" font="default" size="100%">Tracerversuch zum Nachweis von Undichtigkeiten am Beispiel eines Vertikalfilterbrunnens des Wasserwerks Jungfernheide (Berlin).</style>internal-pdf://2752136321/Steinhöfel-2012-531.pdfKWB-documents_20191205.enlEndNote69369317<style face="normal" font="default" size="100%">Aus Wasser und Asche - Die Forschungsinitiative P-REX will die Entwicklung von effizienten technischen Lösungen des Phosphor-Recyclings aus Abwasser in Europa beschleunigen</style>
internal-pdf://0908998538/Stemann-2014-693.pdf
KWB-documents_20191205.enlEndNote67667647<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX</style>internal-pdf://4141346455/Stemann-2014-676.pdfKWB-documents_20191205.enlEndNote6756755<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX –</style>
internal-pdf://2094462718/Stemann-2014-675.pdf
KWB-documents_20191205.enlEndNote65865832<style face="normal" font="default" size="100%">Geological CO2 storage and shale gas exploitation: Monitoring methods to be used for at the different project phases</style>internal-pdf://2683481555/Stevens-2013-658.pdfKWB-documents_20191205.enlEndNote38838827<style face="normal" font="default" size="100%">Treatment of urine with zero-valent iron to minimize the aquatic pollution with compounds emitted by hospitals</style>internal-pdf://0800416677/Stieber-2010-388.pdfKWB-documents_20191205.enlEndNote20320327<style face="normal" font="default" size="11">The utility of agricultural constructed wetlands</style>internal-pdf://3120738444/Stouder-2009-203.pdfKWB-documents_20191205.enlEndNote19819827<style face="normal" font="default" size="11">Selection of a watershed model used to predict the effects of management decisions on water quality based on multi-criteria comparison</style>internal-pdf://4093095998/Strube-2009-198.pdfKWB-documents_20191205.enlEndNote19119147<style face="normal" font="default" size="11">Mitigation of contaminants in rural and semi-rural environments to protect surface water for drinking water supply - the Aquisafe-project</style>internal-pdf://3798447156/Strube-2007-191.pdfKWB-documents_20191205.enlEndNote52152147<style face="normal" font="default" size="100%">Fouling rate as the crucial design parameter for ultrafiltration of secondary effluents.</style>internal-pdf://2669823963/Stüber-2012-521.pdfKWB-documents_20191205.enlEndNote29829847<style face="normal" font="default" size="11">Investigations on enhanced denitrification capacities of the ENREM process scheme using a synthetic monosubstrate</style>internal-pdf://Johan Stüber - DMS - Krakau - Paper-1538346752/Johan Stüber - DMS - Krakau - Paper.docinternal-pdf://2964419312/Stüber-2009-298.pdfKWB-documents_20191205.enlEndNote62362327<style face="normal" font="default" size="100%">Tertiary treatment combining ozonation and membrane filtration – Pilot scale investigations</style>internal-pdf://2766862141/Stüber-2013-623.pdfKWB-documents_20191205.enlEndNote52252247<style face="normal" font="default" size="100%">Membrane filtration combined with pre-ozonation and coagulation for water reuse: Case study with ceramic and polymeric membranes.</style><style face="normal" font="default" size="11"> </style>internal-pdf://3335320967/Stüber-2012-522.pdfKWB-documents_20191205.enlEndNote54754747<style face="normal" font="default" size="100%">Sweet spot search: Screening the operational window for secondary effluent filtration (Poster).</style>internal-pdf://1061700659/Stüber-2012-547.pdfKWB-documents_20191205.enlEndNote32032017<style face="normal" font="default" size="100%">Forschungsprojekt ENREM Kleinkläranlagen mit Membrantechnik</style>
internal-pdf://2395272505/Stüber-2009-320.pdf
KWB-documents_20191205.enlEndNote32232227<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor</style>internal-pdf://0236221075/Stüber-2010-322.pdfKWB-documents_20191205.enlEndNote30630647<style face="normal" font="default" size="100%">Operation of MBR membrane modules used in a decentralised wastewater treatment plant: Field study and comparison of different cleaning strategies</style>internal-pdf://1779333337/Stüber-2008-306.pdfKWB-documents_20191205.enlEndNote30530517<style face="normal" font="default" size="100%">Operation of MBR memebrane modules used in a decentralised wastewater treatment plant: Filed study and comparison of different cleaning strategies</style>
internal-pdf://0660130761/Stüber-2009-305.pdf
KWB-documents_20191205.enlEndNote54354347<style face="normal" font="default" size="100%">Combining ozonation and ceramic membrane filtration for tertiary treatment.</style>internal-pdf://1861895157/Stüber-2012-543.pdfKWB-documents_20191205.enlEndNote1145114517<style face="normal" font="default" size="100%">Combining Ozonation and ceramic membrane filtration for tertiary treatment</style>
KWB-documents_20191205.enlEndNote54654647<style face="normal" font="default" size="100%">Ozonation on ceramic membranes – possible flux enhancement in tertiary treatment processes (Poster).</style>internal-pdf://4001711030/Stüber-2012-546.pdfKWB-documents_20191205.enlEndNote676717<style face="normal" font="default" size="100%">Phylogenetic characterisation of the three cyanobacteria species Anabaena bergii, Aphanizomenon ovalisporum and Aphanizomenon aphanizomenoides (order Nostocales)</style>
internal-pdf://1200526796/Stüken-2006-67.pdf
KWB-documents_20191205.enlEndNote646417<style face="normal" font="default" size="100%">Distribution of three alien cyanobacterial species (Nostocales) in northeast Germany: Cylindrospermopsis raciborskii, Anabaena bergii and Aphanizomenon aphanizomenoides</style>
internal-pdf://2415302170/Stüken-2006-64.pdf
KWB-documents_20191205.enlEndNote1047104727<style face="normal" font="default" size="100%">Untersuchung des Stickstoffumsatzes im Flusssediment mit vereinfachten Modellansätzen. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kapitel 2.3.2</style>internal-pdf://0392880848/Tatis-Muvdi-2016-1047.pdfKWB-documents_20191205.enlEndNote1236123647<style face="normal" font="default" size="100%">Extensive Green Roof Performance and Design under Different Climatic Conditions-Analyses from China and Germany</style>KWB-documents_20191205.enlEndNote58058027<style face="normal" font="default" size="100%">Hydrogeological and hydrochemical investigations on two French selected wells, Gabachot and Boulac - Documentation of data acquisition and results</style>internal-pdf://1194994799/Taute-2012-580.pdfKWB-documents_20191205.enlEndNote57957927<style face="normal" font="default" size="100%">WELLMA-2: Summary of results and recommendations </style>internal-pdf://2352753603/Taute-2012-579.pdfKWB-documents_20191205.enlEndNote19719727<style face="normal" font="default" size="11">Diffuse trace contaminants with relevance for drinking water production in rural and semi-rural areas</style>internal-pdf://3578049432/Tedesco-2009-197.pdfKWB-documents_20191205.enlEndNote38638647<style face="normal" font="default" size="100%">Near Natural Mitigation Zones for Agricultural Runoff Management to Protect Drinking Water Supplies: A French-German-US research collaboration.</style>internal-pdf://3366015902/Tedesco-2010-386.pdfKWB-documents_20191205.enlEndNote27927927<style face="normal" font="default" size="100%">Resource recovery and removal of pharmaceutical residues Treatment of separate collected urine</style>internal-pdf://1832391570/Tettenbron-2007-279.pdfKWB-documents_20191205.enlEndNote57357327<style face="normal" font="default" size="100%">Report on risk analysis, best practices and lessons learned from existing geothermal projects in Germany</style>internal-pdf://0972897382/Thomas-2013-573.pdfKWB-documents_20191205.enlEndNote72572527<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Modeling Scenarios -</style>internal-pdf://4223856157/Thomas-2014-725.pdfKWB-documents_20191205.enlEndNote72472427<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Technical report -</style>internal-pdf://2440752154/Thomas-2013-724.pdfKWB-documents_20191205.enlEndNote58958927<style face="normal" font="default" size="100%">RIKO-1 Mikrobiologische Methoden: Stand der Technik</style>internal-pdf://2507024677/Thronicker-2013-589.pdfKWB-documents_20191205.enlEndNote24324347<style face="normal" font="default" size="11">Research on iron-related biofilms in Berlin water wells</style>internal-pdf://3560999121/Thronicker-2008-243.pdfKWB-documents_20191205.enlEndNote24524547<style face="normal" font="default" size="11">Bacterial Population comparison of Berlin Water Wells</style>internal-pdf://0177571986/Thronicker-2008-245.pdfKWB-documents_20191205.enlEndNote46546527<style face="normal" font="default" size="100%">WELLMA-DNA Final Report: Documentation of data acquisition and conclusions</style>internal-pdf://1708847505/Thronicker-2011-465.pdfKWB-documents_20191205.enlEndNote58158127<style face="normal" font="default" size="100%">WELLMA-DNA: Microbiological investigations in Gabachot and Boulac</style>internal-pdf://0199960791/Thronicker-2011-581.pdfKWB-documents_20191205.enlEndNote666647<style face="normal" font="default" size="100%">Germination of Cylindrospermopsis raciborskii and Aphanizomenon species under natural and experimental conditions</style>internal-pdf://1273140621/Tingwey-2006-66.pdfKWB-documents_20191205.enlEndNote1114111417<style face="normal" font="default" size="100%">Effect of temperature on biogas yield increase and formation of refractory COD during thermal hydrolysis of waste activated sludge</style>internal-pdf://4236300079/Toutian-2020-1114.pdfKWB-documents_20191205.enlEndNote1118111817<style face="normal" font="default" size="100%">Planungsprozesse in der wassersensiblen und klimagerechten Stadt – blau-grün-grau gekoppelte Infrastrukturen in der Planungspraxis am Beispiel Berlin</style>internal-pdf://1703333929/Trapp-2019-1118.pdfKWB-documents_20191205.enlEndNote65765732<style face="normal" font="default" size="100%">Modelling the impacts of combined sewer overflows on the Berlin River Spree</style>internal-pdf://0316105294/Uldack-2013-657.pdfKWB-documents_20191205.enlEndNote56556527<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions in Berlin</style>internal-pdf://3462347785/Uldack-2013-565.pdfKWB-documents_20191205.enlEndNote1199119927<style face="normal" font="default" size="100%">Grundstücksentwässerungsanlagen - Report Project acronym: GStEW</style>internal-pdf://3738032376/Uldack-2012-1199.pdfKWB-documents_20191205.enlEndNote45145127<style face="normal" font="default" size="100%">Microorganisms in soils & sediments. Detection, quantification and activity. Deliverable 2.2</style>internal-pdf://1661229073/van der Velde-2011-4511.pdfKWB-documents_20191205.enlEndNote1034103427<style face="normal" font="default" size="100%">DEMOWARE D1.2: Report on opportunities for nutrient reduction and recycling in water reuse schemes</style>internal-pdf://1407230585/Van Houtte-2016-1034.pdfKWB-documents_20191205.enlEndNote35935927<style face="normal" font="default" size="100%">Point-of-use membrane systems: place in the world of water supply</style>internal-pdf://1541041041/Varbanets-2006-359.pdfKWB-documents_20191205.enlEndNote49749732<style face="normal" font="default" size="100%">Optimization of abstraction costs for a drinking water well field</style>internal-pdf://2139441911/Vautrin-2012-497.pdfKWB-documents_20191205.enlEndNote1071107147<style face="normal" font="default" size="100%">Optimized materials and processes for the separation of microplastic from the water cycle - OEMP</style>internal-pdf://1967949777/Venghaus-2018-1071.pdfKWB-documents_20191205.enlEndNote1214121427<style face="normal" font="default" size="100%">Effectiveness of Riparian Zones in Contaminant Mitigation Project acronym: AQUISAFE 1</style>internal-pdf://1350490027/Vidon-2009-1214.pdfKWB-documents_20191205.enlEndNote27127132<style face="normal" font="default" size="100%">Auslegung und Optimierung eines Speichertanks für eine Membranbelebungsanlage</style>internal-pdf://2104393567/Villwock-2005-271.pdfKWB-documents_20191205.enlEndNote27227232<style face="normal" font="default" size="100%">Extensive Biological Nutrients Removal in Membrane Bioreactors</style>internal-pdf://2925492348/Vocks-2008-272.pdfKWB-documents_20191205.enlEndNote808017<style face="normal" font="default" size="100%">Enhanced post-denitrification without addition of an external carbon source in membrane bioreactors</style>
internal-pdf://2411956308/Vocks-2005-80.pdf
KWB-documents_20191205.enlEndNote535327<style face="normal" font="default" size="100%">Progress Report 2004 - Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://2267391021/Vocks-2004-53.pdfKWB-documents_20191205.enlEndNote525227<style face="normal" font="default" size="100%">Final Report 2005 Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://3589774885/Vocks-2005-52.pdfKWB-documents_20191205.enlEndNote27427447<style face="normal" font="default" size="100%">Impact of two different excess sludge removal strategies on the performance of a membrane bioreactor system</style>internal-pdf://0451463934/Vocks-2007-274.pdfKWB-documents_20191205.enlEndNote1211121117<style face="normal" font="default" size="100%">Systematic Review of Toxicity Removal by Advanced Wastewater Treatment Technologies via Ozonation and Activated Carbon</style>
KWB-documents_20191205.enlEndNote1203120332<style face="normal" font="default" size="100%">Performance evaluation of constructed wetlands combined with engineered systems for water reuse</style>KWB-documents_20191205.enlEndNote65965932<style face="normal" font="default" size="100%">Screening of different sewage sludge disposal routes regarding the energy demand with focus on hydrothermal carbonisation</style>internal-pdf://2389013815/Warneke-2013-659.pdfKWB-documents_20191205.enlEndNote63263247<style face="normal" font="default" size="100%">Nutzung von Überschusswärme zur Optimierung der Schlammentwässerung</style>KWB-documents_20191205.enlEndNote1017101732<style face="normal" font="default" size="100%">Untersuchungen der Leistungsfähigkeit von bepflanzten Vertikalbodenfiltern zur Elimination von Spurenstoffen nach der Ozonung im Vergleich zu Sandfiltern</style>internal-pdf://0320872840/Weidlich-2017-1017.pdfKWB-documents_20191205.enlEndNote97697647<style face="normal" font="default" size="100%">Wellbore Skin in Mine Dewatering and Drinking Water Supply: Field Observation, Mineralogy and Hydraulic Effect</style>internal-pdf://3995256054/Weidner-2016-976.pdfKWB-documents_20191205.enlEndNote1159115947<style face="normal" font="default" size="100%">Investigations on glyphosate removal at the UBA experimental field site.</style>KWB-documents_20191205.enlEndNote56856817<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Zukunftsvision oder doch schon Realität?</style>
internal-pdf://2477248182/Weigert-2013-568.pdf
KWB-documents_20191205.enlEndNote67467417<style face="normal" font="default" size="100%">Angewandte Wasserforschung</style>
internal-pdf://1809882068/Weigert-2014-674.pdf
KWB-documents_20191205.enlEndNote70270217<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>internal-pdf://0629175243/Weigert-2014-702.pdfKWB-documents_20191205.enlEndNote1204120432<style face="normal" font="default" size="100%">Assessment of direct greenhouse gas emissions from a pilot-scale aerobic granular sludge reactor treating domestic wastewater</style>KWB-documents_20191205.enlEndNote37237217<style face="normal" font="default" size="100%">Contribution of combined sewer overflows to trace contaminant loads in urban streams</style>
internal-pdf://2873321480/Weyrauch-2010-372.pdf
KWB-documents_20191205.enlEndNote18918947<style face="normal" font="default" size="100%">Optimierung von Brunnenbetrieb und –instandhaltung ein interdisziplinäres Forschungsprojekt in Berlin</style>internal-pdf://2837509371/Wiacek-2008-189.pdfKWB-documents_20191205.enlEndNote64764727<style face="normal" font="default" size="100%">Eco-engineering systems for removal of micropollutants from WWTP effluents – existing knowledge</style>internal-pdf://1824214379/Wicke-2013-647.pdfKWB-documents_20191205.enlEndNote1030103027<style face="normal" font="default" size="100%">Untersuchung der Lebensdauer von Schlauchlinern - Ergebnisse der Literaturrecherche. Bericht des Forschungsvorhabens SEMA-Berlin (D3).</style>internal-pdf://1564324373/Wicke-2017-1030.pdfKWB-documents_20191205.enlEndNote68568547<style face="normal" font="default" size="100%">Monitoring of micropollutant loads in urban stormwater on city scale - Strategy and realization</style>internal-pdf://2022940295/Wicke-2014-685.pdfKWB-documents_20191205.enlEndNote81081047<style face="normal" font="default" size="100%">Towards assessing the relevance of micropollutants in stormwater discharged to Berlin surface waters</style>internal-pdf://3394129082/Wicke-2015-810.pdfKWB-documents_20191205.enlEndNote99099047<style face="normal" font="default" size="100%">Extent and dynamics of classic and emerging contaminants in stormwater of urban catchment types</style>internal-pdf://2731361818/Wicke-2016-990.pdfKWB-documents_20191205.enlEndNote99199147<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://1227208656/Wicke-2016-991.pdfKWB-documents_20191205.enlEndNote77577527<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Zwischenbericht</style>internal-pdf://2628871933/Wicke-2014-775.pdfKWB-documents_20191205.enlEndNote77077047<style face="normal" font="default" size="100%">Biocides in urban stormwater - catchment-specific differences and city-wide loads</style>internal-pdf://0216153664/Wicke-2015-770.pdfKWB-documents_20191205.enlEndNote80180127<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Abschlussbericht</style>internal-pdf://0064736445/Wicke-2015-801.pdfKWB-documents_20191205.enlEndNote1129112947<style face="normal" font="default" size="100%">Mikroschadstoffe im Regenwasser – Konzentrationen, Frachten und Vergleich mit Emissionen im Schmutzwasser</style>internal-pdf://0640384910/Wicke-2019-1129.pdfKWB-documents_20191205.enlEndNote1128112847<style face="normal" font="default" size="100%">Organische Spurenstoffe im Regenwasserabfluss Berlins – Jahresfrachten und Vergleich mit Abwassereinträgen</style>internal-pdf://2521957492/Wicke-2019-1128.pdfKWB-documents_20191205.enlEndNote1041104117<style face="normal" font="default" size="100%">Biozide im Regenwasserabfluss Berlins</style>
internal-pdf://1267174380/Wicke-2017-1041.pdf
KWB-documents_20191205.enlEndNote99799717<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>
internal-pdf://0113394616/Wicke-2017-997.pdf
KWB-documents_20191205.enlEndNote1044104447<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://2808576077/Wicke-2017-1044.pdfKWB-documents_20191205.enlEndNote1043104347<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – citywide loads and comparison with sewage inputs.</style>internal-pdf://1489261766/Wicke-2017-1043.pdfKWB-documents_20191205.enlEndNote81181147<style face="normal" font="default" size="100%">Monitoring of catchment-specific micropollutant contamination in stormwater of Berlin</style>internal-pdf://1354080139/Wicke-2015-811.pdfKWB-documents_20191205.enlEndNote68668627<style face="normal" font="default" size="100%">Pilot Sites for Mitigation of Diffuse Pollution in Ic Amont Catchment (Brittany)</style>internal-pdf://2013377592/Wicke-2014-686.pdfKWB-documents_20191205.enlEndNote68468447<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>internal-pdf://3008025654/Wicke-2014-684.pdfKWB-documents_20191205.enlEndNote76276217<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>
internal-pdf://3302723632/Wicke-2015-762.pdf
KWB-documents_20191205.enlEndNote1130113027<style face="normal" font="default" size="100%">Combining constructed wetlands and engineered treatment for water reuse, report WP3, Deliverable D3.1.</style>internal-pdf://2678269638/Wicke-2019-1130.pdfKWB-documents_20191205.enlEndNote8308306<style face="normal" font="default" size="100%">Sewage sludge management in Germany</style>internal-pdf://1497578304/Wiechmann-2015-830.pdfKWB-documents_20191205.enlEndNote45545527<style face="normal" font="default" size="100%">Development of Toxic Nostocales (Cyanobacteria) in the Course of Declining Trophic State and Global Warming - NOSTOTOX Final Report</style>internal-pdf://0344078589/Wiedner-2011-455.pdfKWB-documents_20191205.enlEndNote656517<style face="normal" font="default" size="100%">Climate change affects timing and size of populations of an invasive cyanobacterium in temperate regions</style>
internal-pdf://1116967569/Wiedner-2007-65.pdf
KWB-documents_20191205.enlEndNote1751755<style face="normal" font="default" size="100%">Tropische Cyanobakterien in Deutschen Gewässern: Ursachen und Konsequenzen</style>internal-pdf://Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen u-1006585856/Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen und Konsequenzen, 4p.pdfKWB-documents_20191205.enlEndNote595917<style face="normal" font="default" size="100%">Seasonal dynamics of cylindrospermopsin and cyanobacteria in two German lakes</style>
internal-pdf://3561785350/Wiedner-2006-59.pdf
KWB-documents_20191205.enlEndNote1681686<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area -Occurrence, Causes and Consequences (CYLIN)</style>internal-pdf://2124363951/Wiedner-2007-168.pdfKWB-documents_20191205.enlEndNote29229227<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area: Occurrence, Causes and Consequences</style>internal-pdf://0977867557/Wiedner-2007-292.pdfKWB-documents_20191205.enlEndNote29129127<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii und Cylindrospermopsin in Gewässern der Berliner Region Vorkommen, Ursachen, Auswirkungen</style>internal-pdf://1485731886/Wiedner-2005-291.pdfKWB-documents_20191205.enlEndNote29329332<style face="normal" font="default" size="11">Spatially and temporally scaled inverse hydraulic modelling, multi tracer transport modelling and interaction with geochemical processes at a highly transient bank filtration site</style>internal-pdf://1654028225/Wiese-2006-293.pdfKWB-documents_20191205.enlEndNote1179117927<style face="normal" font="default" size="100%">Substances to be Targeted in Laboratory and Technical Scale Experiments Project OXIRED, Deliverable 1.1a - Interim Report Phase 1</style>internal-pdf://3512566455/Wiese-2009-1179.pdfKWB-documents_20191205.enlEndNote14314317<style face="normal" font="default" size="100%">Assessing the Effect of Pumping Regimes on Bank Filtration</style>
internal-pdf://1508090847/Wiese-2004-143.pdf
KWB-documents_20191205.enlEndNote14214247<style face="normal" font="default" size="100%">Assessment of bank filtration pumping regimes on flow length and travel times: a case study</style>internal-pdf://0466657663/Wiese-2004-142.pdfKWB-documents_20191205.enlEndNote33833847<style face="normal" font="default" size="100%">Condition-dependent removal of 38 organic constituents during bank filtration</style>internal-pdf://0675375954/Wiese-2010-338.pdfKWB-documents_20191205.enlEndNote42942917<style face="normal" font="default" size="100%">Removal kinetics of organic compounds and sum parameters under field conditions for managed aquifer recharge</style>
internal-pdf://1483742312/Wiese-2011-429.pdf
KWB-documents_20191205.enlEndNote14614647<style face="normal" font="default" size="100%">Hydraulic and transport modelling of bank filtration at Lake Tegel (Berlin)</style>internal-pdf://4006581567/Wiese-2006-146.pdfKWB-documents_20191205.enlEndNote14414417<style face="normal" font="default" size="100%">Infiltration of surface water into groundwater under transient pressure gradients</style>
internal-pdf://3101069906/Wiese-2007-144.pdf
KWB-documents_20191205.enlEndNote14514547<style face="normal" font="default" size="100%">Inverse Modelling of Aquitard Structures using Pilot Points and Regularisation</style>internal-pdf://2145882628/Wiese-2007-145.pdfKWB-documents_20191205.enlEndNote1116111617<style face="normal" font="default" size="100%">Abschwächung von Klimafolgen bei erhöhter Lebensqualität in der Stadt – das Potenzial von gekoppelten blau-grün-grauen Infrastrukturen</style>internal-pdf://3713978269/Winker-2019-1116.pdfKWB-documents_20191205.enlEndNote18818847<style face="normal" font="default" size="100%">Brunnenmanagement – ein Forschungsvorhaben zur Optimierung des Betriebs von Brunnenanlagen</style>internal-pdf://0592869250/Wittstock-2009-188.pdfKWB-documents_20191205.enlEndNote37137117<style face="normal" font="default" size="100%">Application of GaN-based ultraviolet-C light emitting diodes - UV LEDs - for water disinfection</style>
internal-pdf://2469273601/Würtele-2011-371.pdf
KWB-documents_20191205.enlEndNote86086032<style face="normal" font="default" size="100%">Energie- und Treibhausgasbilanz ausgewählter Szenarien zur Klärschlammentsorgung mit Hydrothermaler Karbonisierung in Berlin</style>internal-pdf://1223307457/Zander-2015-860.pdfKWB-documents_20191205.enlEndNote66766732<style face="normal" font="default" size="100%">Optimierungspotentiale für die Schlammentwässerung durch verschiedene chemische Konditionierungsverfahren</style>internal-pdf://1611699569/Zhou-2013-667.pdfKWB-documents_20191205.enlEndNote1001100117<style face="normal" font="default" size="100%">Phosphorus recovery from municipal and fertilizer wastewater: China's potential and perspective</style>
KWB-documents_20191205.enlEndNote1212121217<style face="normal" font="default" size="100%">Comparative environmental life cycle assessment of phosphorus recovery with different generations of the AirPrex® systems</style>
KWB-documents_20191205.enlEndNote1014101427<style face="normal" font="default" size="100%">Deliverable 1.4 Pretreatment requirements and design guidelines for SAT technologies - DEMOWARE </style>internal-pdf://1270820027/Zietzschmann-2017-1014.pdfKWB-documents_20191205.enlEndNote1075107527<style face="normal" font="default" size="100%">TestTools – Entwicklung und Validierung von schnellen Testmethoden zum Spurenstoffverhalten in technischen und natürlichen Barrieren des urbanen Wasserkreislaufs</style>internal-pdf://2724954824/Zietzschmann-2018-1075.pdfKWB-documents_20191205.enlEndNote14714717<style face="normal" font="default" size="100%">Analysis of endocrine disrupting steroids: Investigation of their release into the environment and their behavior during bank filtration</style>
internal-pdf://0905879872/Zühlke-2004-147.pdf
KWB-documents_20191205.enlEndNote828217<style face="normal" font="default" size="100%">Long term comparison of trace organics removal performances between conventional and membrane activated sludge processes</style>
internal-pdf://2135328711/Zühlke-2006-82.pdf
KWB-documents_20191205.enlEndNote818147<style face="normal" font="default" size="100%">Langzeituntersuchungen zur Entfernung organischer Spurenstoffe mit zwei Membranbelebungsanlagen im Vergleich zu einem konventionellen Klärwerk</style>internal-pdf://1461750327/Zühlke-2003-81.pdf
\ No newline at end of file diff --git a/inst/extdata/2020-06-17_KWB-documents.xml b/inst/extdata/2020-06-17_KWB-documents.xml new file mode 100644 index 0000000..07e2576 --- /dev/null +++ b/inst/extdata/2020-06-17_KWB-documents.xml @@ -0,0 +1 @@ +KWB-documents_20191205.enlEndNote2227<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel (Berlin-Brandenburg)</style>internal-pdf://2772938330/Kranz-2003-2.pdfKWB-documents_20191205.enlEndNote3327<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von iodorganischen Röntgenkontrastmitteln in Krankenhäusern</style>internal-pdf://2463473563/Pineau-2005-3.pdfKWB-documents_20191205.enlEndNote4427<style face="normal" font="default" size="100%">Berlinbeach - Erarbeitung eines Verfahrens zur Vermeidung von Einleitungen aus der Mischkanalisation in städtische Fließgewässer</style>internal-pdf://1038854647/Engel-2004-4.pdfKWB-documents_20191205.enlEndNote6627<style face="normal" font="default" size="100%">RKM - Getrennte Erfassung von Röntgenkontrastmitteln - Zwischenbericht</style>internal-pdf://0304063065/Pineau-2004-6.pdfKWB-documents_20191205.enlEndNote7727<style face="normal" font="default" size="100%">Threshold Values for Oligotrophication of Lake Tegel and Schlachtensee, Berlin - Analysis of System Components and Causalities</style>internal-pdf://3378620233/Chorus-2004-7.pdfKWB-documents_20191205.enlEndNote8827<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor (ENREM) - Progress report 1- LIFE 04 ENV/D/058</style>internal-pdf://3016138838/Luck-2005-8.pdfKWB-documents_20191205.enlEndNote9927<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries dans la rivière Erdre Travaux de recherche en laboratoire. Rapport final Janvier 2004</style>internal-pdf://0677181322/Pineau-2004-9.pdfKWB-documents_20191205.enlEndNote101027<style face="normal" font="default" size="100%">ISM - Integrated Sewage Management - Final Research Report</style>internal-pdf://0375035574/Pawlowsky-Reusing-2006-10.pdfKWB-documents_20191205.enlEndNote111147<style face="normal" font="default" size="100%">Assessment of global pump station control strategies on the basis of numerical modelling</style>internal-pdf://2135334655/Schroeder-2005-11.pdfKWB-documents_20191205.enlEndNote141417<style face="normal" font="default" size="100%">Integrated sewage management to reduce pollution load in Berlin</style>
internal-pdf://1791926733/Schroeder-2004-14.pdf
KWB-documents_20191205.enlEndNote151547<style face="normal" font="default" size="100%">Current State And Development Of The Real-Time Control Of The Berlin Sewage System</style>file://Z:\Dokument-Managementsystem\Dokuments\Publikation\Schroeder%20and%20Pawlowsky-Reusing,%202004%20-%20Current%20State%20And%20Development%20Of%20The%20Real-Time%20Control%20Of%20The%20Berlin%20Sewage%20System.pdfKWB-documents_20191205.enlEndNote161617<style face="normal" font="default" size="100%">Integriertes Abwassermanagement - Strategien für eine integrierte Bewirtschaftung des Berliner Abwassersystems und Nutzen von lokalen und globalen Steuerungskonzepten</style>
internal-pdf://1725070309/Schroeder-2004-16.PDF
KWB-documents_20191205.enlEndNote171747<style face="normal" font="default" size="100%">Adapted integrated modelling of drainage systems dominated by wastewater pump stations</style>internal-pdf://0046434591/Schroeder-2006-17.pdfKWB-documents_20191205.enlEndNote181847<style face="normal" font="default" size="100%">Integrated Sewage Management - Setup of networked models for analysis and improvement of the Berlin sewage system</style>internal-pdf://3109923553/Schroeder-2002-18.pdfKWB-documents_20191205.enlEndNote191947<style face="normal" font="default" size="100%">Integriertes Abwasser Management – Aufbau eines integrierten Modells zur Optimierung des Berliner Abwasser Systems</style>internal-pdf://2293082022/Schroeder-2003-19.pdfKWB-documents_20191205.enlEndNote202047<style face="normal" font="default" size="100%">Model-based evaluation of a level dependant real-time control for sewage pump stations</style>internal-pdf://1245154128/Schroeder-2004-20.pdfKWB-documents_20191205.enlEndNote212147<style face="normal" font="default" size="100%">Integrated Sewage Management - Development of a global Real Time Control for three interconnected Subcatchments of the Berlin Drainage System</style>internal-pdf://1348248793/Schroeder-2004-21.PDFKWB-documents_20191205.enlEndNote222247<style face="normal" font="default" size="100%">Integrated Simulation of the Berlin Sewage System and Evaluation of a global Real-time Control Concept</style>internal-pdf://1659477681/Schroeder-2005-22.pdfKWB-documents_20191205.enlEndNote242447<style face="normal" font="default" size="100%">Case study of global pump station control for the combined sewerage of Berlin</style>internal-pdf://1482793733/Huß-2005-24.pdfKWB-documents_20191205.enlEndNote272747<style face="normal" font="default" size="100%">Etude globale sur les cyanobactéries et leurs toxines dans la rivière Erdre (France)</style>internal-pdf://1640605357/Luck-2004-27.pdfKWB-documents_20191205.enlEndNote282817<style face="normal" font="default" size="100%">Current state and development of the real-time control of the Berlin sewage system</style>
internal-pdf://2939330163/Schroeder-2005-28.pdf
KWB-documents_20191205.enlEndNote303047<style face="normal" font="default" size="100%">Sanitärkonzepte zur getrennten Behandlung von Urin, Fäkalien und Grauwasser</style>internal-pdf://3109465098/Peter-Fröhlich-2003-30.pdfKWB-documents_20191205.enlEndNote313147<style face="normal" font="default" size="100%">EU-Demonstrationsprojekt Sanitärkonzepte für die separate Erfassung und Behandlung von Urin, Fäkalien und Grauwasser - erste Ergebnisse</style>KWB-documents_20191205.enlEndNote323247<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater – First Results</style>internal-pdf://0960472437/Peter-Fröhlich-2004-32.pdfKWB-documents_20191205.enlEndNote333347<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater - Demonstration Project in Berlin, Germany</style>internal-pdf://1554752807/Peter-Fröhlich-2004-33.pdfKWB-documents_20191205.enlEndNote343447<style face="normal" font="default" size="100%">Demonstration Project for Separate Discharge and Treatment of Urine, Faeces and Greywater - Cost Comparison with the Conventional Wastewater System</style>KWB-documents_20191205.enlEndNote353517<style face="normal" font="default" size="100%">Separate Ableitung und Behandlung von Urin, Fäkalien und Grauwasser – ein Pilotprojekt </style>
internal-pdf://0826025060/Peter-Fröhlich-2004-35.pdf
KWB-documents_20191205.enlEndNote363627<style face="normal" font="default" size="100%">FINAL REPORT DRAFT v0.1 NASRI Natural and Artificial Systems for Recharge and Infiltration Project acronym: NASRI </style>internal-pdf://3389323520/Pekdeger-2006-36.pdfKWB-documents_20191205.enlEndNote393927<style face="normal" font="default" size="100%">Progress Report No. 01 - Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater (SCST)</style>internal-pdf://3135153915/Luck-2004-39.pdfKWB-documents_20191205.enlEndNote404047<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces and Greywater Pilot Project</style>internal-pdf://3271292904/Peter-Fröhlich-2003-40.pdfKWB-documents_20191205.enlEndNote414127<style face="normal" font="default" size="100%">Machbarkeitsstudie für die Einrichtung eines Informations- und Testzentrums Messtechnik (ITZM) im Wasser- und Abwasserbereich</style>internal-pdf://0860464735/Lühr-2004-41.pdfKWB-documents_20191205.enlEndNote434327<style face="normal" font="default" size="100%">Pilotuntersuchungen zur kombinierten oxidativ-biologischen Behandlung von Klärwerksabläufen für die Entfernung von organischen Spuren- und Wirkstoffen und zur Desinfektion</style>internal-pdf://3229062385/Bahr-2007-43.pdfKWB-documents_20191205.enlEndNote444427<style face="normal" font="default" size="100%">12 Jahre Pilotbetrieb Karolinenhöhe – eine erste Auswertung</style>internal-pdf://2111833628/Liese-2004-44.pdfKWB-documents_20191205.enlEndNote454527<style face="normal" font="default" size="100%">SCST, Technical interim report 2005</style>internal-pdf://0020946937/Pawlowski-2005-45.pdfKWB-documents_20191205.enlEndNote464627<style face="normal" font="default" size="100%">Evaluation of enhanced biological phosphorus removal process in membrane bioreactors (operation from Oct 2001 to Apr 2002 with a sludge age of 26 days)</style>internal-pdf://2178396066/Gnirß-2002-46.pdfKWB-documents_20191205.enlEndNote474727<style face="normal" font="default" size="100%">Application of Liquid Chromatography-Online Carbon Detection (LC-OCD) to the understanding of organic fouling in membrane bioreactors (MBRs)</style>internal-pdf://1984538597/Laabs-2004-47.pdfKWB-documents_20191205.enlEndNote484827<style face="normal" font="default" size="100%">Preliminary Studies on P-removal by Adsorption from MBR filtrates</style>internal-pdf://3888754360/Kornmüller-2002-48.pdfKWB-documents_20191205.enlEndNote494927<style face="normal" font="default" size="100%">Project AMEDEUS “Accelerate membrane development for urban sewage purification" Yearly project activity report n°1 period 0ct 05-sept 06 </style>internal-pdf://2581371096/Lesjean-2006-49.pdfKWB-documents_20191205.enlEndNote505027<style face="normal" font="default" size="100%">Technical interim report 2006 - Enhanced Nutrients Removal in Membrane Bioreactor (ENREM)</style>internal-pdf://0541694339/Lesjean-2006-50.pdfKWB-documents_20191205.enlEndNote525227<style face="normal" font="default" size="100%">Final Report 2005 Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://3589774885/Vocks-2005-52.pdfKWB-documents_20191205.enlEndNote535327<style face="normal" font="default" size="100%">Progress Report 2004 - Preliminary investigations for the Margaretenhöhe MBR demonstration plant</style>internal-pdf://2267391021/Vocks-2004-53.pdfKWB-documents_20191205.enlEndNote545417<style face="normal" font="default" size="100%">MBR: Technology gets timely EU cash boost</style>
internal-pdf://1943574837/Lesjean-2006-54.pdf
KWB-documents_20191205.enlEndNote565647<style face="normal" font="default" size="100%">Planung und Bau einer Membranbelebungsanlage für die semizentrale Erschließung eines Siedlungsgebietes in einem empfindlichen Gebiet</style>internal-pdf://1234280612/Gnirß-2005-56.pdfKWB-documents_20191205.enlEndNote575717<style face="normal" font="default" size="100%">Influence of unsteady membrane bioreactor operation on EPS formation and filtration resistance</style>
internal-pdf://0449289687/Drews-2006-57.pdf
KWB-documents_20191205.enlEndNote585817<style face="normal" font="default" size="100%">Distribution and regulation of the originally tropical cyanobacterium Cylindrospermopsis raciborskii at its northern limits</style>internal-pdf://3739194984/Rücker-2006-58.pdfKWB-documents_20191205.enlEndNote595917<style face="normal" font="default" size="100%">Seasonal dynamics of cylindrospermopsin and cyanobacteria in two German lakes</style>
internal-pdf://3561785350/Wiedner-2006-59.pdf
KWB-documents_20191205.enlEndNote606017<style face="normal" font="default" size="100%">Occurrence of the Cyanobacterial Toxin Cylindrospermopsin in Northeast Germany</style>
internal-pdf://4195718292/Fastner-2007-60.pdf
KWB-documents_20191205.enlEndNote616117<style face="normal" font="default" size="100%">First report on cylindrospermopsin producing Aphanizomenon flos-aquae (Cyanobacteria) isolated from two German lakes</style>
internal-pdf://3188891469/Preußel-2005-61.pdf
KWB-documents_20191205.enlEndNote626217<style face="normal" font="default" size="100%">Concentrations of particulate and dissolved cylindrospermopsin in 21 Aphanizomenon-dominated temperate lakes</style>
internal-pdf://4045443963/Rücker-2007-62.pdf
KWB-documents_20191205.enlEndNote636317<style face="normal" font="default" size="100%">Genetic characterisation of Cylindrospermopsis raciborskii (Nostocales, Cyanobacteria) isolates from Africa and Europe.</style>
internal-pdf://1482954071/Haande-2006-63.pdf
KWB-documents_20191205.enlEndNote646417<style face="normal" font="default" size="100%">Distribution of three alien cyanobacterial species (Nostocales) in northeast Germany: Cylindrospermopsis raciborskii, Anabaena bergii and Aphanizomenon aphanizomenoides</style>
internal-pdf://2415302170/Stüken-2006-64.pdf
KWB-documents_20191205.enlEndNote656517<style face="normal" font="default" size="100%">Climate change affects timing and size of populations of an invasive cyanobacterium in temperate regions</style>
internal-pdf://1116967569/Wiedner-2007-65.pdf
KWB-documents_20191205.enlEndNote666647<style face="normal" font="default" size="100%">Germination of Cylindrospermopsis raciborskii and Aphanizomenon species under natural and experimental conditions</style>internal-pdf://1273140621/Tingwey-2006-66.pdfKWB-documents_20191205.enlEndNote676717<style face="normal" font="default" size="100%">Phylogenetic characterisation of the three cyanobacteria species Anabaena bergii, Aphanizomenon ovalisporum and Aphanizomenon aphanizomenoides (order Nostocales)</style>
internal-pdf://1200526796/Stüken-2006-67.pdf
KWB-documents_20191205.enlEndNote686847<style face="normal" font="default" size="100%">Membrane bioreactor for semi-central sanitation with enhanced treatment performances</style>internal-pdf://1121487259/Lesjean-2005-68.pdfKWB-documents_20191205.enlEndNote696947<style face="normal" font="default" size="100%">Implementation of a decision support system for global pump station control in Berlin</style>internal-pdf://2245104429/Schroeder-2007-69.pdfKWB-documents_20191205.enlEndNote707047<style face="normal" font="default" size="100%">Consideration of online rainfall measurement and now casting for RTC of the combined sewage system</style>internal-pdf://4116877173/Rouault-2007-70.pdfKWB-documents_20191205.enlEndNote727217<style face="normal" font="default" size="100%">Membranbelebungsverfahren mit vermehrter biologischer Phosphorelimination (EBPR)</style>
internal-pdf://3152784019/Adam-2003-72.pdf
KWB-documents_20191205.enlEndNote737347<style face="normal" font="default" size="100%">Biologische Phosphorentfernung mit einer nachgeschaltetenDenitrifikation im Membranbelebungsverfahren</style>internal-pdf://1556654365/Gnirß-2003-73.pdfKWB-documents_20191205.enlEndNote747417<style face="normal" font="default" size="100%">Process configurations adapted to membrane bioreactors for enhanced biological phosphorous and nitrogen removal</style>
internal-pdf://3379015180/Lesjean-2002-74.pdf
KWB-documents_20191205.enlEndNote757547<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation of Membrane Bioreactor Process configurations for biological advanced nutrients removal from municipal wastewater</style>KWB-documents_20191205.enlEndNote767617<style face="normal" font="default" size="100%">Outcomes of a 2-year investigation on enhanced biological nutrients removal and trace organics elimination in membrane bioreactor (MBR)</style>
internal-pdf://0392201778/Lesjean-2005-76.pdf
KWB-documents_20191205.enlEndNote787847<style face="normal" font="default" size="100%">Zusammenhang zwischen Membranfouling und gelösten Substanzen in Membranbelebungsreaktoren</style>internal-pdf://3570174956/Rosenberger-2003-78.pdfKWB-documents_20191205.enlEndNote797917<style face="normal" font="default" size="100%">Impact of colloidal and soluble organic material on membrane performance in membrane bioreactors for municipal waste water treatment</style>
internal-pdf://4178584535/Rosenberger-2006-79.pdf
KWB-documents_20191205.enlEndNote808017<style face="normal" font="default" size="100%">Enhanced post-denitrification without addition of an external carbon source in membrane bioreactors</style>
internal-pdf://2411956308/Vocks-2005-80.pdf
KWB-documents_20191205.enlEndNote818147<style face="normal" font="default" size="100%">Langzeituntersuchungen zur Entfernung organischer Spurenstoffe mit zwei Membranbelebungsanlagen im Vergleich zu einem konventionellen Klärwerk</style>internal-pdf://1461750327/Zühlke-2003-81.pdfKWB-documents_20191205.enlEndNote828217<style face="normal" font="default" size="100%">Long term comparison of trace organics removal performances between conventional and membrane activated sludge processes</style>
internal-pdf://2135328711/Zühlke-2006-82.pdf
KWB-documents_20191205.enlEndNote838347<style face="normal" font="default" size="100%">Application of InfoWorks CS® for the Evaluation of CSO-Impacts in Berlin</style>internal-pdf://4259550137/Pawlowsky-Reusing-2007-83.pdfKWB-documents_20191205.enlEndNote858547<style face="normal" font="default" size="100%">Zustand und Entwicklung der Steuerung des Berliner Entwässerungssystems</style>internal-pdf://3686304374/Schroeder-2003-85.pdfinternal-pdf://1405258420/Schroeder-2003-852.pdfKWB-documents_20191205.enlEndNote878747<style face="normal" font="default" size="100%">Simulationsgestützte Entwicklung von Strategien der Verbundsteuerung am Beispiel des Berliner Entwässerungssystems</style>internal-pdf://1268490763/Schroeder-2004-87.pdfKWB-documents_20191205.enlEndNote888847<style face="normal" font="default" size="100%">Using the Tritium/Helium Age Dating Method to characterise two river recharged aquifer systems in Germany</style>internal-pdf://0607104384/Massmann-2003-88.pdfKWB-documents_20191205.enlEndNote898917<style face="normal" font="default" size="100%">Investigating the influence of treated sewage in ground- and surface water using wastewater indicators in Berlin, Germany</style>
internal-pdf://2872157635/Massmann-2004-89.pdf
KWB-documents_20191205.enlEndNote909017<style face="normal" font="default" size="100%">Contribution of the colmation layer to the elimination of coliphages by slow sand filtration</style>
internal-pdf://0965782101/Dizer-2004-90.pdf
KWB-documents_20191205.enlEndNote919147<style face="normal" font="default" size="100%">Quantifying biogeochemical changes during ASR of reclaimed water at Bolivar, South Australia</style>internal-pdf://4291075387/Greskowiak-2005-91.pdfKWB-documents_20191205.enlEndNote929247<style face="normal" font="default" size="100%">Transport and attenuation of antibiotic residues during river bank filtration in Berlin, Germany</style>internal-pdf://4036337906/Fanck-2005-92.pdfKWB-documents_20191205.enlEndNote939347<style face="normal" font="default" size="100%">Cleaning capacity of bank filtration and artificial recharge with influence of treated waste water</style>internal-pdf://3757222313/Fritz-2004-93.pdfKWB-documents_20191205.enlEndNote949417<style face="normal" font="default" size="100%">Process studies in a bank filtration system in Berlin using environmental tracers</style>internal-pdf://2915281259/Fritz-2003-94.pdfKWB-documents_20191205.enlEndNote959517<style face="normal" font="default" size="100%">Naturnahe Grundwassergewinnung - Ergebnisse eines umfangreichen, interdisziplinären Forschungsvorhabens zur künstlichen Grundwasseranreicherung und Uferfiltration</style>
internal-pdf://2718497586/Fritz-2007-95.pdf
KWB-documents_20191205.enlEndNote969617<style face="normal" font="default" size="100%">Modeling Seasonal Redox Dynamics and the Corresponding Fate for the Pharmaceutical Residue Phenazone During Artificial Recharge of Groundwater</style>
internal-pdf://1601904375/Greskowiak-2006-96.pdf
KWB-documents_20191205.enlEndNote979717<style face="normal" font="default" size="100%">Modeling of carbon cycling and biogeochemical changes during injection and recovery of reclaimed water at Bolivar, South Australia</style>
internal-pdf://1766826835/Greskowiak-2005-97.pdf
KWB-documents_20191205.enlEndNote989847<style face="normal" font="default" size="100%">Hydrogeochemical changes of seepage water during artificial recharge of groundwater in Berlin, Germany</style>internal-pdf://2185534857/Greskowiak-2006-98.pdfKWB-documents_20191205.enlEndNote999947<style face="normal" font="default" size="100%">Behavior of bulk organics and trace pollutants during bank filtration and groundwater recharge of wastewater-impacted surface waters</style>internal-pdf://2800461968/Grünheid-2004-99.PDFKWB-documents_20191205.enlEndNote10010047<style face="normal" font="default" size="100%">Behavior of Trace Pollutants During Bank Filtration and Ground Water Recharge of Wastewater-impacted Surface Waters</style>internal-pdf://2937104591/Grünheid-2004-100.pdfKWB-documents_20191205.enlEndNote10110147<style face="normal" font="default" size="100%">Impact of temperature on biodegradation of bulk and trace organics during soil passage in an indirect reuse system</style>internal-pdf://3986448131/Grünheid-2007-101.pdfKWB-documents_20191205.enlEndNote10210217<style face="normal" font="default" size="100%">Cyanobakterientoxine bei der Uferfiltration. Unter welchen Umständen ist ihre Elimination sicher?</style>
internal-pdf://2804555418/Grützmacher-2007-102.pdf
KWB-documents_20191205.enlEndNote10310347<style face="normal" font="default" size="100%">Are there limits to cyanobacterial toxin (microcystin) elimination by sand passage?</style>internal-pdf://3453328480/Grützmacher-2006-103.pdfKWB-documents_20191205.enlEndNote10410447<style face="normal" font="default" size="100%">On the behaviour of microcystins in saturated porous medium</style>internal-pdf://1593744558/Grützmacher-2006-104.pdfKWB-documents_20191205.enlEndNote10510547<style face="normal" font="default" size="100%">Simulating bank filtration and artificial recharge on a technical scale</style>internal-pdf://3159881532/Grützmacher-2006-105.pdfKWB-documents_20191205.enlEndNote10610647<style face="normal" font="default" size="100%">Prozesse der Elimination von Cyanobakterientoxinen bei der Infiltration</style>internal-pdf://0656512085/Grützmacher-2007-106.pdfKWB-documents_20191205.enlEndNote10710747<style face="normal" font="default" size="100%">Fate of bulk organics during bank filtration of wastewater-impacted surface waters</style>internal-pdf://3643383036/Grünheid-2006-107.pdfKWB-documents_20191205.enlEndNote10910947<style face="normal" font="default" size="100%">Fate of trace organic pollutants during bank filtration and groundwater recharge</style>internal-pdf://3637009181/Grünheid-2006-109.pdfKWB-documents_20191205.enlEndNote11011047<style face="normal" font="default" size="100%">Clogging processes in a bank filtration system in the littoral zone of Lake Tegel (Germany)</style>internal-pdf://2128649234/Gunkel-2006-110.pdfKWB-documents_20191205.enlEndNote11111117<style face="normal" font="default" size="100%">Field Studies on the Fate and Transport of Pharmaceutical Residues in Bank Filtration</style>
internal-pdf://3922176066/Heberer-2004-111.pdf
KWB-documents_20191205.enlEndNote11211247<style face="normal" font="default" size="100%">Occurrence, transport, attenuation and removal of pharmaceutical residues in the aquatic environment and their relevance for drinking water supply in urban areas</style>internal-pdf://1439538132/Heberer-2005-112.pdfKWB-documents_20191205.enlEndNote11311317<style face="normal" font="default" size="100%">Occurrence, fate, and removal of pharmaceutical residues in the aquatic environment: a review of recent research data</style>
internal-pdf://1915531076/Heberer-2002-113.PDF
KWB-documents_20191205.enlEndNote11411447<style face="normal" font="default" size="100%">Occurrence and Fate of Pharmaceuticals During Bank Filtration</style>internal-pdf://3392450310/Heberer-2003-114.PDFKWB-documents_20191205.enlEndNote11511547<style face="normal" font="default" size="100%">Physicochemical changes in pore water in the sandy littoral zone of Lake Tegel during bank filtration</style>internal-pdf://2427492958/Hoffmann-2006-115.pdfKWB-documents_20191205.enlEndNote11611617<style face="normal" font="default" size="100%">Calculating the effect of natural attenuation during bank filtration</style>
internal-pdf://3455752735/Holzbecher-2006-116.pdf
KWB-documents_20191205.enlEndNote11711717<style face="normal" font="default" size="100%">The impact of variably saturated conditions on hydrogeochemical changes during artificial recharge of groundwater</style>
internal-pdf://3990594449/Greskowiak-2005-117.pdf
KWB-documents_20191205.enlEndNote11811817<style face="normal" font="default" size="100%">Removal of bulk dissolved organic carbon (DOC) and trace organic compounds by bank filtration and artificial recharge</style>
internal-pdf://2430295889/Grünheid-2005-118.pdf
KWB-documents_20191205.enlEndNote11911947<style face="normal" font="default" size="100%">On the construction of flowpath vector fields</style>internal-pdf://0911579601/Holzbecher-2006-119.pdfKWB-documents_20191205.enlEndNote12012047<style face="normal" font="default" size="100%">Simulation of bacteriophage populations during sub-surface passage</style>internal-pdf://1743100806/Holzbecher-2006-120.pdfKWB-documents_20191205.enlEndNote12112147<style face="normal" font="default" size="100%">A coupled transport and reaction model for long column experiments simulating bank filtration</style>internal-pdf://3982859080/Horner-2006-121.pdfKWB-documents_20191205.enlEndNote12212217<style face="normal" font="default" size="100%">lst die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>
internal-pdf://3258473167/Jekel-2007-122.PDF
KWB-documents_20191205.enlEndNote12312347<style face="normal" font="default" size="100%">Bank filtration and groundwater recharge for treatment of polluted surface waters</style>internal-pdf://1529651895/Jekel-2005-123.pdfKWB-documents_20191205.enlEndNote12412447<style face="normal" font="default" size="100%">Ist die Uferfiltration eine effektive Barriere gegen organische Substanzen und Arzneimittelrückstände?</style>internal-pdf://1746836218/Jekel-2006-124.pdfKWB-documents_20191205.enlEndNote12512547<style face="normal" font="default" size="100%">Exploring surface- and groundwater interactions with the help of environmental tracers and wastewater indicators in Berlin/Germany</style>internal-pdf://0340433580/Knappe-2006-125.pdfKWB-documents_20191205.enlEndNote12612647<style face="normal" font="default" size="100%">Statistical description and analysis of a bank filtration system</style>internal-pdf://2940901233/Leipnitz-2006-126.pdfKWB-documents_20191205.enlEndNote12712747<style face="normal" font="default" size="100%">Estimating of the solute transport parameters retardation factor and decay coefficient of pharmaceutical residues using the program visual CXTFIT</style>internal-pdf://2778503321/Licht-2006-127.pdfKWB-documents_20191205.enlEndNote12912917<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration - Investigation of residues of phenazone-type analgesics </style>
internal-pdf://2768525875/Massmann-2007-129.pdf
KWB-documents_20191205.enlEndNote13113117<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of pharmaceutical residues during bank filtration – Investigation of residues of phenazone-type analgesics</style>
internal-pdf://1310415333/Massmann-2008-131.pdf
KWB-documents_20191205.enlEndNote13213247<style face="normal" font="default" size="100%">Investigating surface water - groundwater interactions with the help of sewage indicators in Berlin, Germany</style>internal-pdf://1135191569/Massmann-2004-132.PDFKWB-documents_20191205.enlEndNote13313317<style face="normal" font="default" size="100%">Trinkwassergewinnung in urbanen Räumen - Erkenntnisse zur Uferlfiltration in Berlin</style>
internal-pdf://1076124055/Massmann-2007-133.pdf
KWB-documents_20191205.enlEndNote13413417<style face="normal" font="default" size="100%">Investigation of groundwater residence times during bank filtration in Berlin - a multi-tracer approach</style>
internal-pdf://0881678587/Massmann-2007-134.pdf
KWB-documents_20191205.enlEndNote13513547<style face="normal" font="default" size="100%">Evaluation of the hydrochemical conditions during bank filtration and artificial recharge in Berlin</style>internal-pdf://3960772605/Massmann-2006-135.pdfKWB-documents_20191205.enlEndNote13613647<style face="normal" font="default" size="100%">The impact of alternating redox conditions on groundwater chemistry during artificial recharge in Berlin</style>internal-pdf://3333396555/Massmann-2006-136.pdfKWB-documents_20191205.enlEndNote13713717<style face="normal" font="default" size="100%">The impact of variable temperatures on the redox conditions and the behaviour of pharmaceutical residues during artificial recharge</style>
internal-pdf://4286772912/Massmann-2006-137.pdf
KWB-documents_20191205.enlEndNote13813847<style face="normal" font="default" size="100%">Application of Different Tracers to Evaluate the Flow Regime at Riverbank Filtration Sites in Berlin, Germany</style>internal-pdf://2875043262/Massmann-2003-138.pdfKWB-documents_20191205.enlEndNote13913917<style face="normal" font="default" size="100%">Identification of processes affecting excess airformation during natural bank filtration and managed aquifer recharge</style>
internal-pdf://0856455541/Massmann-2008-139.pdf
KWB-documents_20191205.enlEndNote14014047<style face="normal" font="default" size="100%">Fate and transport of pharmaceutical residues during bank filtration</style>internal-pdf://3146815423/Mechlinski-2006-140.pdfKWB-documents_20191205.enlEndNote14114147<style face="normal" font="default" size="100%">Visual CXTFIT - a user-friendly simulation tool for modelling one-dimensional transport, sorption and degradation processes during bank filtration</style>internal-pdf://2409928483/Nützmann-2006-141.pdfKWB-documents_20191205.enlEndNote14214247<style face="normal" font="default" size="100%">Assessment of bank filtration pumping regimes on flow length and travel times: a case study</style>internal-pdf://0466657663/Wiese-2004-142.pdfKWB-documents_20191205.enlEndNote14314317<style face="normal" font="default" size="100%">Assessing the Effect of Pumping Regimes on Bank Filtration</style>
internal-pdf://1508090847/Wiese-2004-143.pdf
KWB-documents_20191205.enlEndNote14414417<style face="normal" font="default" size="100%">Infiltration of surface water into groundwater under transient pressure gradients</style>
internal-pdf://3101069906/Wiese-2007-144.pdf
KWB-documents_20191205.enlEndNote14514547<style face="normal" font="default" size="100%">Inverse Modelling of Aquitard Structures using Pilot Points and Regularisation</style>internal-pdf://2145882628/Wiese-2007-145.pdfKWB-documents_20191205.enlEndNote14614647<style face="normal" font="default" size="100%">Hydraulic and transport modelling of bank filtration at Lake Tegel (Berlin)</style>internal-pdf://4006581567/Wiese-2006-146.pdfKWB-documents_20191205.enlEndNote14714717<style face="normal" font="default" size="100%">Analysis of endocrine disrupting steroids: Investigation of their release into the environment and their behavior during bank filtration</style>
internal-pdf://0905879872/Zühlke-2004-147.pdf
KWB-documents_20191205.enlEndNote14814817<style face="normal" font="default" size="100%">Assessment of the success of internal and external lake restoration measures in two Berlin lakes</style>KWB-documents_20191205.enlEndNote14914917<style face="normal" font="default" size="100%">Effects of nitrate on phosphorus release: comparison of two Berlin lakes</style>
KWB-documents_20191205.enlEndNote15015017<style face="normal" font="default" size="100%">Strategy and Current Status of Combating Eutrophication in 2 Berlin Lakes for Safeguarding Drinking Water Resources</style>
KWB-documents_20191205.enlEndNote15115147<style face="normal" font="default" size="100%">Erfassung von jodorganischen Röntgenkontrastmitteln</style>KWB-documents_20191205.enlEndNote15215247<style face="normal" font="default" size="100%">Decentralized Collection of Iodinated X-Ray Contrast Media in Hospitals</style>KWB-documents_20191205.enlEndNote15315317<style face="normal" font="default" size="100%">Getrennte Erfassung von jodorganischen Röntgenkontrastmitteln mit mobilen Urinbehältern in zwei Krankenhäusern - Ergebnisse der Testphase</style>
KWB-documents_20191205.enlEndNote15415417<style face="normal" font="default" size="100%">Medikamente verlangen dem Klärwerk Höchstleistungen ab</style>KWB-documents_20191205.enlEndNote16116117<style face="normal" font="default" size="100%">Separate Discharge and Treatment of Urine, Faeces, and Grey Water - A Pilot Project</style>
KWB-documents_20191205.enlEndNote1681686<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area -Occurrence, Causes and Consequences (CYLIN)</style>internal-pdf://2124363951/Wiedner-2007-168.pdfKWB-documents_20191205.enlEndNote16916927<style face="normal" font="default" size="11">An Online-Monitoring and Operating System to Prevent Odour and Corrosion in Sewer Networks - Feasibility Study</style>internal-pdf://1216942791/Barjenbruch-2008-169.pdfKWB-documents_20191205.enlEndNote17017017<style face="normal" font="default" size="100%">11th International Conference on Urban Drainage in Edinburgh ICUD – aktuelle Entwicklungen aus Forschung und Praxis – zwischen Kanalbetrieb und Klimawandel</style>
internal-pdf://2460939281/Hoppe-2008-170.pdf
KWB-documents_20191205.enlEndNote17117132<style face="normal" font="default" size="11">Untersuchungen zur Verbundsteuerung des Berliner Entwässerungssystems</style>internal-pdf://4056922232/Huß-2005-171.pdfKWB-documents_20191205.enlEndNote1721726<style face="normal" font="default" size="11">12 Jahre Pilotbetrieb Karolinenhöhe - Zusammenfassende Auswertung</style>
internal-pdf://0186023541/Liese-2007-172.pdf
KWB-documents_20191205.enlEndNote17317327<style face="normal" font="default" size="100%">Kausale Zusammenhänge zwischen den Signalen einer optischen Multiparametersonde und Biofilmwachstum in wasserführenden Rohrnetzen - Erste Untersuchungen</style>internal-pdf://3521971630/Mittenzwey-2006-173.pdfKWB-documents_20191205.enlEndNote17417427<style face="normal" font="default" size="11">Advanced statistical analyses of well data. </style>internal-pdf://0211990336/Orlikowski-2009-174.pdfKWB-documents_20191205.enlEndNote1751755<style face="normal" font="default" size="100%">Tropische Cyanobakterien in Deutschen Gewässern: Ursachen und Konsequenzen</style>internal-pdf://Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen u-1006585856/Wiedner et al, 2008 - Tropische Cyanobakterien in Deutschen Gewässern - Ursachen und Konsequenzen, 4p.pdfKWB-documents_20191205.enlEndNote17717727<style face="normal" font="default" size="11">SPREE2011, AP 1.2 - Schmutzfrachtsimulation zur Bestimmung der hydraulischen und qualitativen Belastung des Regenbeckens</style>internal-pdf://2464527927/Schroeder-2007-177.pdfKWB-documents_20191205.enlEndNote17817847<style face="normal" font="default" size="11">Dimensioning of a stormwater tank using long-term simulation and assessment of uncertainties</style>internal-pdf://3286333735/Sonnenberg-2009-178.pdfKWB-documents_20191205.enlEndNote17917932<style face="normal" font="default" size="11">Bemessung eines Mischwasserspeichers in der Spree mittels numerischer Langzeitsimulation und Analyse ausgewählter Unsicherheiten</style>internal-pdf://0379696476/Sonnenberg-2008-179.pdfKWB-documents_20191205.enlEndNote18018017<style face="normal" font="default" size="11">Water and phosphorus mass balance of Lake Tegel and Schlachtensee - A modelling approach</style>
internal-pdf://2830546580/Schauser-2009-180.pdf
KWB-documents_20191205.enlEndNote18118127<style face="normal" font="default" size="11">Test und Bewertung von moderner Online-Sensorik zum Kanalnetz- und Gewässermonitoring</style>internal-pdf://3473717446/Barjenbruch-2009-181.pdfKWB-documents_20191205.enlEndNote18218227<style face="normal" font="default" size="11">Spurenstoffe in Mischwassereinleitungen</style>internal-pdf://3887314658/Plume-2008-182.pdfKWB-documents_20191205.enlEndNote18318347<style face="normal" font="default" size="11">Impact assessment of combined sewer overflows on the River Spree in Berlin, Germany</style>internal-pdf://3121640707/Matzinger-2009-183.pdfKWB-documents_20191205.enlEndNote18418447<style face="normal" font="default" size="11">Development of a monitoring concept for combined sewer overflows - testing of modern online-sensors</style>internal-pdf://0724661288/Rettig-2009-184.pdfKWB-documents_20191205.enlEndNote18518527<style face="normal" font="default" size="11">State of the art of (1) The distinction of well ageing types and their extension; (2.1) Monitoring and diagnosis; (2.2) Maintenance; (3.1) Well design and construction and (3.2) Operation</style>internal-pdf://1951118825/Schwarzmüller-2009-185.pdfKWB-documents_20191205.enlEndNote18618627<style face="normal" font="default" size="11">Identification of sources, pathways into a well and prevention from the risk of having pathogens entering abstraction wells</style>internal-pdf://1000911518/Graeber-2009-186.pdfKWB-documents_20191205.enlEndNote18718727<style face="normal" font="default" size="100%">Comparison of direct and indirect diagnosis tools and methods to determine and distinguish clogging</style>internal-pdf://2389915074/Schwarzmüller-2009-187.pdfKWB-documents_20191205.enlEndNote18818847<style face="normal" font="default" size="100%">Brunnenmanagement – ein Forschungsvorhaben zur Optimierung des Betriebs von Brunnenanlagen</style>internal-pdf://0592869250/Wittstock-2009-188.pdfKWB-documents_20191205.enlEndNote18918947<style face="normal" font="default" size="100%">Optimierung von Brunnenbetrieb und –instandhaltung ein interdisziplinäres Forschungsprojekt in Berlin</style>internal-pdf://2837509371/Wiacek-2008-189.pdfKWB-documents_20191205.enlEndNote19119147<style face="normal" font="default" size="11">Mitigation of contaminants in rural and semi-rural environments to protect surface water for drinking water supply - the Aquisafe-project</style>internal-pdf://3798447156/Strube-2007-191.pdfKWB-documents_20191205.enlEndNote19219232<style face="normal" font="default" size="11">Analyse de la nature, de l’occurrence et des risques de contamination d’eau de surface par des pollutions diffuses en milieu rural et semi-rural en Europe</style>internal-pdf://4062164956/Morel-Fatio-2007-192.pdfKWB-documents_20191205.enlEndNote19319347<style face="normal" font="default" size="11">Analysis of source water contamination in rural and semi-rural areas in Europe and United States</style>internal-pdf://0880785310/Morel-Fatio-2008-193.pdfKWB-documents_20191205.enlEndNote19419447<style face="normal" font="default" size="11">Assessing the effectiveness of a constructed wetland for water quality mitigation in Brittany (France) - A case study within the Aquisafe project</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://2368778614/Matzinger-2008-194.pdfKWB-documents_20191205.enlEndNote19519547<style face="normal" font="default" size="11">Diffuse pollution and potential mitigation strategies - two case studies within the Aquisafe Project from agriculturally dominated Brittany (France)</style>internal-pdf://4081758504/Matzinger-2008-195.pdfKWB-documents_20191205.enlEndNote19619617<style face="normal" font="default" size="11">Naturnahe Puffer gegen diffuse Verschmutzung</style>
internal-pdf://2668869690/Matzinger-2009-196.pdf
KWB-documents_20191205.enlEndNote19719727<style face="normal" font="default" size="11">Diffuse trace contaminants with relevance for drinking water production in rural and semi-rural areas</style>internal-pdf://3578049432/Tedesco-2009-197.pdfKWB-documents_20191205.enlEndNote19819827<style face="normal" font="default" size="11">Selection of a watershed model used to predict the effects of management decisions on water quality based on multi-criteria comparison</style>internal-pdf://4093095998/Strube-2009-198.pdfKWB-documents_20191205.enlEndNote19919927<style face="normal" font="default" size="11">Methods for the assessment of diffuse nutrient pollution in rural catchments</style>internal-pdf://0931377916/Bugey-2009-199.pdfKWB-documents_20191205.enlEndNote20020027<style face="normal" font="default" size="11">Hydrological and nitrate modelling for the River Ic in Brittany (France) - Simulation results and pre-liminary scenario analysis</style>internal-pdf://1555804674/Julich-2009-200.pdfKWB-documents_20191205.enlEndNote20120127<style face="normal" font="default" size="11">Effects of vegetation and glyphosate on denitrification in constructed wetlands - Feasibility test of technical scale simulation</style>internal-pdf://0669233744/Jacinthe-2009-201.pdfKWB-documents_20191205.enlEndNote20320327<style face="normal" font="default" size="11">The utility of agricultural constructed wetlands</style>internal-pdf://3120738444/Stouder-2009-203.pdfKWB-documents_20191205.enlEndNote20420427<style face="normal" font="default" size="11">Retention of agricultural diffuse pollution through constructed wetlands - A case study in Iffendic (France)</style>internal-pdf://2487333300/Mangeot-2009-204.pdfKWB-documents_20191205.enlEndNote20520547<style face="normal" font="default" size="11">Management scenarios for reduced nitrate loads in a small catchment in Brittany (France) - the problem of data scarcity and the resulting predictive uncertainty</style><style face="normal" font="Times New Roman" size="11">.</style>internal-pdf://0986019153/Julich-2009-205.pdfKWB-documents_20191205.enlEndNote20620647<style face="normal" font="default" size="11">Projekt SPREE2011 - Entwicklung von Off-Shore Speicherräumen mit integrierter Klärtechnik zur Vermeidung von Mischwassereinleitungen in Gewässer</style>internal-pdf://0131432209/Gantner-2008-206.pdfKWB-documents_20191205.enlEndNote20720732<style face="normal" font="default" size="11">Sensitivity Analysis Using SimLab: Application for the German Standard ATV-A 128</style>internal-pdf://2795615050/Brun-2009-207.pdfKWB-documents_20191205.enlEndNote20820847<style face="normal" font="default" size="11">Pharmaceutical residues in the urban water cycle - An overview of the state of the art</style>internal-pdf://3311432573/Schroeder-2009-208.pdfKWB-documents_20191205.enlEndNote20920947<style face="normal" font="default" size="11">Integriertes Misch- und Regenwassermanagement</style>internal-pdf://2448470234/Schroeder-2008-209.pdfKWB-documents_20191205.enlEndNote21021047<style face="normal" font="default" size="11">Simplification of dynamic flow routing models using hybrid modelling approaches - two case studies</style>internal-pdf://1915333501/Rouault-2008-210.pdfinternal-pdf://0144354236/Rouault-2008-2102.pdfKWB-documents_20191205.enlEndNote21121147<style face="normal" font="default" size="100%">Bewertung von Strategien der Abflusssteuerung mittels Kanalnetzsimulation</style>internal-pdf://2268066614/Schroeder-2004-211.pdfKWB-documents_20191205.enlEndNote21221247<style face="normal" font="default" size="11">Integrale Bewirtschaftung von Entwässerungssystemen</style>internal-pdf://0150514479/Schroeder-2007-212.pdfKWB-documents_20191205.enlEndNote21321347<style face="normal" font="default" size="11">The HSG Guideline Document for Modelling Integrated Urban Wastewater Systems</style>internal-pdf://2250739823/Muschalla-2008-213.pdfKWB-documents_20191205.enlEndNote21421447<style face="normal" font="default" size="11">Integrated modelling of the impact from Combined Sewer Overflows on the water quality of slow-flowing lowland rivers</style>internal-pdf://0207065121/Pawlowsky-Reusing-2008-214.pdfKWB-documents_20191205.enlEndNote21521547<style face="normal" font="default" size="11">A water quality based method for the assessment of CSO impact on receiving waters in Berlin</style>internal-pdf://3220148959/Schroeder-2008-215.pdfKWB-documents_20191205.enlEndNote21621632<style face="normal" font="default" size="11">Räumlich differenzierte Modellierung des Stofftransportes im Niederschlagsabfluss von urbanen Flächen am Beispiel des Einzugsgebietes Ruschegraben, Berlin</style>internal-pdf://2523697575/Helling-2008-216.pdfKWB-documents_20191205.enlEndNote21721732<style face="normal" font="default" size="11">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://0555585475/Riechel-2009-217.pdfKWB-documents_20191205.enlEndNote21821827<style face="normal" font="default" size="11">Immissionsrichtlinien für Mischwassereinleitungen</style>internal-pdf://1905955005/Matzinger-2008-218.pdfKWB-documents_20191205.enlEndNote21921927<style face="normal" font="default" size="11">River water quality modelling: Status quo</style>internal-pdf://0446533899/Matzinger-2009-219.pdfKWB-documents_20191205.enlEndNote22022027<style face="normal" font="default" size="11">Erläuterungsbericht zur weiteren Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung von Mischwasserentlastungen im September 2005</style>internal-pdf://3361378009/Schumacher-2009-220.pdfKWB-documents_20191205.enlEndNote22122127<style face="normal" font="default" size="11">Instationäre, hydronumerische 1D-Berechnung von Wasserstand und Durchfluss in der Stauhaltung Charlottenburg (Spree und Kanäle) für die Abflussjahre 2002 bis 2007</style>internal-pdf://3093729063/Schumacher-2008-221.pdfKWB-documents_20191205.enlEndNote22222227<style face="normal" font="default" size="11">Literature Review on the Open Modelling Interface and Environment (OpenMI)</style>internal-pdf://0440241803/Sonnenberg-2008-222.pdfKWB-documents_20191205.enlEndNote22322327<style face="normal" font="default" size="11">Möglichkeiten und Grenzen der Revitalisierung der Stadtspree als Lebensraum für die Fischfauna</style>internal-pdf://3374158169/Leszinski-2009-223.pdfKWB-documents_20191205.enlEndNote22422427<style face="normal" font="default" size="11">WSSTP - Urban Pilot Theme 1: Project proposals and Demonstration Sites. Managing rain events and flooding in urban areas</style>internal-pdf://2201572613/Lynggaard-Jensen-2008-224.pdfKWB-documents_20191205.enlEndNote22522527<style face="normal" font="default" size="11">International practices and standards of Rainwater Harvesting in urban and peri-urban environment and current R&D projects</style>internal-pdf://4058404350/Jaulhac-2008-225.pdfKWB-documents_20191205.enlEndNote22622647<style face="normal" font="default" size="11">Onlinemesstechnik im Labor- und Praxistest</style>internal-pdf://2401471624/Barjenbruch-2009-226.pdfKWB-documents_20191205.enlEndNote22722747<style face="normal" font="default" size="11">Labor- und Praxistest von Onlinemesstechnik</style>KWB-documents_20191205.enlEndNote22822847<style face="normal" font="default" size="11">Vergleich von Online-Sensoren</style>internal-pdf://4152134886/Barjenbruch-2008-228.pdfKWB-documents_20191205.enlEndNote22922927<style face="normal" font="default" size="11">Umsetzung eines Entscheidungshilfesystems zur Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3231353587/Schroeder-2008-229.pdfKWB-documents_20191205.enlEndNote23023027<style face="normal" font="default" size="11">Analyse der zeitlich hochaufgelösten Niederschlagsdaten 2002 in Berlin</style>internal-pdf://1649118266/Reimer-2008-230.pdfKWB-documents_20191205.enlEndNote23123127<style face="normal" font="default" size="11">Bewertung des Potenzials von Online-Niederschlagsmessung und Niederschlagsvorhersage aus Radardaten bezüglich der Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://3562245022/Rouault-2008-231.pdfKWB-documents_20191205.enlEndNote23223227<style face="normal" font="default" size="11">Entwicklung eines Optimierungsmodells für die Abwasserverteilung in Berlin und Implementierung im algebraischen Modellierungssystem GAMS</style>internal-pdf://3891629614/Steinbach-2008-232.pdfKWB-documents_20191205.enlEndNote23323327<style face="normal" font="default" size="11">Ermittlung prozessbestimmender / -begrenzender Parameter bei MW-Zufluss auf Kläranlagen. Prüfung der Übertragbarkeit auf die Kläranlagen Berlins</style>internal-pdf://2595261920/Barjenbruch-2008-233.pdfKWB-documents_20191205.enlEndNote23423432<style face="normal" font="default" size="11">Modellbasierte Untersuchung zur Wirksamkeit einer Verbundsteuerung von Abwasserpumpwerken</style>internal-pdf://2639890921/Behrends-2008-234.pdfKWB-documents_20191205.enlEndNote23523517<style face="normal" font="default" size="11">Consideration of online rainfall measurement and nowcasting for RTC of the combined sewage system</style>
internal-pdf://Rouault et al_2007_Consideration of online rainfall measurement and now-1721221121/Rouault et al_2007_Consideration of online rainfall measurement and now casting for RTC of the combined sewage system_8p.pdfinternal-pdf://4225014070/Rouault-2008-235.pdf
KWB-documents_20191205.enlEndNote23623647<style face="normal" font="default" size="11">Analyse von Niederschlagsextremen zur Verbesserung der Steuerung der Abwasserförderung in Berlin</style>KWB-documents_20191205.enlEndNote23723747<style face="normal" font="default" size="11">Räumlich und zeitlich hochaufgelöste Niederschlagsanalyse in Berlin als Randbedingung für die Abwasserförderung</style>KWB-documents_20191205.enlEndNote23823847<style face="normal" font="default" size="11">State of Implementation of RTC in Berlin, Germany</style>internal-pdf://3317729629/Pawlowsky-Reusing-2007-238.pdfKWB-documents_20191205.enlEndNote23923947<style face="normal" font="default" size="11">International Review of Rainwater Harvesting Management: Practices, Market and Current Developments</style>internal-pdf://3889190242/Lesjean-2009-239.pdfKWB-documents_20191205.enlEndNote24024017<style face="normal" font="default" size="100%">Vierter Weltwasserkongress der IWA - Ein Forum für Erfahrungsaustausch, neue Ideen und Know-how</style>
internal-pdf://3763794898/Hoppe-2005-240.pdf
KWB-documents_20191205.enlEndNote24124147<style face="normal" font="default" size="11">Erfahrungen mit neuronalen Netzen für Simulationen des Kanalnetzes</style>KWB-documents_20191205.enlEndNote24224247<style face="normal" font="default" size="11">Pegelbasierte Förderstromregelung - eine Möglichkeit zur gezielten Bewirtschaftung des Kanals</style>KWB-documents_20191205.enlEndNote24324347<style face="normal" font="default" size="11">Research on iron-related biofilms in Berlin water wells</style>internal-pdf://3560999121/Thronicker-2008-243.pdfKWB-documents_20191205.enlEndNote24424447<style face="normal" font="default" size="11">Poster: Community comparison of clogging-related bacteria in Berlin water wells</style>internal-pdf://3562306081/Knobel-2009-244.pdfKWB-documents_20191205.enlEndNote24524547<style face="normal" font="default" size="11">Bacterial Population comparison of Berlin Water Wells</style>internal-pdf://0177571986/Thronicker-2008-245.pdfKWB-documents_20191205.enlEndNote24624647<style face="normal" font="default" size="11">Integrated Sewer Management</style>internal-pdf://1908245598/Schroeder-2007-246.pdfKWB-documents_20191205.enlEndNote24724727<style face="normal" font="default" size="11">Auswirkungen urbaner Nutzungen auf den Stoffhaushalt und die Biozönosen von Tieflandflüssen unter besonderer Berücksichtigung der Mischwasserentlastung</style>internal-pdf://3948381637/Leszinski-2006-247.pdfKWB-documents_20191205.enlEndNote24824827<style face="normal" font="default" size="11">Immissionsorientierte Bewertung von Mischwasserentlastungen in Tieflandflüssen</style>internal-pdf://1558086906/Leszinski-2007-248.pdfKWB-documents_20191205.enlEndNote24924927<style face="normal" font="default" size="11">Gewässergütesimulation der Stauhaltung Charlottenburg (Spree und Kanäle) unter Berücksichtigung der Mischwasserentlastungen am Beispiel eines Starkregenereignisses im September 2005</style>internal-pdf://3050669056/Schumacher-2007-249.pdfKWB-documents_20191205.enlEndNote25025032<style face="normal" font="default" size="11">Untersuchungen zur integrierten Modellierung von Freispiegel- und Druckabfluss im Berliner Abwassersystem</style>internal-pdf://1735951251/Sonnenberg-2006-250.pdfKWB-documents_20191205.enlEndNote25125132<style face="normal" font="default" size="11">Modélisation du transport de matières en suspension dans le réseau d’assainissement de Berlin</style>internal-pdf://4204889728/Lemaire-2003-251.pdfKWB-documents_20191205.enlEndNote25225232<style face="normal" font="default" size="11">Modelisation des Sous-Bassins Versants Berlin V et XII, Tests de Scenarios d’Amelioration</style>internal-pdf://1505789817/Daspres-2004-252.pdfKWB-documents_20191205.enlEndNote25325332<style face="normal" font="default" size="11">Modelisation d’un Reseau d’Assainissement, Berlin VIII</style>internal-pdf://2568849102/Laborde-2003-253.pdfKWB-documents_20191205.enlEndNote25425432<style face="normal" font="default" size="11">Modélisation et campagne de mesures sur le bassin-versant Berlin VII</style>internal-pdf://0192119621/Souchon-2001-254.pdfKWB-documents_20191205.enlEndNote2552556<style face="bold" font="default" size="10">Perspectives of Lake Modelling towards Predicting Reaction to Throphic Change</style>internal-pdf://3771237548/Schauser-2005-255.pdfKWB-documents_20191205.enlEndNote25625632<style face="normal" font="default" size="100%">Kohlenstoffmassenbilanz in der anaeroben Zone zur Überprüfung der Speicherstoffdynamik im ENREM-Prozess</style>internal-pdf://3512566488/Baumer-2006-256.pdfKWB-documents_20191205.enlEndNote25725747<style face="normal" font="default" size="100%">Influence of sludge loadings and types of substrates on nutrients removal in MBRs</style>internal-pdf://Bracklow_Toulouse-0727839233/Bracklow_Toulouse.docKWB-documents_20191205.enlEndNote25825817<style face="normal" font="default" size="100%">Comparison of nutrient degradation in small scale membrane bioreactors fed with synthetic/domestic wastewater</style>
internal-pdf://3375071897/Bracklow-2007-258.pdf
KWB-documents_20191205.enlEndNote25925947<style face="normal" font="default" size="100%">Filtration characterisation methods in MBR systems: a practical comparison</style>internal-pdf://0914321770/de la Torre-2008-2592.pdfinternal-pdf://3298521513/de la Torre-2008-259.pdfKWB-documents_20191205.enlEndNote26026017<style face="normal" font="default" size="100%">Impact of ambient conditions on SMP elimination and rejection in MBR</style>
internal-pdf://1192264267/Drews-2007-260.pdf
KWB-documents_20191205.enlEndNote26126147<style face="normal" font="default" size="100%">Does fouling in MBR depend on SMP? </style>internal-pdf://0706988939/Drews-2007-261.pdfKWB-documents_20191205.enlEndNote26226217<style face="normal" font="default" size="100%">Fouling in Membranbelebungsreaktoren: Erfahrungen beim Betrieb mit diskontinuierlichem Schlammabzug</style>
internal-pdf://2543354365/Drews-2005-262.pdf
KWB-documents_20191205.enlEndNote26426427<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor ENREM: Planning, construction and operation from January 2004 to June 2007</style>internal-pdf://3808919968/Gnirß-2007-264.pdfKWB-documents_20191205.enlEndNote26526547<style face="normal" font="default" size="100%">Design criteria for semi-central sanitation with low pressure network and membrane bioreactor – the ENREM project</style>internal-pdf://1676575058/Gnirß-2007-265.pdfKWB-documents_20191205.enlEndNote26626647<style face="normal" font="default" size="100%">Membrane Technique in a Freight Container for Advanced Nutrients Removal - The ENREM Demonstration Project</style>internal-pdf://1935247147/Gnirß-2008-266.pdfKWB-documents_20191205.enlEndNote26826847<style face="normal" font="default" size="100%">Evidences of unknown anaerobically cell intern stored carbon source used for enhanced post-denitrification</style>internal-pdf://1448771267/Lesjean-2008-268.pdfKWB-documents_20191205.enlEndNote26926932<style face="normal" font="default" size="100%">Nutzung zellinterner Speicherstoffe als Kohlenstoffquelle bei der nachgeschalteten Denitrifikation ohne Zugabe einer externen Kohlenstoffquelle</style>internal-pdf://2949152201/Nicke-2005-269.pdfKWB-documents_20191205.enlEndNote27127132<style face="normal" font="default" size="100%">Auslegung und Optimierung eines Speichertanks für eine Membranbelebungsanlage</style>internal-pdf://2104393567/Villwock-2005-271.pdfKWB-documents_20191205.enlEndNote27227232<style face="normal" font="default" size="100%">Extensive Biological Nutrients Removal in Membrane Bioreactors</style>internal-pdf://2925492348/Vocks-2008-272.pdfKWB-documents_20191205.enlEndNote27427447<style face="normal" font="default" size="100%">Impact of two different excess sludge removal strategies on the performance of a membrane bioreactor system</style>internal-pdf://0451463934/Vocks-2007-274.pdfKWB-documents_20191205.enlEndNote27527527<style face="normal" font="default" size="11">Applicability of OpenMI and API for coupling models within MIA-CSO</style>internal-pdf://3994582957/Sonnenberg-2009-275.pdfKWB-documents_20191205.enlEndNote27627627<style face="normal" font="default" size="11">Monitoring von Wassergüteparametern an Mischwasserüberläufen</style>internal-pdf://4277567498/Rouault-2009-276.pdfKWB-documents_20191205.enlEndNote27727727<style face="normal" font="default" size="100%">Sanitärkonzepte zur seperaten Behandlung von Urin, Fäkalien und Grauwasser (SCST) - Layman Report</style>internal-pdf://3322773764/Peter-Fröhlich-2007-277.pdfKWB-documents_20191205.enlEndNote27827827<style face="normal" font="default" size="100%">Sanitation Concepts for Separate Treatment of Urine, faeces and Greywater (SCST) - Results</style>internal-pdf://3731849382/Peter-Fröhlich-2007-278.pdfKWB-documents_20191205.enlEndNote27927927<style face="normal" font="default" size="100%">Resource recovery and removal of pharmaceutical residues Treatment of separate collected urine</style>internal-pdf://1832391570/Tettenbron-2007-279.pdfKWB-documents_20191205.enlEndNote28028027<style face="normal" font="default" size="100%">Final cost calculation for the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST)</style>internal-pdf://2897174977/Oldenburg-2007-280.pdfKWB-documents_20191205.enlEndNote28128127<style face="normal" font="default" size="100%">Ecological assessment of alternative sanitation concepts with Life Cycle Assessment</style>internal-pdf://1761770610/Remy-2006-281.pdfKWB-documents_20191205.enlEndNote28228227<style face="normal" font="default" size="100%">Final report for task 8 of the demonstration project "Sanitation Concepts for Separate Treatment of Urine, Faeces and Greywater" (SCST) , Fertilizer Usage</style>internal-pdf://1280146983/Muskolus-2007-282.pdfKWB-documents_20191205.enlEndNote28328327<style face="normal" font="default" size="100%">Beteiligung der Öffentlichkeit im Koordinierungsraum Havel</style>internal-pdf://3482089923/Kranz-2004-283.pdfKWB-documents_20191205.enlEndNote28428447<style face="normal" font="default" size="11">The Berlin Force Main Model - Application of InfoWorks 9.5 CS® for the evaluation of a large force main network and the pollution load to a WWTP</style>internal-pdf://2838461663/Pawlowsky-Reusing-2009-284.pdfinternal-pdf://1701936413/Pawlowsky-Reusing-2009-2841.pdfKWB-documents_20191205.enlEndNote28528547<style face="normal" font="default" size="11">Integrated Sewage Management - Setup of an integrated strategy for the control of the Berlin sewage system</style>internal-pdf://0878804004/Schroeder-2002-285.pdfKWB-documents_20191205.enlEndNote28628627<style face="normal" font="default" size="11">NASRI Natural and Artificial Systems for Recharge and Infiltration Period 2001-2002</style>internal-pdf://1756172843/Fritz-2002-286.pdfKWB-documents_20191205.enlEndNote28728727<style face="normal" font="default" size="11">IDB International Development of Bank Filtration -Case study India</style>internal-pdf://2445900695/Fritz-2006-287.pdfKWB-documents_20191205.enlEndNote28828827<style face="normal" font="default" size="11">NASRI - Natural Systems for Recharge and Infiltration - Final Report</style>internal-pdf://0767916717/Fritz-2006-288.pdfKWB-documents_20191205.enlEndNote28928917<style face="normal" font="default" size="11">Sources of oxygen flux in groundwater during induced bank filtration at a site in Berlin, Germany</style>
internal-pdf://2116377217/Kohfahl-2009-289.pdf
KWB-documents_20191205.enlEndNote29129127<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii und Cylindrospermopsin in Gewässern der Berliner Region Vorkommen, Ursachen, Auswirkungen</style>internal-pdf://1485731886/Wiedner-2005-291.pdfKWB-documents_20191205.enlEndNote29229227<style face="normal" font="default" size="11">Cylindrospermopsis raciborskii and Cylindrospermopsin in Lakes of the Berlin Area: Occurrence, Causes and Consequences</style>internal-pdf://0977867557/Wiedner-2007-292.pdfKWB-documents_20191205.enlEndNote29329332<style face="normal" font="default" size="11">Spatially and temporally scaled inverse hydraulic modelling, multi tracer transport modelling and interaction with geochemical processes at a highly transient bank filtration site</style>internal-pdf://1654028225/Wiese-2006-293.pdfKWB-documents_20191205.enlEndNote29529510<style face="normal" font="default" size="11">Function and relevance of aquifer recharge techniques to enable sustainable water resources management in developing and newly-industrialized countries</style>internal-pdf://0193885833/Grützmacher-2009-295.pdfKWB-documents_20191205.enlEndNote29629647<style face="normal" font="default" size="11">Drinking Water Supply in Berlin - a Module within the Urban Water Cycle</style>internal-pdf://2192013919/Grützmacher-2009-296.pdfKWB-documents_20191205.enlEndNote29729717<style face="normal" font="default" size="100%">Optimierung des Brunnenbetriebs und Instandhaltung: Zwischenergebnisse des interdisziplinären Forschungsprojektes WellMa am Kompetenzzentrum Wasser Berlin</style>
internal-pdf://3958436506/Schwarzmüller-2009-297.pdf
KWB-documents_20191205.enlEndNote29829847<style face="normal" font="default" size="11">Investigations on enhanced denitrification capacities of the ENREM process scheme using a synthetic monosubstrate</style>internal-pdf://Johan Stüber - DMS - Krakau - Paper-1538346752/Johan Stüber - DMS - Krakau - Paper.docinternal-pdf://2964419312/Stüber-2009-298.pdfKWB-documents_20191205.enlEndNote30030047<style face="normal" font="default" size="11">Occurrence of cylindrospermopsin, anatoxin-a and saxitoxins in France and implications for drinking water prodution</style>internal-pdf://0991654188/Grützmacher-2009-300.pdfKWB-documents_20191205.enlEndNote30130147<style face="normal" font="default" size="100%">Technical Conference Report</style>internal-pdf://0526905870/Sonnenberg-2009-301.pdfKWB-documents_20191205.enlEndNote30230232<style face="normal" font="default" size="100%">Adaption eines neuartigen MBR-Prozesses auf Monosubstrat zur Untersuchung des mikrobiologischen Stoffwechsels mittels in-vivo C-MNR</style>internal-pdf://3041097431/Bost-2009-302.pdfinternal-pdf://3093919509/Bost-2009-3022.pdfKWB-documents_20191205.enlEndNote30330332<style face="normal" font="default" size="100%">Wirtschaftliche Betrachtung semizentraler MBR-Anlagen in Abhängigkeit von den Reinigungszielen.</style>internal-pdf://2189104159/Schallehn-2009-303.pdfinternal-pdf://3841135709/Schallehn-2009-3032.pdfKWB-documents_20191205.enlEndNote30430417<style face="normal" font="default" size="100%">Filtration charaterization methods in MBR systems: A practical comparison</style>
internal-pdf://1077137000/de la Torre-2009-304.pdf
KWB-documents_20191205.enlEndNote30530517<style face="normal" font="default" size="100%">Operation of MBR memebrane modules used in a decentralised wastewater treatment plant: Filed study and comparison of different cleaning strategies</style>
internal-pdf://0660130761/Stüber-2009-305.pdf
KWB-documents_20191205.enlEndNote30630647<style face="normal" font="default" size="100%">Operation of MBR membrane modules used in a decentralised wastewater treatment plant: Field study and comparison of different cleaning strategies</style>internal-pdf://1779333337/Stüber-2008-306.pdfKWB-documents_20191205.enlEndNote30830810<style face="normal" font="default" size="100%">Challenges and opportunities of Managed Aquifer Recharge</style>internal-pdf://0693072094/Grützmacher-2008-308.pdfKWB-documents_20191205.enlEndNote30930927<style face="normal" font="default" size="100%">Auswirkungen von Mischwassereinleitungen auf die Berliner Stadtspree</style>internal-pdf://3204281291/Riechel-2009-309.pdfKWB-documents_20191205.enlEndNote31031017<style face="normal" font="default" size="100%">Naturnahe Pufferzonen als Gewässerschutzmodelle</style>
internal-pdf://1593122161/Matzinger-2009-310.pdf
KWB-documents_20191205.enlEndNote31131147<style face="normal" font="default" size="100%">The Potential of River Bank Filtration for Reducing Chemical Pollutants and Pathogens from River Water ion Megacities: The New Delhi Experience</style>internal-pdf://1705014078/Sprenger-2009-311.pdfKWB-documents_20191205.enlEndNote31231217<style face="normal" font="default" size="11">The HSG procedure for modelling integrated urban wastewater systems</style>
internal-pdf://2832168054/Muschalla-2009-312.pdf
KWB-documents_20191205.enlEndNote3133136<style face="normal" font="default" size="100%">Climate Change and Water - Technical Paper of the Intergovernmental Panel on Climate Change</style>internal-pdf://0789762170/Bates-2008-313.pdfKWB-documents_20191205.enlEndNote31431417<style face="normal" font="default" size="100%">Microcystin Elimination during Sediment Contact.</style>
internal-pdf://3566063005/Grützmacher-2010-314.pdfinternal-pdf://1261686236/Grützmacher-2010-3142.pdf
KWB-documents_20191205.enlEndNote31531517<style face="normal" font="default" size="10">Possibilities of sewer model simplifications</style>
internal-pdf://1969671722/Fischer-2009-315.pdf
KWB-documents_20191205.enlEndNote31631617<style face="normal" font="Courier New" size="10">Research Project Aquisafe: Mitigation of contaminants in rural and semi-rural environments to protect surface source water.</style>
internal-pdf://2774627524/Morel-Fatio-2008-316.pdf
KWB-documents_20191205.enlEndNote32032017<style face="normal" font="default" size="100%">Forschungsprojekt ENREM Kleinkläranlagen mit Membrantechnik</style>
internal-pdf://2395272505/Stüber-2009-320.pdf
KWB-documents_20191205.enlEndNote32132147<style face="normal" font="default" size="100%">Organic Trace Substances Relevant for Drinking Water. Assessing their Elimination through Bank Filtration – Phase 1</style>internal-pdf://2551637891/Grützmacher-2008-321.pdfKWB-documents_20191205.enlEndNote32232227<style face="normal" font="default" size="100%">Enhanced Nutrients Removal in Membrane Bioreactor</style>internal-pdf://0236221075/Stüber-2010-322.pdfKWB-documents_20191205.enlEndNote32332332<style face="normal" font="default" size="11">Determination of the clogging potential of drinking water wells in Berlin by an outlier analysis of well management data</style>internal-pdf://0044265522/Köpp-2009-323.pdfKWB-documents_20191205.enlEndNote32432432<style face="normal" font="default" size="11">Anwendungsgrenzen automatisierter Datenanalyse zur quantitativen Diagnose von Brunnenalterungsprozessen aus der zeitlichen Änderung der Brunnenergiebigkeit auf Basis kontinuierlicher Messungen von Betriebsparametern am Beispiel der Brunnengalerie Tegel-Hohenzollernkanal der Berliner Wasserbetriebe</style>internal-pdf://3310186281/Martin-2009-324.pdfKWB-documents_20191205.enlEndNote32532517<style face="normal" font="default" size="11">Untersuchungen zur Reduzierung biochemischer Brunnenalterung</style>
internal-pdf://2066247403/Schwarzmüller-2009-325.pdf
KWB-documents_20191205.enlEndNote32732747<style face="normal" font="default" size="100%">Pilot scale ozonation of treated municipal effluent for removal of pharmaceutical compopunds and pathogens</style>internal-pdf://4009194053/Bahr-2005-327.pdfKWB-documents_20191205.enlEndNote32832847<style face="normal" font="default" size="100%">UVA as control parameter for the effective ozonation of organic poolutants in secondary effluent</style>internal-pdf://2894623223/Bahr-2006-328.pdfKWB-documents_20191205.enlEndNote32932947<style face="normal" font="default" size="100%">Facility for the Simulation of Riverbank Filtration and Slow Sand Filtration - Examples of Virus Elimination in the Subsurface under near-natural Conditions</style>internal-pdf://2933026383/Dizer-2010-329.pdfKWB-documents_20191205.enlEndNote3303306<style face="normal" font="default" size="100%">Membrane technologies for wastewater treatment and reuse : 4 - 5 June 2007, Berlin (Germany), 2nd IWA National Young Water Professionals Conference ; conference proceedings</style>internal-pdf://2522337168/Lesjean-2007-330.pdfinternal-pdf://3111702479/Lesjean-2007-3302.pdfKWB-documents_20191205.enlEndNote33333327<style face="normal" font="default" size="100%">DOC and Trace Organic removal via ozonation & underground passage - expected benefit and limitations</style>internal-pdf://3460722021/Miehe-2010-333.pdfKWB-documents_20191205.enlEndNote33433427<style face="normal" font="default" size="100%">Project AMEDEUS Accelerate Membrane Development for Urban Sewage Purification - Final Activity Report</style>internal-pdf://3321524103/Lesjean-2010-334.pdfKWB-documents_20191205.enlEndNote33533527<style face="normal" font="default" size="100%">Properties of Atrazine and Bentazone</style>internal-pdf://0134574052/Krause-2010-335.pdfKWB-documents_20191205.enlEndNote33633617<style face="normal" font="default" size="100%">Retention and Degradation of the cyanobacterial Toxin Cylindrospermopsin in Sediments - The Role of Sediment preconditioning and DOM composition</style>
internal-pdf://2726850704/Klitzke-2010-336.pdf
KWB-documents_20191205.enlEndNote33833847<style face="normal" font="default" size="100%">Condition-dependent removal of 38 organic constituents during bank filtration</style>internal-pdf://0675375954/Wiese-2010-338.pdfKWB-documents_20191205.enlEndNote33933947<style face="normal" font="default" size="100%">Operation of a 5 m</style><style face="superscript" font="default" size="100%">3</style><style face="normal" font="default" size="100%">/d Gravity-driven Ultrafiltration Unit for Decentralised Water Supply</style>internal-pdf://4029443741/Boulestreau-2010-339.pdfKWB-documents_20191205.enlEndNote34034017<style face="normal" font="default" size="100%">Assessment of the potential for bank filtration in a water-stressed megacity (Delhi, India)</style>internal-pdf://2871090588/Lorenzen-2010-340.pdfKWB-documents_20191205.enlEndNote34134147<style face="normal" font="default" size="11">Einfluss der Schalthäufigkeit auf die Brunnenalterung</style>internal-pdf://1075573324/Schwarzmüller-2009-341.pdfKWB-documents_20191205.enlEndNote34234247<style face="normal" font="default" size="100%">Wie angewandte Forschung hilft, die Brunnenalterung zu verlangsamen</style>internal-pdf://1281518574/Schwarzmüller-2010-342.pdfKWB-documents_20191205.enlEndNote34334347<style face="normal" font="default" size="100%">Online monitoring for evaluation of CSO impact on surface water (presented by Hauke Sonnenberg)</style>internal-pdf://2588210052/Rouault-2010-343.pdfKWB-documents_20191205.enlEndNote34434447<style face="normal" font="default" size="100%">Development of a planning instrument for CSO management - Cooperation of research, water utility and public water authority in the city of Berlin (presented by Kai Schroeder)</style>internal-pdf://3208930525/Schroeder-2010-344.pdfKWB-documents_20191205.enlEndNote34534547<style face="normal" font="default" size="100%">Application of stormwater impact assessment guidelines for urban lowland rivers – the challenge of distinction between background pollution and impacts of combined sewer overflows (CSO) (presented by Andreas Matzinger, participation of Pascale Rouault and Nicolas Caradot)</style>internal-pdf://2372101481/Riechel-2010-345.pdfKWB-documents_20191205.enlEndNote34734727<style face="normal" font="default" size="100%">Ergebnisse der bundesweiten DVGW-Umfrage zur Instandhaltung von Brunnen 2009</style>internal-pdf://1281191191/Orlikowski-2010-347.pdfKWB-documents_20191205.enlEndNote34834847<style face="normal" font="default" size="11">The effect of pre-ozonation and subsequent coagulation on the filtration of WWTP effluent with low-pressure membranes </style>internal-pdf://3892538881/Genz-2010-348.pdfKWB-documents_20191205.enlEndNote34934947<style face="normal" font="default" size="11">Die Kombination von Ozon und Flockung als Behandlungsstufe vor einer Membranfiltration (Oxeram)</style>internal-pdf://3335416346/Genz-2010-349.pdfKWB-documents_20191205.enlEndNote35035047<style face="normal" font="default" size="100%">The Development of an International Guidance Manual for the Management of Toxic Cyanobacteria</style><style face="bold" font="Times New Roman" size="14"> </style>internal-pdf://3567188536/Newcombe-2010-350.pdfKWB-documents_20191205.enlEndNote35135127<style face="normal" font="default" size="100%">Investigation of pre-ozonation on the performance of membrane filtration (Oxeram 1 - D 4.2)</style>internal-pdf://0435312485/Genz-2010-351.pdfKWB-documents_20191205.enlEndNote35235217<style face="normal" font="default" size="100%">Survey on the implementation of DVGW drinking water well monitoring guidelines W125 in practice</style>
internal-pdf://2786271311/Schwarzmüller-2010-352.pdf
KWB-documents_20191205.enlEndNote35335317<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>
internal-pdf://0371876944/Schwarzböck-2010-353.pdfinternal-pdf://1622172815/Schwarzböck-2010-3532.pdf
KWB-documents_20191205.enlEndNote35435447<style face="normal" font="default" size="100%">Evaluation of Electronic Noses for Online Control of Odour Emissions from Sewer Systems</style>internal-pdf://3159059501/Schwarzböck-2010-354.pdfinternal-pdf://3811601515/Schwarzböck-2010-3542.pdfKWB-documents_20191205.enlEndNote35835827<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in South Africa</style>internal-pdf://1634298472/Boulestreau-2010-358.pdfKWB-documents_20191205.enlEndNote35935927<style face="normal" font="default" size="100%">Point-of-use membrane systems: place in the world of water supply</style>internal-pdf://1541041041/Varbanets-2006-359.pdfKWB-documents_20191205.enlEndNote36036027<style face="normal" font="default" size="100%">NOM-fouling in low flux UF membrane systems</style>internal-pdf://0117402809/Peter-Varbanets-2007-360.pdfKWB-documents_20191205.enlEndNote36136127<style face="normal" font="default" size="100%">Scaled-up Trials with a gravity-driven ultrafiltration unit in France</style>internal-pdf://1982818764/Hoa-2009-361.pdfKWB-documents_20191205.enlEndNote36236227<style face="normal" font="default" size="100%">Development of UV-LED disinfection</style>internal-pdf://3992219074/Kneissl-2010-362.pdfKWB-documents_20191205.enlEndNote36336327<style face="normal" font="default" size="100%">International Market Survey on Membrane-Based Products for Decentralised Water Supply (POU and SSS Units) </style>internal-pdf://1547200894/Hoa-2008-363.pdfKWB-documents_20191205.enlEndNote37137117<style face="normal" font="default" size="100%">Application of GaN-based ultraviolet-C light emitting diodes - UV LEDs - for water disinfection</style>
internal-pdf://2469273601/Würtele-2011-371.pdf
KWB-documents_20191205.enlEndNote37237217<style face="normal" font="default" size="100%">Contribution of combined sewer overflows to trace contaminant loads in urban streams</style>
internal-pdf://2873321480/Weyrauch-2010-372.pdf
KWB-documents_20191205.enlEndNote37337347<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>internal-pdf://0507638504/Schroeder-2010-373.pdfKWB-documents_20191205.enlEndNote37437447<style face="normal" font="default" size="100%">Buffer system implementation with increased infiltration and nitrate retention capacity - A case study from Brittany, France</style>internal-pdf://0180381938/Matzinger-2010-374.pdfKWB-documents_20191205.enlEndNote37537547<style face="normal" font="default" size="100%">Development of a GIS Method to Localize Critical Source Areas of Diffuse Nitrate Pollution</style>internal-pdf://0047540310/Orlikowski-2010-375.pdfKWB-documents_20191205.enlEndNote37637647<style face="normal" font="default" size="100%">Mitigation of diffuse agricultural pollution in Brittany (France): Pilot designs for constructed wetlands and bioretention swales</style><style face="normal" font="Times New Roman" size="100%"> </style>internal-pdf://3687446582/Périllon-2010-376.pdfKWB-documents_20191205.enlEndNote37737727<style face="normal" font="default" size="100%">GIS approach to localize critical source areas of diffuse nitrate pollution. Case study on the Ic catchment, France</style>internal-pdf://4153501532/Bugey-2010-377.pdfKWB-documents_20191205.enlEndNote37837817<style face="normal" font="default" size="100%">Hypolimnetic oxygen consumption by sediment-based reduced substances in former eutrophic lakes</style>
internal-pdf://3545615539/Matzinger-2010-378.pdf
KWB-documents_20191205.enlEndNote37937917<style face="normal" font="default" size="100%">Sorption of the cyanobacterial toxins cylindrospermopsin and anatoxin-a to sediments</style>
internal-pdf://3552864560/Klitzke-2011-379.pdfinternal-pdf://Klitzke et al Supplement-0857521921/Klitzke et al Supplement.doc
KWB-documents_20191205.enlEndNote38138117<style face="normal" font="default" size="100%">First report of anatoxin-a-producing cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon issatschenkoi</style><style face="normal" font="default" size="100%"> in northeastern Germany</style>
internal-pdf://2582211254/Ballot-2010-381.pdf
KWB-documents_20191205.enlEndNote38238217<style face="normal" font="default" size="100%">Paralytic Shellfish Poisoning Toxin-Producing Cyanobacterium </style><style face="italic" font="default" size="100%">Aphanizomenon gracile </style><style face="normal" font="default" size="100%">in Northeast Germany</style>
internal-pdf://0376531716/Ballot-2010-382.pdf
KWB-documents_20191205.enlEndNote38338317<style face="normal" font="default" size="100%">A Simple Method to Hide Data Loggers Safely in Observation Wells</style>KWB-documents_20191205.enlEndNote38438417<style face="normal" font="default" size="100%">Removal of bacterial fecal indicators, coliphages and enteric adenoviruses from waters with high fecal pollution by slow sand filtration</style>
internal-pdf://2101110698/Bauer-2011-384.pdf
KWB-documents_20191205.enlEndNote38538517<style face="normal" font="default" size="100%">Evaluation of effectiveness of combined sewer overflow control measures by operational data</style>
internal-pdf://3797640491/Schroeder-2011-385.pdf
KWB-documents_20191205.enlEndNote38638647<style face="normal" font="default" size="100%">Near Natural Mitigation Zones for Agricultural Runoff Management to Protect Drinking Water Supplies: A French-German-US research collaboration.</style>internal-pdf://3366015902/Tedesco-2010-386.pdfKWB-documents_20191205.enlEndNote38738727<style face="normal" font="default" size="100%">Untersuchung des Betriebsverhaltens von Kleinkläranlagen unter besonderen Betriebsbedingungen - Vergleichende Studie auf dem Testfeld des BDZ in Leipzig</style>internal-pdf://1652428170/Barjenbruch-2009-387.pdfKWB-documents_20191205.enlEndNote38838827<style face="normal" font="default" size="100%">Treatment of urine with zero-valent iron to minimize the aquatic pollution with compounds emitted by hospitals</style>internal-pdf://0800416677/Stieber-2010-388.pdfKWB-documents_20191205.enlEndNote38938927<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation</style>internal-pdf://2008700679/Hübner-2010-389.pdfKWB-documents_20191205.enlEndNote39039027<style face="normal" font="default" size="100%">Literature Study on Redox Control for Infiltration Ponds and other Subsurface Systems</style>internal-pdf://3122090832/Grützmacher-2011-390.pdfKWB-documents_20191205.enlEndNote3913916<style face="normal" font="default" size="100%">Strategic Research Agenda of European Technology Platform for Water (WssTP)</style>internal-pdf://0915039999/Lesjean-2010-391.pdfKWB-documents_20191205.enlEndNote39339347<style face="normal" font="default" size="100%">Ten persistent myths and the realities of the MBR technology for municipal applications</style>internal-pdf://0662398641/Lesjean-2010-393.pdfKWB-documents_20191205.enlEndNote39539517<style face="normal" font="default" size="100%">Filterability assessment in membrane bioreactors using an in-situ filtration test cell</style>
internal-pdf://1822122761/de la Torre-2010-395.pdf
KWB-documents_20191205.enlEndNote39639617<style face="normal" font="default" size="100%">Activated sludge model based modelling of membrane bioreactor (MBR) processes: A critical review with special regard to MBR specifities</style>
internal-pdf://0143482783/Fenu-2010-396.pdf
KWB-documents_20191205.enlEndNote39739717<style face="normal" font="default" size="100%">Performances and fouling control of a flat sheet membrane in a MBR pilot plant</style>
internal-pdf://2486967119/Grélot-2010-397.pdf
KWB-documents_20191205.enlEndNote39839827<style face="normal" font="default" size="100%">Relevance and opportunities of RBF systems in developing and newly-industrialised countries</style>internal-pdf://1931829853/Hülshoff-2009-398.pdfKWB-documents_20191205.enlEndNote39939927<style face="normal" font="default" size="100%">Decision Support System for Bank Filtration Systems</style>internal-pdf://2793693555/Rustler-2011-399.pdfKWB-documents_20191205.enlEndNote40040027<style face="normal" font="default" size="100%">State-of-the-art in the field of well field optimization modelling</style>internal-pdf://3291177253/Rustler-2010-400.pdfKWB-documents_20191205.enlEndNote40140127<style face="normal" font="default" size="100%">Bank Filtration Simulator - Manual</style>internal-pdf://0245260503/Rustler-2009-401.pdfKWB-documents_20191205.enlEndNote40240227<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling </style>internal-pdf://0476536064/Rustler-2011-402.pdfKWB-documents_20191205.enlEndNote40340327<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://0798843017/Rustler-2011-403.pdfKWB-documents_20191205.enlEndNote40440427<style face="normal" font="default" size="100%">Results on the background work and data integration of MAR systems for an Integrated Water Resource Management</style>internal-pdf://3970590197/Lorenzen-2007-404.pdfKWB-documents_20191205.enlEndNote40640617<style face="normal" font="default" size="100%">Vulnerability of bank filtration systems to climate change</style>
internal-pdf://1645240379/Sprenger-2010-406.pdf
KWB-documents_20191205.enlEndNote40740727<style face="normal" font="default" size="100%">Preliminary report on data of all inorganic substances and physicochemical parameters listed in the Indian and German drinking water Standards from surface water and groundwater at the 3(+1) field sites</style>internal-pdf://4099223169/Pekdeger-2008-407.pdfKWB-documents_20191205.enlEndNote40840827<style face="normal" font="default" size="11">Occurrence and fate of microbial pathogens and organic trace compounds at riverbank filtration sites in Delhi, India</style>internal-pdf://0831546370/Sprenger-2008-408.pdfKWB-documents_20191205.enlEndNote40940927<style face="normal" font="default" size="100%">Feasibility Study on Post-treatment Options after Riverbank Filtration in Delhi: Minimum Requirements</style>internal-pdf://2410767050/Hoa-2010-409.pdfKWB-documents_20191205.enlEndNote41041027<style face="normal" font="default" size="100%">Analysis of the vulnerability of bank filtration systems to climate change by comparing their effectiveness under varying environmental conditions</style>internal-pdf://3328401935/Hülshoff-2009-410.pdfKWB-documents_20191205.enlEndNote41141127<style face="normal" font="default" size="100%">Watergy: Energy and Water Efficiency in Municipal Water Supply and Wastewater Treatment - </style><style face="italic" font="default" size="100%">Cost-Effective Savings of Water and Energy</style>internal-pdf://0624321367/Barry-2007-411.pdfKWB-documents_20191205.enlEndNote41241232<style face="normal" font="default" size="100%">Kosten-Nutzen-Analyse zur optimierten Instandhaltungs- und Neubauplanung am Beispiel ausgewählter Trinkwasserbrunnen der Berliner Wasserbetriebe</style>internal-pdf://2677956589/Brinkmann-2011-412.pdfKWB-documents_20191205.enlEndNote41341317<style face="normal" font="default" size="100%">Eisenbakterien in Trinkwasserbrunnen</style>
internal-pdf://1446386870/Schwarzmüller-2011-413.pdf
KWB-documents_20191205.enlEndNote41441447<style face="normal" font="default" size="100%">Behaviour of trace organics during drinking water production via subsurface passage</style>internal-pdf://4279787017/Grützmacher-2011-414.pdfKWB-documents_20191205.enlEndNote41641647<style face="normal" font="default" size="100%">Comparative cost analysis for bank filtration systems and direct surface water use under different boundary conditions</style>internal-pdf://1339906985/Rustler-2011-416.pdfinternal-pdf://4121648103/Rustler-2011-4162.pdfKWB-documents_20191205.enlEndNote41741747<style face="normal" font="default" size="100%">Decision support system for the multi-objective optimization of bank filtration systems</style>internal-pdf://1544641589/Rustler-2010-417.pdfinternal-pdf://2607111284/Rustler-2010-4171.pdfinternal-pdf://2103860402/Rustler-2010-4172.pdfKWB-documents_20191205.enlEndNote41941947<style face="normal" font="default" size="100%">A European initiative to define current research needs in managed aquifer recharge</style>internal-pdf://3197460149/Grützmacher-2010-419.pdfinternal-pdf://0856582758/Grützmacher-2010-4192.pdfKWB-documents_20191205.enlEndNote42042017<style face="normal" font="default" size="100%">Comparative studies on the retardation and reduction of glyphosate during subsurface passage</style>
internal-pdf://1434589844/Litz-2011-420.pdf
KWB-documents_20191205.enlEndNote42442417<style face="normal" font="default" size="100%">Optimierung des Abbaus organischer Belastungen durch die Kombination von Ozonung und Untergrundpassage</style>
internal-pdf://2029525917/Gnirß-2011-424.pdf
KWB-documents_20191205.enlEndNote42542527<style face="normal" font="default" size="100%">Catalogue of European adaptive initiatives of the water sector to face climate change impacts V3 (Updated 2012 Release)</style>internal-pdf://1548569413/Staub-2012-425.pdfKWB-documents_20191205.enlEndNote42642617<style face="normal" font="default" size="100%">Competitiveness of invasive and native cyanobacteria from temperate freshwaters under various light and temperature conditions</style>
internal-pdf://3552976117/Mehnert-2010-426.pdf
KWB-documents_20191205.enlEndNote42942917<style face="normal" font="default" size="100%">Removal kinetics of organic compounds and sum parameters under field conditions for managed aquifer recharge</style>
internal-pdf://1483742312/Wiese-2011-429.pdf
KWB-documents_20191205.enlEndNote43043027<style face="normal" font="default" size="100%">Optimisation of organic compound removal in artificial recharge systems by redox control and enhanced oxidation. Final Report of OXIRED - Phase 2</style>internal-pdf://1848137401/Hübner-2011-430.pdfKWB-documents_20191205.enlEndNote43143117<style face="normal" font="default" size="100%">Searching for a universal fouling indicator for membrane bioreactors</style>
internal-pdf://1419451371/de la Torre-2010-431.pdf
KWB-documents_20191205.enlEndNote43243217<style face="normal" font="default" size="100%">Seasonal and spatial distribution of redox zones during lake bank filtration in Berlin, Germany</style>
internal-pdf://0549199280/Massmann-2007-432.pdf
KWB-documents_20191205.enlEndNote43343317<style face="normal" font="default" size="100%">Analysis of long-term dispersion in a river-recharged aquifer using tritium/helium data</style>
internal-pdf://2997902670/Massmann-2009-433.pdf
KWB-documents_20191205.enlEndNote43443417<style face="normal" font="default" size="100%">Behaviour and redox sensitivity of antimicrobial residues during bank filtration</style>
internal-pdf://0975838796/Heberer-2008-434.pdf
KWB-documents_20191205.enlEndNote43543517<style face="normal" font="default" size="100%">Development of a GIS method to localize critical source areas of diffuse nitrate pollution</style>
internal-pdf://1064827370/Orlikowski-2011-435.pdf
KWB-documents_20191205.enlEndNote43643647<style face="normal" font="default" size="100%">Implementation of small organically enriched constructed wetlands to mitigate agricultural nitrate hotspots in Brittany, France</style>internal-pdf://1931695162/Périllon-2011-436.pdfinternal-pdf://0382620792/Périllon-2011-4362.pdfKWB-documents_20191205.enlEndNote43743727<style face="normal" font="default" size="100%">Retention and elimination of cynobacterial toxins (microcystins) through artificial recharge and bank filtration</style>internal-pdf://0016792491/Chorus-2006-437.pdfKWB-documents_20191205.enlEndNote43843827<style face="normal" font="default" size="100%">Occurrence and fate of drug residues and related polar contaminants during bank filtration and artificial recharge</style>internal-pdf://3351329504/Jekel-2006-438.pdfKWB-documents_20191205.enlEndNote43943927<style face="normal" font="default" size="100%">Organic substances in bank filtration and groundwater recharge - Process studies</style>internal-pdf://0789789502/Jekel-2006-439.pdfKWB-documents_20191205.enlEndNote44044027<style face="normal" font="default" size="100%">Investigating hydrogeological-hydrogeochemical processes during bank filtration and artificial ground water recharge using a multi trace approach</style>internal-pdf://0652229141/Pekdeger-2006-440.pdfKWB-documents_20191205.enlEndNote44144127<style face="normal" font="default" size="100%">Integrated modelling concepts for bank filtration processes: coupled ground water transport and biogeochemical reactions.</style>internal-pdf://0982203011/Nützmann-2006-441.pdfKWB-documents_20191205.enlEndNote44544547<style face="normal" font="default" size="100%">Application of online water quality sensors for integrated CSO impact assessment in Berlin (Gemany)</style>internal-pdf://2238797763/Caradot-2011-445.pdfKWB-documents_20191205.enlEndNote44644647<style face="normal" font="default" size="100%">Different methods of CSO identification in sewer systems and receiving waters</style>internal-pdf://1757960287/Sonnenberg-2011-446.pdfKWB-documents_20191205.enlEndNote44744710<style face="normal" font="default" size="100%">Elektronische Nasen als Tool für Geruchsmanagement in Abwasserkanalisationen – Test und Bewertung von vier Multigas-Sensorsystemen</style>internal-pdf://3961345004/Schwarzböck-2011-447.pdfKWB-documents_20191205.enlEndNote44844832<style face="normal" font="default" size="100%">Ökobilanz und wirtschaftlicher Vergleich verschiedener Phosphoreliminationsverfahren in Kläranlagen</style>internal-pdf://2916863077/Meinel-2011-448.pdfKWB-documents_20191205.enlEndNote44944947<style face="normal" font="default" size="100%">Analysis of nanoparticles in treated domestic wastewater for improved understanding and prevention of membrane fouling</style>internal-pdf://1708606874/Schulz-2011-449.pdfinternal-pdf://3809887704/Schulz-2011-4492.pdfKWB-documents_20191205.enlEndNote45045027<style face="normal" font="default" size="100%">Ammonia toxicity: Impact assessment of combined sewer overflows on the River Spree in Berlin</style>internal-pdf://0325342406/Matzinger-2011-450.pdfKWB-documents_20191205.enlEndNote45145127<style face="normal" font="default" size="100%">Microorganisms in soils & sediments. Detection, quantification and activity. Deliverable 2.2</style>internal-pdf://1661229073/van der Velde-2011-451.pdfKWB-documents_20191205.enlEndNote45245227<style face="normal" font="default" size="100%">Reactive transport modeling. Deliverable 3.4</style>internal-pdf://0071587248/Kalka-2011-452.pdfKWB-documents_20191205.enlEndNote45345327<style face="normal" font="default" size="100%">Using bacteriophages, indicator bacteria, and viral pathogens for assessing the health risk of drinking water obtained by bank filtration</style>internal-pdf://3842767541/López-Pila-2006-453.pdfKWB-documents_20191205.enlEndNote45445427<style face="normal" font="default" size="100%">Synthesis Report on Practical Implications and Opportunities for Transfer to Field Scale</style>internal-pdf://0731011245/Miehe-2011-454.pdfKWB-documents_20191205.enlEndNote45545527<style face="normal" font="default" size="100%">Development of Toxic Nostocales (Cyanobacteria) in the Course of Declining Trophic State and Global Warming - NOSTOTOX Final Report</style>internal-pdf://0344078589/Wiedner-2011-455.pdfKWB-documents_20191205.enlEndNote45645627<style face="normal" font="default" size="100%">Laboratory column experiments on options for redox control in infiltration ponds for artificial recharge</style>internal-pdf://3458748593/Scheytt-2011-456.pdfKWB-documents_20191205.enlEndNote45745717<style face="normal" font="default" size="100%">Abbau von Stoffspuren in natürlichen und künstlichen Systemen der Infiltration von Wasser</style>
internal-pdf://2735925201/Grützmacher-2011-457.pdf
KWB-documents_20191205.enlEndNote45945917<style face="normal" font="default" size="100%">TECHNEAU: Perspectives of River Bank Filtration for newly industrialised and developing countries</style>
internal-pdf://1718285407/Grützmacher-2011-459.pdf
KWB-documents_20191205.enlEndNote46046032<style face="normal" font="default" size="11">Risk assessment of the wastewater-reuse strategy of Braunschweig concerning impacts on the environment and human health</style>internal-pdf://3582480467/Seis-2011-460.pdfKWB-documents_20191205.enlEndNote46146147<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0202920394/Remy-2011-461.pdfinternal-pdf://3787716310/Remy-2011-4611.pdfKWB-documents_20191205.enlEndNote46246247<style face="normal" font="default" size="100%">Life cycle management for assessing systems of urban water management: Case studies and methodological gaps</style>internal-pdf://3088141530/Remy-2011-462.pdfinternal-pdf://3890760985/Remy-2011-4622.pdfKWB-documents_20191205.enlEndNote46346347<style face="normal" font="default" size="100%">Sustainable sewage treatment plant of the future: Identifying global warming and energy optimization potentials with Life Cycle Assessment</style>internal-pdf://2789429503/Remy-2011-463.pdfinternal-pdf://2440450365/Remy-2011-4632.pdfKWB-documents_20191205.enlEndNote46446447<style face="normal" font="default" size="100%">Impact of well operation on iron-related clogging in quarternary aquifers in Berlin, Germany </style>internal-pdf://2632339992/Menz-2011-464.pdfKWB-documents_20191205.enlEndNote46546527<style face="normal" font="default" size="100%">WELLMA-DNA Final Report: Documentation of data acquisition and conclusions</style>internal-pdf://1708847505/Thronicker-2011-465.pdfKWB-documents_20191205.enlEndNote46646632<style face="normal" font="default" size="100%">Determination of the carbonate scaling potential of drinking water abstraction wells from hydrochemical data using hydro-geochemical modelling software PhreeqC</style>internal-pdf://3080515564/Josse-2011-466.pdfKWB-documents_20191205.enlEndNote46746727<style face="normal" font="default" size="100%">Literature review on theoretical pump and motor efficiency of submersible pump systems</style>internal-pdf://1189039010/Staub-2011-467.pdfKWB-documents_20191205.enlEndNote46846832<style face="normal" font="default" size="11">Optimization of flocculation for advanced phosphorus removal via microsieve filtration </style>internal-pdf://0369644274/Langer-2011-468.pdfKWB-documents_20191205.enlEndNote46946947<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0922571428/Langer-2011-469.pdfKWB-documents_20191205.enlEndNote47047047<style face="normal" font="default" size="100%">Advanced phosphorus removal with microsieves in tertiary treatment: An alternative to membrane filtration?</style>internal-pdf://0680874582/Langer-2011-470.pdfKWB-documents_20191205.enlEndNote47547527<style face="normal" font="default" size="100%">LCA study of sludge treatment line in WWTP Berlin-Waßmannsdorf: Final report of project CoDiGreen work package 2</style>internal-pdf://0622611908/Remy-2012-475.pdfKWB-documents_20191205.enlEndNote47647627<style face="normal" font="default" size="100%">LCA study of Braunschweig wastewater scheme: Final report of project CoDiGreen work package 2</style>internal-pdf://0553602407/Remy-2012-476.pdfKWB-documents_20191205.enlEndNote47747717<style face="normal" font="default" size="100%">Potentiale für den Einsatz von Nährstoff-Filtersystemen in Deutschland zur Verringerung der Nährstoffeinträge in Oberflächengewässer</style>
internal-pdf://3601015471/Holsten-2012-477.pdf
KWB-documents_20191205.enlEndNote48048017<style face="normal" font="default" size="100%">Methodik der Ökobilanz zur ganzheitlichen Erfassung des Energieverbrauchs in der Abwasserreinigung</style>
internal-pdf://2553684421/Remy-2011-480.pdf
KWB-documents_20191205.enlEndNote48148117<style face="normal" font="default" size="100%">Report on current research needs in managed aquifer recharge published by the WssTP</style>internal-pdf://0424759161/Grützmacher-2011-481.pdfKWB-documents_20191205.enlEndNote48248247<style face="normal" font="default" size="100%">Life Cycle Assessment: Quantifying environmental impacts of urban water management</style>internal-pdf://2176929298/Remy-2010-482.pdfKWB-documents_20191205.enlEndNote48348347<style face="normal" font="default" size="100%">Agricultural reuse of WWTP effluent and sludge: Results of CoDiGreen</style>internal-pdf://3637266894/Remy-2012-483.pdfKWB-documents_20191205.enlEndNote48448447<style face="normal" font="default" size="100%">Energetischer Vergleich der erweiterten Oxidationsverfahren</style>internal-pdf://0288048787/Remy-2011-484.pdfKWB-documents_20191205.enlEndNote48748727<style face="normal" font="default" size="100%">International market review of pumps available for groundwater abstraction </style>internal-pdf://0919751259/Höchel-2012-487.pdfKWB-documents_20191205.enlEndNote48848847<style face="normal" font="default" size="100%">A catalogue and matrix of initiatives as a toolbox for utilities to enhance their preparedness for climate change</style>internal-pdf://2629521413/Staub-2012-488.pdfKWB-documents_20191205.enlEndNote48948947<style face="normal" font="default" size="100%">Zum Verhalten von organischen Spurestoffen bei der Trinkwassergewinnung durch Untergrundpassage in Berlin</style>internal-pdf://0074665927/Grützmacher-2011-489.pdfKWB-documents_20191205.enlEndNote49049017<style face="normal" font="default" size="100%">Using the Life Cycle Assessment methodology for a comprehensive evaluation of energy demand in wastewater treament</style>internal-pdf://0247996791/Remy-2012-490.pdfKWB-documents_20191205.enlEndNote49149117<style face="normal" font="default" size="100%">Climate change and the water sector in Europe: A review of research and technology development needs</style>internal-pdf://0110501701/Escaler-2012-491.pdfKWB-documents_20191205.enlEndNote49249227<style face="normal" font="default" size="100%">Market Review on Available Instruments for Odour Measurement</style>internal-pdf://2779597886/Schwarzböck-2012-492.pdfKWB-documents_20191205.enlEndNote4934935<style face="normal" font="default" size="100%">Modellierung von biogeochemischen Prozessen in Fließgewässern</style>internal-pdf://0120179969/Matzinger-2012-493.pdfKWB-documents_20191205.enlEndNote49449427<style face="normal" font="default" size="100%">Continuous Monitoring of Combined Sewer Overflows in the Sewer and the Receiving River: Return on Experience</style>internal-pdf://3006218067/Caradot-2012-494.pdfKWB-documents_20191205.enlEndNote49549517<style face="normal" font="default" size="100%">Operation of gravity-driven ultrafiltration prototype for decentralised water supply</style>
internal-pdf://1531126525/Boulestreau-2012-495.pdf
KWB-documents_20191205.enlEndNote49649627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report </style>internal-pdf://1420911657/Staub-2012-496.pdfKWB-documents_20191205.enlEndNote49749732<style face="normal" font="default" size="100%">Optimization of abstraction costs for a drinking water well field</style>internal-pdf://2139441911/Vautrin-2012-497.pdfKWB-documents_20191205.enlEndNote49849847<style face="normal" font="default" size="100%">Potentials for energy savings through drinking water well field optimisation</style>internal-pdf://2182232410/Staub-2012-498.pdfKWB-documents_20191205.enlEndNote50150117<style face="normal" font="default" size="100%">The Influence of Redox Conditions on Phage Transport - Enclosure Experiments and Modeling</style>
internal-pdf://4000850529/Holzbecher-2006-501.pdf
KWB-documents_20191205.enlEndNote50550517<style face="normal" font="default" size="100%">Best data handling practices in water-related research</style>
internal-pdf://3142198122/Sonnenberg-2013-505.pdfinternal-pdf://1115275490/Sonnenberg-2013-5052.pdf
KWB-documents_20191205.enlEndNote50650617<style face="normal" font="default" size="100%">Immissionsorientierte Mischwasserbewirtschaftung</style>
internal-pdf://3752730859/Riechel-2012-506.pdf
KWB-documents_20191205.enlEndNote50750747<style face="normal" font="default" size="100%">Towards an Impact-based Planning Instrument for Combined Sewer Management in Berlin, Germany. </style>internal-pdf://0453724341/Riechel-2011-507.pdfKWB-documents_20191205.enlEndNote50850847<style face="normal" font="default" size="100%">Validation and sensitivity of a coupled model tool for CSO impact assessment in Berlin, Germany.</style>internal-pdf://1200639116/Riechel-2012-508.pdfKWB-documents_20191205.enlEndNote50950947<style face="normal" font="default" size="100%">A large urban river under pressure - Research and actions for the mitigation of impacts from combined sewer overflows in Berlin, Germany.</style>internal-pdf://4291447324/Matzinger-2012-509.pdfKWB-documents_20191205.enlEndNote51151127<style face="normal" font="default" size="100%">Geological CO2 Storage and other subsurface emerging activities: Catalogue of potential impacts on drinking water production</style>internal-pdf://1938115568/Seis-2013-511.pdfKWB-documents_20191205.enlEndNote51251217<style face="normal" font="default" size="100%">Hypolimnetic Oxygen Depletion in Eutrophic Lakes</style>
internal-pdf://0640995138/Müller-2012-512.pdf
KWB-documents_20191205.enlEndNote51351347<style face="normal" font="default" size="100%">Mitigation systems to attenuate diffuse agricultural pollution: location and design choice</style>internal-pdf://2569488487/Rouault-2012-513.pdfKWB-documents_20191205.enlEndNote51451447<style face="normal" font="default" size="11">Ökobilanzielle Bewertung des Braunschweiger Modells der Abwasserwiederverwendung über Life Cycle Assessment</style>internal-pdf://1351742933/Remy-2012-514.pdfinternal-pdf://2482632212/Remy-2012-5142.pdfKWB-documents_20191205.enlEndNote51551547<style face="normal" font="default" size="100%">Evaluation and optimisation of the environmental footprint of the Braunschweig sanitation concept with Life Cycle Assessment</style>internal-pdf://0230639875/Remy-2012-515.pdfinternal-pdf://3553642818/Remy-2012-5152.pdfKWB-documents_20191205.enlEndNote51651647<style face="normal" font="default" size="100%">Weitestgehende Phosphorelimination in Kläranlagen: Ökologischer Vergleich von Filtrationsverfahren mittels Life Cycle Assessment</style>internal-pdf://2857629282/Remy-2012-516.pdfKWB-documents_20191205.enlEndNote51751747<style face="normal" font="default" size="100%">Development of a planning instrument to reduce future ecosystem impacts of combined sewer overflows in the Berlin River Spree.</style>internal-pdf://3553837445/Rouault-2012-517.pdfKWB-documents_20191205.enlEndNote51951917<style face="normal" font="default" size="100%">Identifying energy and carbon footprint optimization potentials of a sludge treatment line with Life Cycle Assessment</style>
internal-pdf://0035266857/Remy-2013-519.pdf
KWB-documents_20191205.enlEndNote52052047<style face="normal" font="default" size="11">Agricultural reuse of WWTP effluent and sludge: optimization + environmental footprint via LCA</style>internal-pdf://4050536848/Remy-2013-520.pdfKWB-documents_20191205.enlEndNote52152147<style face="normal" font="default" size="100%">Fouling rate as the crucial design parameter for ultrafiltration of secondary effluents.</style>internal-pdf://2669823963/Stüber-2012-521.pdfKWB-documents_20191205.enlEndNote52252247<style face="normal" font="default" size="100%">Membrane filtration combined with pre-ozonation and coagulation for water reuse: Case study with ceramic and polymeric membranes.</style><style face="normal" font="default" size="11"> </style>internal-pdf://3335320967/Stüber-2012-522.pdfKWB-documents_20191205.enlEndNote52352347<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration in tertiary treatment: Performance and operation</style>internal-pdf://0459208446/Langer-2012-523.pdfKWB-documents_20191205.enlEndNote52452447<style face="normal" font="default" size="100%">Kolloidales Fouling von Niederdruckmembranen in der weitergehenden Abwasserreinigung: Analyse und Maßnahmen zur Verringerung</style>internal-pdf://2818656297/Schulz-2012-524.pdfKWB-documents_20191205.enlEndNote52552547<style face="normal" font="default" size="100%">On-line submicron particle analysis for the assessment of fouling potential in tertiary membrane filtration.</style>internal-pdf://1385776413/Schulz-2012-525.pdfinternal-pdf://4249896283/Schulz-2012-5252.pdfKWB-documents_20191205.enlEndNote52652647<style face="normal" font="default" size="100%">Prediction of fouling potential of treated domestic wastewater by on-line submicron particle analysis. </style>KWB-documents_20191205.enlEndNote52752747<style face="normal" font="default" size="100%">Fouling von Ultrafiltrationsmembranen - Relevanz von Proteinen und Analyse mit MALDI-TOF-MS</style>internal-pdf://4094183309/Godehardt-2012-527.pdfKWB-documents_20191205.enlEndNote52852847<style face="normal" font="default" size="100%">Influence of ozonation and coagulation as pretreatment steps for ultrafiltration in advanced wastewater treatment</style><style face="normal" font="default" size="11">.</style>internal-pdf://0956254889/Godehardt-2012-528.pdfKWB-documents_20191205.enlEndNote52952947<style face="normal" font="default" size="100%">Impacts of ozonation and coagulation on fouling during subsequent ultrafiltration in advanced wastewater treatment </style>KWB-documents_20191205.enlEndNote53053027<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change (Deliverable 5.4.2)</style>internal-pdf://2160871137/Matzinger-2012-530.pdfKWB-documents_20191205.enlEndNote53153132<style face="normal" font="default" size="100%">Tracerversuch zum Nachweis von Undichtigkeiten am Beispiel eines Vertikalfilterbrunnens des Wasserwerks Jungfernheide (Berlin).</style>internal-pdf://2752136321/Steinhöfel-2012-531.pdfKWB-documents_20191205.enlEndNote53353347<style face="normal" font="default" size="100%">Evaluation of the ageing potential of drinking water wells to optimize well operation and maintenance.</style>internal-pdf://1317420197/Schwarzmüller-2012-533.pdfKWB-documents_20191205.enlEndNote53453447<style face="normal" font="default" size="100%">A new look on old data: Usability of continuously measured discharge rates to monitor the ageing of drinking water abstraction wells.</style>internal-pdf://3141158095/Schwarzmüller-2012-534.pdfKWB-documents_20191205.enlEndNote53653632<style face="normal" font="default" size="100%">Advanced Wastewater Treatment Through the Combination of Flocculation, Microsieve Filtration and UV-Disinfection.</style>internal-pdf://1321879078/Schermann-2012-536.pdfKWB-documents_20191205.enlEndNote53753732<style face="normal" font="default" size="100%">Advanced phosphorus removal via microsieve filtration - Process optimization for dynamic operation and discussion of effects on operating cost.</style>internal-pdf://1824671535/Lardon-2012-537.pdfKWB-documents_20191205.enlEndNote53853832<style face="normal" font="default" size="100%">Rapid Sand Filter Design - A Comparative study on Danish and German groundwater treatment. – Bachelor Thesis, , 114.</style>internal-pdf://4060889882/Jensen-2012-538.pdfKWB-documents_20191205.enlEndNote53953947<style face="normal" font="default" size="100%">Application of a data-driven approach for well field modelling</style>internal-pdf://2552863667/Rustler-2012-539.pdfKWB-documents_20191205.enlEndNote54054047<style face="normal" font="default" size="100%">PREPARED - enabling change: building a utility alliance on climate change adaptation.</style>KWB-documents_20191205.enlEndNote54254227<style face="normal" font="default" size="100%">Decision Support for managing substance flows within the Berlin water cycle under climate change conditions – Synthesis Report</style>internal-pdf://0332475253/Rustler-2012-542.pdfKWB-documents_20191205.enlEndNote54354347<style face="normal" font="default" size="100%">Combining ozonation and ceramic membrane filtration for tertiary treatment.</style>internal-pdf://1861895157/Stüber-2012-543.pdfKWB-documents_20191205.enlEndNote54454432<style face="normal" font="default" size="100%">Evaluation of different cleaning methods on the fouling rate of organic membranes. </style>internal-pdf://3331081080/Hattke-2012-544.pdfKWB-documents_20191205.enlEndNote54554532<style face="normal" font="default" size="100%">Advanced wastewater treatment by the implementation of a ceramic membrane. Studienarbeit</style>internal-pdf://1426931851/Stein-2012-545.pdfKWB-documents_20191205.enlEndNote54654647<style face="normal" font="default" size="100%">Ozonation on ceramic membranes – possible flux enhancement in tertiary treatment processes (Poster).</style>internal-pdf://4001711030/Stüber-2012-546.pdfKWB-documents_20191205.enlEndNote54754747<style face="normal" font="default" size="100%">Sweet spot search: Screening the operational window for secondary effluent filtration (Poster).</style>internal-pdf://1061700659/Stüber-2012-547.pdfKWB-documents_20191205.enlEndNote54854827<style face="normal" font="default" size="100%">Risk assessment auf Braunschweig wastewater reuse scheme</style>internal-pdf://2435596599/Seis-2012-548.pdfKWB-documents_20191205.enlEndNote54954927<style face="normal" font="default" size="100%">Optimisation of energy and nutrient recovery in wastewater treatment schemes (Executive Summary)</style>internal-pdf://2562933281/Remy-2012-549.pdfKWB-documents_20191205.enlEndNote55055027<style face="normal" font="default" size="100%">Optimierung der Energie- und Nährstoffrückgewinnung in der Abwasserbehandlung (Kurzfassung)</style>internal-pdf://1892696531/Remy-2012-550.pdfKWB-documents_20191205.enlEndNote55155127<style face="normal" font="default" size="100%">Database of relevant pollutants in urban areas and their attenuation at RBF sites. Deliverable 1.1</style>internal-pdf://0947208175/Adlakha-2012-551.pdfKWB-documents_20191205.enlEndNote55355327<style face="normal" font="default" size="100%">Preliminary models and system design. Deliverable 5.2</style>internal-pdf://0865615933/Adlakha-2012-553.pdfKWB-documents_20191205.enlEndNote55455427<style face="normal" font="default" size="100%">Report on pilot and full-scale trials performed in Braunschweig on codigestion and thermal hydrolysis - Workpackage 3</style>internal-pdf://1253458636/Klein-2012-554.pdfKWB-documents_20191205.enlEndNote55855827<style face="normal" font="default" size="100%">Market potential of MAR solutions with reclaimed water for non-potable reuse</style>internal-pdf://0657534141/Staub-2013-558.pdfKWB-documents_20191205.enlEndNote55955917<style face="normal" font="default" size="100%">Transport of primidone, carbamazepine, and sulfamethoxazole in thermally treated sediments—laboratory column experiments</style>
internal-pdf://0345448979/Müller-2013-559.pdf
KWB-documents_20191205.enlEndNote56056017<style face="normal" font="default" size="100%">Auswirkung unterschiedlicher Schüttmaterialien auf die Verockerung und Regenerierbarkeit von Brunnen</style>
internal-pdf://0458629277/Schwarzmüller-2013-560.pdf
KWB-documents_20191205.enlEndNote56156132<style face="normal" font="default" size="100%">Vergleichende Ökobilanz von weitergehenden Stickstoffeliminierungsverfahren in Großkläranlagen</style>internal-pdf://0003026655/Mutz-2013-561.pdfKWB-documents_20191205.enlEndNote56256217<style face="normal" font="default" size="100%">Sustainable Sewage Sludge Management Fostering Phosphorus Recovery</style>
internal-pdf://2780970523/Kabbe-2013-562.pdf
KWB-documents_20191205.enlEndNote56356332<style face="normal" font="default" size="100%">Aufbau einer MS-Access-Datenbank zur Versuchsdokumentation</style>internal-pdf://3079553647/Linge-2012-563.pdfKWB-documents_20191205.enlEndNote56556527<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions in Berlin</style>internal-pdf://3462347785/Uldack-2013-565.pdfKWB-documents_20191205.enlEndNote56656647<style face="normal" font="default" size="100%">Novel wastewater process scheme for maximum COD extraction: high load MBBR followed by microsieve filtration</style>internal-pdf://4262215055/Schubert-2013-566.pdfinternal-pdf://3547479501/Schubert-2013-5662.pdfKWB-documents_20191205.enlEndNote56856817<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Zukunftsvision oder doch schon Realität?</style>
internal-pdf://2477248182/Weigert-2013-568.pdf
KWB-documents_20191205.enlEndNote57057047<style face="normal" font="default" size="100%">The use of continuous sewer and river monitoring data for CSO characterization and impact assessment</style>internal-pdf://2071543557/Caradot-2013-570.pdfKWB-documents_20191205.enlEndNote57357327<style face="normal" font="default" size="100%">Report on risk analysis, best practices and lessons learned from existing geothermal projects in Germany</style>internal-pdf://0972897382/Thomas-2013-573.pdfKWB-documents_20191205.enlEndNote57457427<style face="normal" font="default" size="100%">Extended summary of the results and conclusions of the preparatory phase of the WellMa project</style>internal-pdf://1171469528/Schwarzmüller-2011-574.pdfKWB-documents_20191205.enlEndNote57557527<style face="normal" font="default" size="100%">Depth-oriented sampling, seasonal effects and impact of intermittent operation - Documentation of data acquisition and results from field and laboratory experiments</style>internal-pdf://1237986649/Maiwald-2011-575.pdfKWB-documents_20191205.enlEndNote57757727<style face="normal" font="default" size="100%">Efficiency of H2O2 treatment - Documentation of data acquisition and recommendation of optimized procedure</style>internal-pdf://0762327250/Menz-2011-577.pdfKWB-documents_20191205.enlEndNote57857827<style face="normal" font="default" size="100%">WELLMA Decision Support Tool: Manual</style>internal-pdf://1196632622/Schwarzmüller-2013-578.pdfKWB-documents_20191205.enlEndNote57957927<style face="normal" font="default" size="100%">WELLMA-2: Summary of results and recommendations </style>internal-pdf://2352753603/Taute-2012-579.pdfKWB-documents_20191205.enlEndNote58058027<style face="normal" font="default" size="100%">Hydrogeological and hydrochemical investigations on two French selected wells, Gabachot and Boulac - Documentation of data acquisition and results</style>internal-pdf://1194994799/Taute-2012-580.pdfKWB-documents_20191205.enlEndNote58158127<style face="normal" font="default" size="100%">WELLMA-DNA: Microbiological investigations in Gabachot and Boulac</style>internal-pdf://0199960791/Thronicker-2011-581.pdfKWB-documents_20191205.enlEndNote58258227<style face="normal" font="default" size="100%">Overview of common well regeneration methods </style>internal-pdf://0363412723/Schwarzmüller-2012-582.pdfKWB-documents_20191205.enlEndNote58358327<style face="normal" font="default" size="100%">Technical guidance for the evaluation of regeneration success </style>internal-pdf://1719090497/Schwarzmüller-2011-583.pdfKWB-documents_20191205.enlEndNote58458427<style face="normal" font="default" size="100%">Synthesis report: Quantitative Diagnosis and Assessment of the Differences in the Ageing Behaviour of the VE-operated wells Gabachot & Boulac</style>internal-pdf://0321727755/Schwarzmüller-2012-584.pdfKWB-documents_20191205.enlEndNote58558527<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der deskriptiven Datenanalyse</style>internal-pdf://0987376330/Schwarzmüller-2013-585.pdfKWB-documents_20191205.enlEndNote58658627<style face="normal" font="default" size="100%">RIKO-1 Ergebnisse der Feld- und Laborarbeiten an Brunnen SPAsued10-/1983V</style>internal-pdf://0130886049/Schwarzmüller-2013-586.pdfKWB-documents_20191205.enlEndNote58758727<style face="normal" font="default" size="100%">RIKO-1 Synthesebericht</style>internal-pdf://0703079602/Menz-2013-587.pdfKWB-documents_20191205.enlEndNote58858827<style face="normal" font="default" size="100%">RIKO-1 Durchführung und Ergebnisse der Felduntersuchungen zur Uferfiltrat-Passage an Brunnen im Wasserwerk Tiefwerder</style>internal-pdf://1658073361/Menz-2013-588.pdfKWB-documents_20191205.enlEndNote58958927<style face="normal" font="default" size="100%">RIKO-1 Mikrobiologische Methoden: Stand der Technik</style>internal-pdf://2507024677/Thronicker-2013-589.pdfKWB-documents_20191205.enlEndNote59059027<style face="normal" font="default" size="100%">RIKO-1 RISIKOANALYSE DES EINTRAGS MIKROBIELLER KONTAMINATION IN TRINKWASSERBRUNNEN UND ABLEITUNG VON VERMEIDUNGSSTRATEGIEN – PHASE 1 -Durchführung und Ergebnisse der Tracerversuche an Brunnen im Wasserwerk Jungfernheide</style>internal-pdf://0671098923/Menz-2013-590.pdfKWB-documents_20191205.enlEndNote59159132<style face="normal" font="default" size="100%">Energy optimisation of drinking water well field operation</style>internal-pdf://3919260440/Sáinz-García-2013-591.pdfKWB-documents_20191205.enlEndNote59259232<style face="normal" font="default" size="100%">Developing an Advanced Pump Database For Drinking Water Well Fields</style>internal-pdf://3599515225/Eslami-2013-592.pdfKWB-documents_20191205.enlEndNote59459427<style face="normal" font="default" size="100%">Hybrid Concepts for MAR with Reclaimed Water for for Nonpotable Reuse (D1.1)</style>internal-pdf://3221240232/Staub-2013-594.pdfKWB-documents_20191205.enlEndNote59759747<style face="normal" font="default" size="100%">Übersicht der Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1243820368/Remy-2013-597.pdfKWB-documents_20191205.enlEndNote59959947<style face="normal" font="default" size="100%">Neue Verfahrenskombinationen der weitergehenden Abwasserbehandlung – Darstellung von Aufwand und Nutzen mit Methoden der Ökobilanzierung</style>internal-pdf://1830837210/Remy-2013-599.pdfKWB-documents_20191205.enlEndNote60060047<style face="normal" font="default" size="100%">Umsetzung des Phosphorrecyclings aus dem Abwasserpfad in Europa</style>internal-pdf://1936233763/Remy-2013-600.pdfKWB-documents_20191205.enlEndNote60160147<style face="normal" font="default" size="100%">Comparison of environmental impacts of tertiary filtration technologies for advanced phosphorus removal via Life Cycle Assessment</style>internal-pdf://2999488642/Remy-2013-601.pdfinternal-pdf://2658926442/Remy-2013-6012.pdfKWB-documents_20191205.enlEndNote60460447<style face="normal" font="default" size="100%">HTC-Check: Energiebilanz und Carbon Footprint von Referenztechnologien und HTC-Prozess bei der Klärschlammentsorgung</style>internal-pdf://3059538448/Remy-2013-604.pdfKWB-documents_20191205.enlEndNote60560527<style face="normal" font="default" size="100%">Hydrothermal carbonisation: Theoretical evaluation of selected schemes for municipal sludge treatment</style>KWB-documents_20191205.enlEndNote60660647<style face="normal" font="default" size="100%">Theoretische Energie- und CO2-Bilanz von Referenzverfahren und HTC-Prozess bei der Entsorgung kommunaler Klärschlämme</style>internal-pdf://2107687682/Remy-2013-606.pdfKWB-documents_20191205.enlEndNote60760747<style face="normal" font="default" size="100%">Ökobilanzen als Entscheidungshilfen bei der Planung von Klärprozessen</style>internal-pdf://3313186028/Remy-2013-607.pdfKWB-documents_20191205.enlEndNote60860847<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung in Großklärwerken – eine Ökobilanz</style>internal-pdf://1243087713/Remy-2013-608.pdfKWB-documents_20191205.enlEndNote61161117<style face="normal" font="default" size="100%">The influence of local calibration on the quality of UV-VIS spectrometer measurements in urban stormwater monitoring</style>
internal-pdf://1077422315/Caradot-2013-611.pdfinternal-pdf://1958685605/Caradot-2013-6112.pdf
KWB-documents_20191205.enlEndNote61261217<style face="normal" font="default" size="100%">The evaluation of rainfall influence on CSO characteristics: the Berlin case study</style>
internal-pdf://0292106268/Sandoval-2013-612.pdfinternal-pdf://3118847682/Sandoval-2013-6122.pdf
KWB-documents_20191205.enlEndNote61361347<style face="normal" font="default" size="100%">Optimal sampling strategy for local calibration of UV-VIS spectrometers in urban drainage monitoring</style>internal-pdf://2875218753/Caradot-2013-613.pdfKWB-documents_20191205.enlEndNote61461447<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies – state-of-the-art and perspectives</style>internal-pdf://0698781026/Caradot-2013-614.pdfKWB-documents_20191205.enlEndNote61561547<style face="normal" font="default" size="100%">Sewer deterioration modeling for asset management strategies</style>internal-pdf://2892685862/Abstract_EJSW2013_Delpth_Caradot.docKWB-documents_20191205.enlEndNote61661647<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://2510383502/Stapf-2014-616.pdfKWB-documents_20191205.enlEndNote61761747<style face="normal" font="default" size="100%">Managed Aquifer Recharge with Reclaimed Water –Optimization of Pre-treatment via Ozonation</style>internal-pdf://3223058735/Miehe-2013-617.pdfKWB-documents_20191205.enlEndNote61861847<style face="normal" font="default" size="100%">Comparison between two different filter systems as a post treatment of an ozonation to remove micropollutants</style>internal-pdf://2049651007/Stapf-2013-618.pdfinternal-pdf://0904845546/Stapf-2013-6182.pdfKWB-documents_20191205.enlEndNote62062047<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2384536520/Stapf-2013-620.pdfKWB-documents_20191205.enlEndNote62162147<style face="normal" font="default" size="100%">Vergleichende Untersuchungen von Steuerungskonzepten für nachgeschaltete Ozonanlagen</style>internal-pdf://2111940862/Stapf-2013-621.pdfKWB-documents_20191205.enlEndNote62362327<style face="normal" font="default" size="100%">Tertiary treatment combining ozonation and membrane filtration – Pilot scale investigations</style>internal-pdf://2766862141/Stüber-2013-623.pdfKWB-documents_20191205.enlEndNote62462427<style face="normal" font="default" size="100%">Guidelines for the use of online fouling monitoring in tertiary treatment</style>internal-pdf://2470877728/Boulestreau-2013-624.pdfKWB-documents_20191205.enlEndNote62562527<style face="normal" font="default" size="100%">Role of organic substances in tertiary treatment via oxidation and membrane filtration</style>internal-pdf://1902160298/Godehardt-2013-625.pdfKWB-documents_20191205.enlEndNote62662627<style face="normal" font="default" size="100%">Feasibility of the microsieve technology for advanced phosphorus removal</style>internal-pdf://3507393793/Langer-2013-626.pdfKWB-documents_20191205.enlEndNote62762727<style face="normal" font="default" size="100%">Life Cycle Assessment and Life Cycle Costing of tertiary treatment schemes</style>internal-pdf://2260400962/Remy-2013-627.pdfKWB-documents_20191205.enlEndNote62862827<style face="normal" font="default" size="100%">Abschlussbericht OXERAM 2</style>internal-pdf://3087355193/Miehe-2013-628.pdfKWB-documents_20191205.enlEndNote62962927<style face="normal" font="default" size="100%">Hydrothermal Carbonisation (HTC): Theoretical evaluation of selected schemes for municipal sludge treatment</style>internal-pdf://0521169592/Remy-2013-629.pdfKWB-documents_20191205.enlEndNote63063047<style face="normal" font="default" size="100%">Risk assessment of the wastewater reuse system of Braunschweig</style>internal-pdf://1560697257/Seis-2013-630.pdfKWB-documents_20191205.enlEndNote63163147<style face="normal" font="default" size="100%">Microbial Risk Assessment of the Water Reuse Scheme in Braunschweig based on WHO guidelines </style>internal-pdf://3676029140/Seis-2013-631.pdfKWB-documents_20191205.enlEndNote63263247<style face="normal" font="default" size="100%">Nutzung von Überschusswärme zur Optimierung der Schlammentwässerung</style>KWB-documents_20191205.enlEndNote63363347<style face="normal" font="default" size="100%">Case Study Braunschweig – 100 Years Practical Experience in Water Reuse</style>internal-pdf://0719131807/00_120202_.pptKWB-documents_20191205.enlEndNote63463447<style face="normal" font="default" size="100%">Modellbasiertes Werkzeug - immissionsbasierte Massnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://0120693934/Matzinger-2013-634.pdfKWB-documents_20191205.enlEndNote63563547<style face="normal" font="default" size="100%">Aufbau, Validierung und Anwendung eines modellbasierten Werkzeugs für die immissionsbasierte Maßnahmenplanung im Berliner Mischwassersystem</style>internal-pdf://1822383364/Matzinger-2013-635.pdfKWB-documents_20191205.enlEndNote63663617<style face="normal" font="default" size="100%">Concurrent nitrate and atrazine retention in bioreactors of straw and bark mulch at short hydraulic residence times</style>
internal-pdf://3967446471/Krause Camilo-2013-636.pdf
KWB-documents_20191205.enlEndNote63763727<style face="normal" font="default" size="100%">Development of a Catalogue on European MAR Sites - Documentation</style>internal-pdf://2974534039/Scheibler-2012-637.pdfKWB-documents_20191205.enlEndNote63863827<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Bereiche, NITROLIMIT Diskussionspapier Band 2</style>internal-pdf://2131204062/Mutz-2013-638.pdfKWB-documents_20191205.enlEndNote64064047<style face="normal" font="default" size="100%">Implementation of Phosphorus Recovery from the wastewater stream – The European FP7 project P-REX</style>internal-pdf://0975755479/Kabbe-2013-640.pdfKWB-documents_20191205.enlEndNote64164117<style face="normal" font="default" size="100%">Nachhaltiges Phosphormanagement in Europa</style>
internal-pdf://0064217720/Kabbe-2013-641.pdfinternal-pdf://0224883288/Kabbe-2013-6412.pdf
KWB-documents_20191205.enlEndNote6436435<style face="normal" font="default" size="100%">The limited resources of phosphorus and how to close the phosphorus cycle</style>internal-pdf://0156580456/Kabbe-2013-643.pdfKWB-documents_20191205.enlEndNote64464447<style face="normal" font="default" size="100%">Umweltfolgen der weitergehenden Stickstoffentfernung auf Großklärwerken – eine Ökobilanz</style>internal-pdf://0123678389/Mutz-2013-644.pdfinternal-pdf://1253860468/Mutz-2013-6442.pdfKWB-documents_20191205.enlEndNote64764727<style face="normal" font="default" size="100%">Eco-engineering systems for removal of micropollutants from WWTP effluents – existing knowledge</style>internal-pdf://1824214379/Wicke-2013-647.pdfKWB-documents_20191205.enlEndNote64964947<style face="normal" font="default" size="100%">Geogenic groundwater contamination – Definition, occurrence and relevance for drinking water production</style>
internal-pdf://3943533851/Grützmacher-2013-649.pdf
KWB-documents_20191205.enlEndNote65065047<style face="normal" font="default" size="100%">Development of a European MAR catalogue</style>internal-pdf://0210908144/Scheibler-2013-650.pdfinternal-pdf://2486604654/Scheibler-2013-6502.pdfKWB-documents_20191205.enlEndNote65265247<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani–Koratallai (A-K) basin north of Chennai (India) </style>internal-pdf://0600419013/Sprenger-2013-652.pdfKWB-documents_20191205.enlEndNote65365327<style face="normal" font="default" size="100%">Bank Filtration and Aquifer Recharde for Drinking Water Production: Application, Efficiency and Perspectives - An Integration of NASRI outcomes and International Experiences</style>internal-pdf://0810267715/Grützmacher-2011-653.pdfKWB-documents_20191205.enlEndNote65465427<style face="normal" font="default" size="100%">Optimization of flocculation for tertiary filtration processes and evaluation of sustainability of tertiary wastewater treatment</style>internal-pdf://1936253374/Miehe-2014-654.pdfKWB-documents_20191205.enlEndNote65565527<style face="normal" font="default" size="100%">Recommendations for energy positive wastewater schemes. D 1.1 - Final project report</style>internal-pdf://3942124771/Boulestreau-2014-655.pdfKWB-documents_20191205.enlEndNote65665647<style face="normal" font="default" size="100%">Multigas-sensor systems for sewer odour measurement - Evaluation of four different E-noses based on tests under realistic conditions</style>internal-pdf://0831797502/Rouault-2013-656.pdfKWB-documents_20191205.enlEndNote65765732<style face="normal" font="default" size="100%">Modelling the impacts of combined sewer overflows on the Berlin River Spree</style>internal-pdf://0316105294/Uldack-2013-657.pdfKWB-documents_20191205.enlEndNote65865832<style face="normal" font="default" size="100%">Geological CO2 storage and shale gas exploitation: Monitoring methods to be used for at the different project phases</style>internal-pdf://2683481555/Stevens-2013-658.pdfKWB-documents_20191205.enlEndNote65965932<style face="normal" font="default" size="100%">Screening of different sewage sludge disposal routes regarding the energy demand with focus on hydrothermal carbonisation</style>internal-pdf://2389013815/Warneke-2013-659.pdfKWB-documents_20191205.enlEndNote66066047<style face="normal" font="default" size="100%">Maßnahmen zur Reduktion der Nährstoffeinträge urbaner Standorte</style>internal-pdf://2013642015/Matzinger-2013-660.pdfKWB-documents_20191205.enlEndNote66166127<style face="normal" font="default" size="100%">WELLMA-2 Synthesis report</style>internal-pdf://2065132266/Schwarzmüller-2013-661.pdfKWB-documents_20191205.enlEndNote66266227<style face="normal" font="default" size="100%">Review of available technologies and methodologies for sewer condition evaluation</style>internal-pdf://2503540940/Kley-2013-662.pdfKWB-documents_20191205.enlEndNote66366327<style face="normal" font="default" size="100%">Review of sewer deterioration models</style>internal-pdf://1914220386/Kley-2013-663.pdfKWB-documents_20191205.enlEndNote66466427<style face="normal" font="default" size="100%">Review of current asset management strategies for sewer systems: results from a survey among European cities.</style>internal-pdf://0113292089/Caradot-2013-664.pdfKWB-documents_20191205.enlEndNote66666632<style face="normal" font="default" size="100%">Optimisation of sewage sludge treatment to foster dewaterability and nutrient recovery</style>internal-pdf://0413288228/Michalski-2014-666.pdfKWB-documents_20191205.enlEndNote66766732<style face="normal" font="default" size="100%">Optimierungspotentiale für die Schlammentwässerung durch verschiedene chemische Konditionierungsverfahren</style>internal-pdf://1611699569/Zhou-2013-667.pdfKWB-documents_20191205.enlEndNote66866817<style face="normal" font="default" size="100%">KURAS gestartet: Neue Konzepte für Berlin</style>
internal-pdf://3362320290/Matzinger-2014-668.pdf
KWB-documents_20191205.enlEndNote66966932<style face="normal" font="default" size="100%">Maximierung der CSB-Extraktion aus kommunalem Abwasser mit der Prozesskombination MBBR, Koagulation, Flockung und Filtration</style>internal-pdf://3478382186/Böhm-2014-669.pdfKWB-documents_20191205.enlEndNote67167127<style face="normal" font="default" size="100%">Phosphorpotenziale im Land Berlin - Abschlussbericht Projekt P-Pot</style>internal-pdf://0533570931/Kabbe-2014-671.pdfKWB-documents_20191205.enlEndNote67267227<style face="normal" font="default" size="100%">Stickstofflimitation in Binnengewässern - Teilprojekt: Sensitivitätsanalyse zur Modellierung des Stickstoffumsatzes in Fließgewässern und Life Cycle Assessment von Reinigungsverfahren</style>internal-pdf://0355183787/Rouault-2014-672.pdfKWB-documents_20191205.enlEndNote67367327<style face="normal" font="default" size="100%">Abschlussbericht NITROLIMIT I: Stickstofflimitation in Binnengewässern – Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar?</style>internal-pdf://0308015807/Nixdorf-2014-673.pdfKWB-documents_20191205.enlEndNote67467417<style face="normal" font="default" size="100%">Angewandte Wasserforschung</style>
internal-pdf://1809882068/Weigert-2014-674.pdf
KWB-documents_20191205.enlEndNote6756755<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX –</style>
internal-pdf://2094462718/Stemann-2014-675.pdf
KWB-documents_20191205.enlEndNote67667647<style face="normal" font="default" size="100%">Phosphorrückgewinnung im Rahmen der Klärschlammbehandlung – das EU-Projekt P-REX</style>internal-pdf://4141346455/Stemann-2014-676.pdfKWB-documents_20191205.enlEndNote67867847<style face="normal" font="default" size="100%">Transport of Sewage-borne Ammonium in a Floodplain Aquifer: Column Experiments with Aquifer Materials from the Yamuna Floodplain in Delhi (India)</style>internal-pdf://2458865875/IAP2014_Abstract_Maike_Groeschke.docxinternal-pdf://0692417985/Gröschke-2014-678.pdfKWB-documents_20191205.enlEndNote68068047<style face="normal" font="default" size="100%">Development of Ammonium Concentrations at a Riverbank Filtration Site in Delhi (India) – Water-Sediment Interactions from Infiltration to Production</style>internal-pdf://3103375448/FH DGG_2014_Groeschke.docxinternal-pdf://2081687054/Gröschke-2014-680.pdfKWB-documents_20191205.enlEndNote68468447<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>internal-pdf://3008025654/Wicke-2014-684.pdfKWB-documents_20191205.enlEndNote68568547<style face="normal" font="default" size="100%">Monitoring of micropollutant loads in urban stormwater on city scale - Strategy and realization</style>internal-pdf://2022940295/Wicke-2014-685.pdfKWB-documents_20191205.enlEndNote68668627<style face="normal" font="default" size="100%">Pilot Sites for Mitigation of Diffuse Pollution in Ic Amont Catchment (Brittany)</style>internal-pdf://2013377592/Wicke-2014-686.pdfKWB-documents_20191205.enlEndNote68768732<style face="normal" font="default" size="100%">Micropollutants in Berlin’s urban rainwater runoff</style>internal-pdf://2853810648/Holsteijn-2014-687.pdfKWB-documents_20191205.enlEndNote69069047<style face="normal" font="default" size="100%">Bewertung von Maßnahmen der Regenwasserbewirtschaftung am Beispiel von Umwelteffekten</style>internal-pdf://2982641709/Riechel-2014-690.pdfinternal-pdf://2256216708/Riechel-2014-6902.pdfKWB-documents_20191205.enlEndNote69169127<style face="normal" font="default" size="100%">Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5: "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://2033853606/Schwarzmüller-2014-691.pdfinternal-pdf://3261290844/Schwarzmüller-2014-6912.pdfKWB-documents_20191205.enlEndNote69269217<style face="normal" font="default" size="100%">Chancen für Phosphorrückgewinnung und -recycling aus dem Abwasserpfad in Europa</style>
internal-pdf://3940109612/Kabbe-2014-692.pdf
KWB-documents_20191205.enlEndNote69369317<style face="normal" font="default" size="100%">Aus Wasser und Asche - Die Forschungsinitiative P-REX will die Entwicklung von effizienten technischen Lösungen des Phosphor-Recyclings aus Abwasser in Europa beschleunigen</style>
internal-pdf://0908998538/Stemann-2014-693.pdf
KWB-documents_20191205.enlEndNote69469447<style face="normal" font="default" size="100%">Integrating concepts for energy and resource recovery from municipal wastewater with LCA.</style>internal-pdf://3115070902/Remy-2014-694.pdfKWB-documents_20191205.enlEndNote69769727<style face="normal" font="default" size="100%">Final Report on the Implementation of a Wetland Module for the Soil and Water Assessment Tool (SWAT)</style>internal-pdf://3650491691/Breuer-2014-697.pdfKWB-documents_20191205.enlEndNote69869847<style face="normal" font="default" size="100%">A tool for minimizing the energy demand of drinking water well fields</style>internal-pdf://2679884733/Philippon-2014-698.pdfKWB-documents_20191205.enlEndNote69969927<style face="normal" font="default" size="100%">Results of pilot-scale dewatering trials performed in Braunschweig Assessment of various operational factors on centrifugation performances (Project Decamax, Work Package 2)</style>internal-pdf://2405858640/Fülling-2014-699.pdfKWB-documents_20191205.enlEndNote70070032<style face="normal" font="default" size="100%">Untersuchungen zur Morphologie eisenoxidierender Grundwasserbakterien und ihrer Toleranz gegenüber Wasserstoffperoxid</style>internal-pdf://3763317585/Kutun-2010-700.pdfKWB-documents_20191205.enlEndNote70170127<style face="normal" font="default" size="100%">Identification of existing mitigation systems that can attenuate nitrates during high flow events from drained, agricultural fields</style>internal-pdf://3075006591/Périllon-2010-701.pdfKWB-documents_20191205.enlEndNote70270217<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>internal-pdf://0629175243/Weigert-2014-702.pdfKWB-documents_20191205.enlEndNote70370347<style face="normal" font="default" size="100%">Impulses on resource and energy efficient concepts for municipal wastewater treatment plants: the ‘resource / energy’ nexus</style>internal-pdf://2911339867/Lesjean-2014-703.pdfKWB-documents_20191205.enlEndNote70470447<style face="normal" font="default" size="100%">The experience and ambition of KWB in Watershare®</style>internal-pdf://0765190261/Lesjean-2014-704.pdfKWB-documents_20191205.enlEndNote70570547<style face="normal" font="default" size="100%">Challenges and opportunities for P recovery and recycling from municipal wastewater in Europe</style>internal-pdf://0513505548/Kabbe-2014-705.pdfKWB-documents_20191205.enlEndNote70670647<style face="normal" font="default" size="100%">Proof of concept for an innovative energy-positive wastewater treatment scheme</style>internal-pdf://3518260074/Lesjean-2014-706.pdfKWB-documents_20191205.enlEndNote70770747<style face="normal" font="default" size="100%">Energie- und CO2-Bilanz von HTC im Vergleich zu konventionellen Verfahren der Klärschlammbehandlung</style>internal-pdf://1199549953/Lesjean-2014-707.pdfKWB-documents_20191205.enlEndNote70870847<style face="normal" font="default" size="100%">The WellGrapher tool: Connecting land use to well-field water quality</style>internal-pdf://4078613622/Lesjean-2014-708.pdfKWB-documents_20191205.enlEndNote70970947<style face="normal" font="default" size="100%">OptiValves: Enhanced network performance and reduced maintenance cost</style>internal-pdf://3229441596/Rouault-2014-709.pdfKWB-documents_20191205.enlEndNote71071047<style face="normal" font="default" size="100%">CARISMO project: From wastewater treatment plant to power plant</style>internal-pdf://1443619152/Lesjean-2014-710.pdfKWB-documents_20191205.enlEndNote71171117<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen</style>
internal-pdf://2102024956/Barjenbruch-2013-711.pdf
KWB-documents_20191205.enlEndNote71271247<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen - Forschungsprogramm UEP II Berlin</style>internal-pdf://2891585415/Sommer-2014-712.pdfKWB-documents_20191205.enlEndNote71471427<style face="normal" font="default" size="100%">Efficiency of implemented mitigation systems to control diffuse pollution in agricultural landscapes</style>internal-pdf://1073015803/Jacinthe-2014-714.pdfKWB-documents_20191205.enlEndNote71571532<style face="normal" font="default" size="100%">Modelling of Dynamic and Static Adaptation Measures for Combined Sewer System Optimisation: Case-Study of Wilmersdorf Catchment, Berlin</style>internal-pdf://0949679218/Salvan-2014-715.pdfKWB-documents_20191205.enlEndNote71671617<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 1: Probenahme aus dem Filterbereich eines Trinkwasserbrunnens mit neuartigem Unterwasserkamera- und Probenahme-System</style>
internal-pdf://1494341349/Schwarzmüller-2014-716.pdf
KWB-documents_20191205.enlEndNote71771717<style face="normal" font="default" size="100%">Mikrobielle Verockerung in technischen Systemen - Teil 2: Molekularbiologische und mikrobiologische Untersuchungen von Ockerproben</style>
internal-pdf://3553024466/Schröder-2014-717.pdf
KWB-documents_20191205.enlEndNote72172110<style face="normal" font="default" size="100%">Technischer Nachweis eines innovativen Konzepts für ein energie-positives Klärwerk</style>internal-pdf://2531780004/Remy-2014-721.pdfKWB-documents_20191205.enlEndNote72472427<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Technical report -</style>internal-pdf://2440752154/Thomas-2013-724.pdfKWB-documents_20191205.enlEndNote72572527<style face="normal" font="default" size="100%">Hydrogeological and static structural geological model implementation - Modeling Scenarios -</style>internal-pdf://4223856157/Thomas-2014-725.pdfKWB-documents_20191205.enlEndNote72672627<style face="normal" font="default" size="100%">Geological CO2 storage and other emerging subsurface activities - Best practice: monitoring strategy & methods for groundwater protection</style>internal-pdf://0265678973/Menz-2014-726.pdfKWB-documents_20191205.enlEndNote72772747<style face="normal" font="default" size="100%">Auslöser von Alterungsprozessen in Brunnen und deren Verminderung im Betrieb</style>KWB-documents_20191205.enlEndNote73073047<style face="normal" font="default" size="100%">Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen</style>KWB-documents_20191205.enlEndNote73173127<style face="normal" font="default" size="100%">Geological CO2 Storage and Other Emerging Subsurface Activities – Countermeasures against risks arising from shale gas exploration</style>internal-pdf://2153183181/Schwarzmüller-2014-731.pdfKWB-documents_20191205.enlEndNote73373327<style face="normal" font="default" size="100%">Characterization of European managed aquifer recharge (MAR) sites - Analysis</style>internal-pdf://3369859957/Hannappel-2014-733.pdfKWB-documents_20191205.enlEndNote73473417<style face="normal" font="default" size="100%">Hydrogeochemistry of Urban Floodplain Aquifer Under the Influence of Contaminated River Seepage in Delhi (India)</style>
internal-pdf://1463418404/Sprenger-2014-734.pdf
KWB-documents_20191205.enlEndNote73573517<style face="normal" font="default" size="100%">Removal of indigenous coliphages and enteric viruses during riverbank filtration from highly polluted river water in Delhi (India)</style>
internal-pdf://2114453433/Sprenger-2014-735.pdf
KWB-documents_20191205.enlEndNote73673617<style face="normal" font="default" size="100%">Hydrochemistry and stable isotopes during salinity ingress and refreshment in surface- and groundwater from the Arani-Koratallai (A-K) basin north of Chennai (India)</style>
internal-pdf://2451177791/Sprenger-2014-736.pdf
KWB-documents_20191205.enlEndNote73873827<style face="normal" font="default" size="100%">Database of baseline data for study sites - Deliverable 5.1</style>internal-pdf://0144574779/Adlakha-2012-738.pdfKWB-documents_20191205.enlEndNote74674610<style face="normal" font="default" size="100%">Quantifying the effects of urban stormwater management - Towards a novel approach for integrated planning</style>internal-pdf://3201310600/Matzinger-2014-746.pdfKWB-documents_20191205.enlEndNote74774717<style face="normal" font="default" size="100%">New concepts for combined stormwater and wastewater management</style>
internal-pdf://0650846478/Matzinger-2014-747.pdf
KWB-documents_20191205.enlEndNote74874827<style face="normal" font="default" size="100%">Separate Collection of Iodinated X-ray Contrast Media in Hospitals: Phase 2 Implementation</style>internal-pdf://0261279961/Schuster-2006-748.pdfKWB-documents_20191205.enlEndNote74974947<style face="normal" font="default" size="100%">Energiepositive Abwasserreinigung: Das CARISMO-Verfahren und seine Umsetzung in die Praxis</style>internal-pdf://2086079227/Lesjean-2015-749.pdfKWB-documents_20191205.enlEndNote75075017<style face="normal" font="default" size="100%">Hydrothermale Carbonisierung: Eine neue Option der Klärschlammbehandlung? Theoretische Energie/CO2-Bilanz</style>
internal-pdf://0503371832/Remy-2015-750.pdf
KWB-documents_20191205.enlEndNote75175147<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk: Innovative Abwasserbehandlung mit Energiegewinn</style>internal-pdf://3366820555/Remy-2015-751.pdfKWB-documents_20191205.enlEndNote75275247<style face="normal" font="default" size="100%">Evaluating new processes and concepts for energy and resource recovery from municipal wastewater with Life Cycle Assessment</style>internal-pdf://3418488118/Remy-2015-752.pdfinternal-pdf://0762261029/Remy-2015-7521.pdfinternal-pdf://1674086080/Remy-2015-7522.pdfKWB-documents_20191205.enlEndNote75375317<style face="normal" font="default" size="100%">Challenges and opportunities of German-Chinese cooperation in water science and technology</style>
internal-pdf://2120482927/Chen-2015-753.pdf
KWB-documents_20191205.enlEndNote75475432<style face="normal" font="default" size="100%">Vergleichende Untersuchungen zur Abwasserdesinfektion vor einer Nutzung als Bewässerungswasser</style>internal-pdf://3089700122/Graß-2015-754.pdfinternal-pdf://3259635079/DMS Florian Graß.docxKWB-documents_20191205.enlEndNote75575532<style face="normal" font="default" size="100%">Comparison of UV Irradiation and Performic Acid Dosing for Agricultural Wastewater Reuse in Braunschweig</style>internal-pdf://1585398431/Reichelt-2015-755.pdfinternal-pdf://2293646154/DMS Ludwig Reichelt.docxKWB-documents_20191205.enlEndNote75675617<style face="normal" font="default" size="100%">Closing the Nutrient Cycle - Circular Economy Thinking for Phosphorus Recovery</style>
internal-pdf://0178077443/Kabbe-2015-756.pdf
KWB-documents_20191205.enlEndNote75875847<style face="normal" font="default" size="100%">Key Outcomes of FP7 Project P-REX</style>internal-pdf://0411719618/Lesjean-2015-758.pdfKWB-documents_20191205.enlEndNote75975947<style face="normal" font="default" size="100%">Green Jobs with Phosphorus Recycling</style>internal-pdf://1527082761/Lesjean-2015-759.pdfKWB-documents_20191205.enlEndNote76076047<style face="normal" font="default" size="100%">Energiepositive Klärwerke: Innovationsprojekte am Kompetenzzentrum Wasser Berlin</style>internal-pdf://3192183244/Lesjean-2015-760.pdfKWB-documents_20191205.enlEndNote76276217<style face="normal" font="default" size="100%">Nitrate reduction in reactive swales at low temperatures: full-size field system vs. technical scale</style>
internal-pdf://3302723632/Wicke-2015-762.pdf
KWB-documents_20191205.enlEndNote76676647<style face="normal" font="default" size="100%">Review of promising Methods for Phosphorus Recovery and Recycling from Wastewater</style>internal-pdf://2085259822/Kabbe-2015-766.pdfKWB-documents_20191205.enlEndNote76776747<style face="normal" font="default" size="100%">Application of Ultraviolet Absorption Measurement for Closed-loop Control of Tertiary Ozonation</style>internal-pdf://3549719910/Stapf-2015-767.pdfinternal-pdf://3362196797/Stapf-2015-7672.pdfKWB-documents_20191205.enlEndNote76876847<style face="normal" font="default" size="100%">Betriebserfahrungen einer Ozonungsanlage zur Spurenstoffeliminierung mittels SAK</style><style face="subscript" font="default" size="100%">254</style><style face="normal" font="default" size="100%">-Differenz-Regelung</style>internal-pdf://4084496634/Stapf-2015-768.pdfinternal-pdf://3256998600/Stapf-2015-7682.pdfKWB-documents_20191205.enlEndNote77077047<style face="normal" font="default" size="100%">Biocides in urban stormwater - catchment-specific differences and city-wide loads</style>internal-pdf://0216153664/Wicke-2015-770.pdfKWB-documents_20191205.enlEndNote77177132<style face="normal" font="default" size="100%">Risk inventory for impacts of emerging subsurface activities on groundwater</style>internal-pdf://1085163934/Massat-2012-771.pdfKWB-documents_20191205.enlEndNote77477427<style face="normal" font="default" size="100%">Schlussbericht Verbundprojekt Mikrobielle Verockerung, Teilprojekt 5 "Untersuchung der Abhängigkeit zwischen dem Auftreten mikrobieller Verockerung und den hydrochemischen und betrieblichen Eigenschaften von Trinkwasserbrunnen"</style>internal-pdf://4256193931/Schwarzmüller-2014-774.pdfKWB-documents_20191205.enlEndNote77577527<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Zwischenbericht</style>internal-pdf://2628871933/Wicke-2014-775.pdfKWB-documents_20191205.enlEndNote77677627<style face="normal" font="default" size="100%">Abschlussbericht Projekt Abluft „Vorversuche zur Abluftbehandlung auf der Kläranlage Schönerlinde“</style>internal-pdf://2497735255/Schubert-2014-776.pdfKWB-documents_20191205.enlEndNote77877847<style face="normal" font="default" size="100%">Monitoring of runoff water quality from green and gravel roofs with bitumen membranes</style>internal-pdf://3368711269/Schubert-2015-778.pdfKWB-documents_20191205.enlEndNote78078047<style face="normal" font="default" size="100%">How to find suitable locations for in-sewer storage? - Test on a combined sewer catchment in Berlin</style>internal-pdf://0848460257/Philippon-2015-780.pdfKWB-documents_20191205.enlEndNote78178147<style face="normal" font="default" size="100%">A Holistic Assessment Approach to Quantify the Effects of Adaptation Measures on CSO and Flooding</style>internal-pdf://0470580352/Riechel-2015-781.pdfKWB-documents_20191205.enlEndNote78378347<style face="normal" font="default" size="100%">Improving Urban Drainage in face of climate and demographic change: interim results of the joint research project KURAS (Concepts for urban rainwater management, drainage and sewage systems)</style>KWB-documents_20191205.enlEndNote78978947<style face="normal" font="default" size="100%">Is Further Nitrogen Reduction in Surface Waters Economically Feasible?</style>internal-pdf://2858265545/Mutz-2015-789.pdfinternal-pdf://4240354405/Mutz-2015-7892.pdfKWB-documents_20191205.enlEndNote79179147<style face="normal" font="default" size="100%">Austrag und Rückhalt von Mecoprop durch Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://3493310072/Riechel-2015-791.pdfKWB-documents_20191205.enlEndNote79679632<style face="normal" font="default" size="100%">Ökobilanz zu Maßnahmen der Nährstoffreduktion im Kanalnetz</style>internal-pdf://1882960229/Ehrenreich-2015-796.pdfKWB-documents_20191205.enlEndNote79879810<style face="normal" font="default" size="100%">Integrating Ozonation or Adsorption on Activated Carbon into Tertiary Wastewater Treatment: Environmental Impacts with Life Cycle Assessment</style>internal-pdf://3498751120/Mutz-2015-798.pdfinternal-pdf://1787147564/Mutz-2015-7981.pdfinternal-pdf://2421142953/Mutz-2015-7982.pdfKWB-documents_20191205.enlEndNote80180127<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins - Abschlussbericht</style>internal-pdf://0064736445/Wicke-2015-801.pdfKWB-documents_20191205.enlEndNote80580527<style face="normal" font="default" size="100%">Managing Aquifer Recharge - Subsurface treatment, storage and recovery</style>internal-pdf://2143154451/Sprenger-2015-805.pdfKWB-documents_20191205.enlEndNote80680627<style face="normal" font="default" size="100%">Hydraulic characterisation of managed aquifer recharge sites by tracer techniques</style>internal-pdf://4017091132/Sprenger-2015-806.pdfKWB-documents_20191205.enlEndNote80780727<style face="normal" font="default" size="100%">Application of the Australian Guidelines for Water Recycling: Managing Health and Environmental Risks</style>internal-pdf://2926113496/Seis-2015-807.pdfKWB-documents_20191205.enlEndNote80880847<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – Load estimation at city scale</style>internal-pdf://3429111453/Matzinger-2015-808.pdfKWB-documents_20191205.enlEndNote80980947<style face="normal" font="default" size="100%">Monitoring of trace organic contaminants in stormwater runoff from five catchments in Berlin</style>internal-pdf://3490228227/Schubert-2015-809.pdfKWB-documents_20191205.enlEndNote81081047<style face="normal" font="default" size="100%">Towards assessing the relevance of micropollutants in stormwater discharged to Berlin surface waters</style>internal-pdf://3394129082/Wicke-2015-810.pdfKWB-documents_20191205.enlEndNote81181147<style face="normal" font="default" size="100%">Monitoring of catchment-specific micropollutant contamination in stormwater of Berlin</style>internal-pdf://1354080139/Wicke-2015-811.pdfKWB-documents_20191205.enlEndNote81281247<style face="normal" font="default" size="100%">Stormwater runoff leads to pollution peaks in small urban stream</style>internal-pdf://0341552465/Matzinger-2015-812.pdfKWB-documents_20191205.enlEndNote81381317<style face="normal" font="default" size="100%">Life Cycle Assessment modelling of stormwater treatment systems</style>
internal-pdf://3110451928/O'Sullivan-2015-813.pdf
KWB-documents_20191205.enlEndNote81481432<style face="normal" font="default" size="100%">Identification of individual rain events and evaluation of their specific characteristics from pluviograph records: A review with analysis of data from a project investigating micro pollutant loads in Berlin rainwater runoff</style>internal-pdf://3852596911/Masch-2015-814.pdfKWB-documents_20191205.enlEndNote81581532<style face="normal" font="default" size="100%">The influence of rainfall characteristics and further climate properties on trace pollutants in urban stormwater runoff</style>internal-pdf://2557113571/Eichler-2015-815.pdfKWB-documents_20191205.enlEndNote81781732<style face="normal" font="default" size="100%">Phosphorus recovery from wastewater – Risk assessment for recycling in agriculture</style>internal-pdf://3816365239/Kraus-2015-817.pdfKWB-documents_20191205.enlEndNote81881810<style face="normal" font="default" size="100%">P-Rückgewinnung und Recycling in Europa - Schlussfolgerungen aus dem Projekt P-REX</style>internal-pdf://2559516112/Kabbe-2015-818.pdfKWB-documents_20191205.enlEndNote81981927<style face="normal" font="default" size="100%">Quantitative risk assessment of potential hazards for humans and the environment: quantification of potential hazards resulting from agricultural use of the manufactured fertilizers (D9.1)</style>internal-pdf://2439847563/Kraus-2015-819.pdfKWB-documents_20191205.enlEndNote82182127<style face="normal" font="default" size="100%">Life Cycle Assessment of selected processes for P recovery from sewage sludge, sludge liquor, or ash - D9.2</style>internal-pdf://1977294865/Remy-2015-821.pdfKWB-documents_20191205.enlEndNote82382327<style face="normal" font="default" size="100%">Dezentrale Reinigung von Straßenabflüssen (Abschlussbericht) Projektnr: 11315 UEPII/2</style>internal-pdf://3012305287/Barjenbruch-2016-823.pdfKWB-documents_20191205.enlEndNote82682627<style face="normal" font="default" size="100%">Final guidelines for sustainability assessment of water technologies (D51.2)</style>internal-pdf://0239019046/Remy-2015-826.pdfKWB-documents_20191205.enlEndNote82982917<style face="normal" font="default" size="100%">Phosphorus management in Europe in a changing world</style>
internal-pdf://1272963796/Schoumans-2015-829.pdf
KWB-documents_20191205.enlEndNote8308306<style face="normal" font="default" size="100%">Sewage sludge management in Germany</style>internal-pdf://1497578304/Wiechmann-2015-830.pdfKWB-documents_20191205.enlEndNote83183117<style face="normal" font="default" size="100%">Klärschlammmanagement und Phosphorrecycling in Deutschland – Eine Abschätzung von Kosten, Umweltauswirkungen und Konsequenzen der geplanten Novelle der AbfKlärV. </style>
KWB-documents_20191205.enlEndNote83283217<style face="normal" font="default" size="100%">Wie zuverlässig sind Kanalalterungsmodelle?</style>
internal-pdf://4002561504/Caradot-2015-832.pdf
KWB-documents_20191205.enlEndNote83383317<style face="normal" font="default" size="100%">Influence of local calibration on the quality of on-line wet weather discharge monitoring: feedback from five international case studies</style>
internal-pdf://3706132332/Caradot-2015-833.pdf
KWB-documents_20191205.enlEndNote83483447<style face="normal" font="default" size="100%">The potential of deterioration modelling to support sewer asset management</style>internal-pdf://0280321486/Caradot-2015-834.pdfKWB-documents_20191205.enlEndNote83583547<style face="normal" font="default" size="100%">The influence of data availability on the performance of sewer deterioration modelling</style>internal-pdf://1964841889/Caradot-2015-835.pdfKWB-documents_20191205.enlEndNote83683627<style face="normal" font="default" size="100%">Results of sewer deterioration modelling in Braunschweig. Internal Report 2.1</style>internal-pdf://4285449886/Kästner-2015-836.pdfKWB-documents_20191205.enlEndNote83783727<style face="normal" font="default" size="100%">Modelling of asset management strategies in Braunschweig. Internal Report 3</style>internal-pdf://2757923102/Kästner-2015-837.pdfKWB-documents_20191205.enlEndNote83883817<style face="normal" font="default" size="100%">Nutrient Recovery Developments</style>KWB-documents_20191205.enlEndNote83983927<style face="normal" font="default" size="100%">Integral guidance document for phosphorus recovery and recycling D12.1</style>internal-pdf://1591140686/Kabbe-2015-839.pdfKWB-documents_20191205.enlEndNote84384327<style face="normal" font="default" size="100%">Appropriate and user friendly methodologies for Risk assessment, Life Cycle Assessment, and Water Footprinting (D3.1)</style>internal-pdf://0973403531/Seis-2015-843.pdfKWB-documents_20191205.enlEndNote84584527<style face="normal" font="default" size="100%">Weiterentwicklung des Klima- und Ressourceneffizienzpotentials durch HTC-Behandlung ausgewählter Berliner Klärschlämme - HTC-Berlin (11443UEPII/2)</style>internal-pdf://2438919938/Remy-2015-845.pdfKWB-documents_20191205.enlEndNote85185127<style face="normal" font="default" size="100%">Field investigations in Sant Vicenç dels Horts (Barcelona, Spain): MAR effects on groundwater resources</style>internal-pdf://3427990701/Gibert-2015-851.pdfKWB-documents_20191205.enlEndNote85385327<style face="normal" font="default" size="100%">Annual progress report on the implementation of water reuse in El Port de la Selva - 2015</style>internal-pdf://3993566817/Frigola-2015-853.pdfKWB-documents_20191205.enlEndNote85485417<style face="normal" font="default" size="100%">Vergleich von Desinfektionsverfahren für eine landwirtschaftliche Wasserwiederverwendung in Braunschweig</style>
internal-pdf://2415792366/Miehe-2015-854.pdf
KWB-documents_20191205.enlEndNote8558555<style face="normal" font="default" size="100%">Demonstration of a planning instrument for integrated and impact based CSO control under climate change conditions</style>
internal-pdf://0516496904/Riechel-2015-855.pdf
KWB-documents_20191205.enlEndNote8578575<style face="normal" font="default" size="100%">A planning instrument for an integrated and recipient/impact based CSO control under conditions of climate change</style>
internal-pdf://4142838706/Matzinger-2015-857.pdf
KWB-documents_20191205.enlEndNote85885827<style face="normal" font="default" size="100%">Integration der Spurenstoffentfernung in Technologieansätze der 4. Reinigungsstufe bei Klärwerken</style>internal-pdf://3696311816/Jekel-2015-858.pdfKWB-documents_20191205.enlEndNote85985932<style face="normal" font="default" size="100%">Vergleichende Ökobilanzierung verschiedener Maßnahmen der Regenwasserbewirtschaftung</style>internal-pdf://1464085052/Sommer-2015-859.pdfKWB-documents_20191205.enlEndNote86086032<style face="normal" font="default" size="100%">Energie- und Treibhausgasbilanz ausgewählter Szenarien zur Klärschlammentsorgung mit Hydrothermaler Karbonisierung in Berlin</style>internal-pdf://1223307457/Zander-2015-860.pdfKWB-documents_20191205.enlEndNote86186117<style face="normal" font="default" size="100%">Technische Entwicklung in der Tagebauentwässerung - ein Überblick</style>
internal-pdf://0879466699/Reich-2015-861.pdf
KWB-documents_20191205.enlEndNote86286217<style face="normal" font="default" size="100%">Overview of technichal developments in opencast mine drainage at RWE Power AG</style>
internal-pdf://0090003709/Reich-2015-862.pdf
KWB-documents_20191205.enlEndNote86386332<style face="normal" font="default" size="100%">Bewertung des Einflusses dezentraler Regenwasserbewirtschaftungsmaßnahmen auf das Grundwasser anhand ausgewählter Indikatoren </style>KWB-documents_20191205.enlEndNote86586517<style face="normal" font="default" size="100%">Inventory of Managed Aquifer Recharge sites in Europe – historical development, current situation and perspectives</style>
internal-pdf://3302492098/Sprenger-2017-865.pdf
KWB-documents_20191205.enlEndNote86986917<style face="normal" font="default" size="100%">Phosphorrecycling aus Klärschlamm</style>
internal-pdf://3825601838/Kraus-2016-869.pdf
KWB-documents_20191205.enlEndNote87187117<style face="normal" font="default" size="100%">Ozonung für die Abwasserdesinfektion und Spurenstoffentfernung</style>
internal-pdf://2488155815/Gnirß-2016-871.pdf
KWB-documents_20191205.enlEndNote87287217<style face="normal" font="default" size="100%">Application of online UV absorption measurements for ozone process control in secondary effluent with variable nitrite concentration</style>
internal-pdf://2199996736/Stapf-2016-872.pdf
KWB-documents_20191205.enlEndNote87387317<style face="normal" font="default" size="100%">Impacts of combined sewer overflows on a large urban river - Understanding the effect of different management strategies</style>
internal-pdf://1104274690/Riechel-2016-873.pdf
KWB-documents_20191205.enlEndNote87487447<style face="normal" font="default" size="100%">A modelling approach for assessing acute river impacts of realistic stormwater management strategies</style>internal-pdf://1286673172/Riechel-2016-874.pdfKWB-documents_20191205.enlEndNote88088032<style face="normal" font="default" size="100%">Stickstoffentfernung durch Wasserlinsen – Umsetzung eines energieeffizienten Verfahrens zur Reinigung ammoniumreicher Abwässer</style>internal-pdf://3639685532/Heller-2016-880.pdfKWB-documents_20191205.enlEndNote89389327<style face="normal" font="default" size="100%">Comparative Life Cycle Assessment of treatment-recovery paths (D9.2)</style>internal-pdf://0517881557/Remy-2015-893.pdfKWB-documents_20191205.enlEndNote89489417<style face="normal" font="default" size="100%">Vom Klärwerk zum Kraftwerk</style>KWB-documents_20191205.enlEndNote90890810<style face="normal" font="default" size="100%">Phosphorrückgewinnung und -recycling aus Abwasser in Europa</style>internal-pdf://3927592995/Kabbe-2015-908.pdfKWB-documents_20191205.enlEndNote90990947<style face="normal" font="default" size="100%">Integrated modelling and evaluation of adaptation measures in a metropolitan wastewater system</style>KWB-documents_20191205.enlEndNote91091027<style face="normal" font="default" size="100%">D12.2 Pre-requisites and design criteria for new MAR systems in compliance with EU WFD and GWD (including pre-treatment)</style>internal-pdf://1756582157/Huber-2015-910.pdfKWB-documents_20191205.enlEndNote91191127<style face="normal" font="default" size="100%">Unique selling propositions (D51.1)</style>internal-pdf://4200616595/Gross-2015-911.pdfKWB-documents_20191205.enlEndNote91391327<style face="normal" font="default" size="100%">D11.2 Demonstration of MAR effects on groundwater resources – development and application of different approaches for risk and impact assessment</style>internal-pdf://2325174443/de la Loma Gonzalez-2015-913.pdfKWB-documents_20191205.enlEndNote91591527<style face="normal" font="default" size="100%">Field investigations and risk assessment in La Vall d’Uixó (Castellón, Spain)</style>internal-pdf://1923965111/Gibert-2015-915.pdfKWB-documents_20191205.enlEndNote91691617<style face="normal" font="default" size="100%">Semi-Analytical Model for Estimation of Unsteady Seepage from a Large Water Body Influenced by Variable Flows</style>
internal-pdf://3557253739/Ghosh-2015-916.pdf
KWB-documents_20191205.enlEndNote91991917<style face="normal" font="default" size="100%">How to dose powdered activated carbon in deep bed filtration for efficient micropollutant removal</style>
KWB-documents_20191205.enlEndNote92092032<style face="normal" font="default" size="100%">Simulating Different Strategies of Storage Capacity Increase to Reduce Combined Sewer Overflows and Flooding</style>internal-pdf://2777573414/Alem-2015-920.pdfKWB-documents_20191205.enlEndNote92392310<style face="normal" font="default" size="100%">Comparison between different filter systems as a post treatment after tertiary ozonation</style>internal-pdf://1310289891/Stapf-2014-923.pdfinternal-pdf://1412919517/Stapf-2014-9232.pdfKWB-documents_20191205.enlEndNote93193147<style face="normal" font="default" size="100%">Glaskugel- und konventionell geschüttete Vertikalfilterbrunnen: Betrieb und Regenerierung</style>internal-pdf://0674134950/Schwarzmüller-2014-931.pdfKWB-documents_20191205.enlEndNote93493417<style face="normal" font="default" size="100%">Comparing environmental impacts of tertiary wastewater treatment technologies for advanced phosphorus removal and disinfection with life cycle assessment</style>
internal-pdf://1446805903/Remy-2014-934.pdf
KWB-documents_20191205.enlEndNote93593517<style face="normal" font="default" size="100%">Proof of concept for a new energy-positive wastewater treatment scheme</style>
internal-pdf://1449230876/Remy-2014-935.pdf
KWB-documents_20191205.enlEndNote93893817<style face="normal" font="default" size="100%">Bedeutung oxidativer Prozesse in der Trinkwasseraufbereitung und Abwasserreinigung</style>
internal-pdf://1438483705/Prasse-2014-938.pdf
KWB-documents_20191205.enlEndNote93993947<style face="normal" font="default" size="100%">EU project P-REX (2012-2015) Phosphorus recovery from municipal wastewater: from prototype to market, Work area 4: Life Cycle Assessment</style>internal-pdf://0553223698/Mutz-2014-939.pdfinternal-pdf://3444541164/Mutz-2014-9392.pdfKWB-documents_20191205.enlEndNote94494410<style face="normal" font="default" size="100%">Proof of concept for an innovative energy positive wastewater treatment scheme</style>internal-pdf://1837468433/Lesjean-2014-944.pdfKWB-documents_20191205.enlEndNote94794727<style face="normal" font="default" size="100%">Leitfaden: Polare organische Spurenstoffe als Indikatoren im anthropogen beeinflussten Wasserkreislauf</style>internal-pdf://3423964950/Bergmann-2013-947.pdfKWB-documents_20191205.enlEndNote94894827<style face="normal" font="default" size="100%">Documentation of acquired data and conceptual model of MAR impact input for WP5 modelling</style>internal-pdf://4076769171/Boisson-2013-948.pdfKWB-documents_20191205.enlEndNote95095027<style face="normal" font="default" size="100%">Catalogue of European MAR applications</style>internal-pdf://1573163476/Scheibler-2012-950.pdfKWB-documents_20191205.enlEndNote95295227<style face="normal" font="default" size="100%">Report on existing MAR practice and experience in India, especially in Chennai, Maheshwaram, Raipur</style>internal-pdf://3937375269/Ahmed-2012-952.pdfKWB-documents_20191205.enlEndNote95395327<style face="normal" font="default" size="100%">Database of baseline data for study sites</style>internal-pdf://2014418176/Adlakha-2012-953.pdfKWB-documents_20191205.enlEndNote95495427<style face="normal" font="default" size="100%">Preliminary models and system design</style>internal-pdf://0231773736/Adlakha-2012-954.pdfKWB-documents_20191205.enlEndNote95595547<style face="normal" font="default" size="100%">Mikrobielle Verockerung in Trinkwasserbrunnen, im Rohrnetz und an Pumpen - Entwicklung und Bewertung von betrieblichen Gegenmaßnahmen</style>KWB-documents_20191205.enlEndNote95695617<style face="normal" font="default" size="100%">Calibration of UV/Vis spectrophotometers: A review and comparison of different methods to estimate TSS and total and dissolved COD concentrations in sewers, WWTPs and rivers</style>
internal-pdf://2613579970/Lepot-2016-956.pdf
KWB-documents_20191205.enlEndNote95795747<style face="normal" font="default" size="100%">The benefits of deterioration modelling to support sewer asset management strategies</style>internal-pdf://3874975480/Caradot-2016-957.pdfKWB-documents_20191205.enlEndNote95895817<style face="normal" font="default" size="100%">The relevance of sewer deterioration modelling to support asset management strategies</style>
internal-pdf://3403554457/Caradot-2016-958.pdf
KWB-documents_20191205.enlEndNote9619615<style face="normal" font="default" size="100%">Numerical and analytical models for natural water treatment systems in the Indian context </style>
internal-pdf://0581186432/Sprenger-2016-961.pdf
KWB-documents_20191205.enlEndNote96796732<style face="normal" font="default" size="100%">Abschätzung der Verweilzeit bei der Untergrundpassage am Grundwasseranreicherungsstandort Berlin-Spandau anhand der Umwelttracer Temperatur und stabile Isotope - Masterarbeit</style>KWB-documents_20191205.enlEndNote97397317<style face="normal" font="default" size="100%">Hydrogeochemical and isotopic insights into mineralization processes and groundwater recharge from an intermittent monsoon channel to an overexploited aquifer in eastern Haryana (India)</style>KWB-documents_20191205.enlEndNote97497432<style face="normal" font="default" size="100%">Indirect Potable Reuse: A Risk Assessment for Vendée Eau</style>internal-pdf://3354434734/Pacheco Fernández-2016-974.pdfKWB-documents_20191205.enlEndNote97597532<style face="normal" font="default" size="100%">Oxygen delivering processes in groundwater and their relevance for iron-related well clogging processes - A case study on the quaternary aquifers of Berlin</style>internal-pdf://1450158864/Menz-2016-975.pdfKWB-documents_20191205.enlEndNote97697647<style face="normal" font="default" size="100%">Wellbore Skin in Mine Dewatering and Drinking Water Supply: Field Observation, Mineralogy and Hydraulic Effect</style>internal-pdf://3995256054/Weidner-2016-976.pdfKWB-documents_20191205.enlEndNote97797717<style face="normal" font="default" size="100%">Einfluss von Standortfaktoren auf die Brunnenalterung: Klassifizierung der Berliner Trinkwasserbrunnen und Quantifizierung ihres Alterungspotentials</style>
KWB-documents_20191205.enlEndNote97897810<style face="normal" font="default" size="100%">Zielorientierte Regenwasserbewirtschaftung zur Verbesserung der Lebensqualität und der Umweltbedingungen in der Stadt</style>internal-pdf://2836496065/Rouault-2016-978.pdfKWB-documents_20191205.enlEndNote97997947<style face="normal" font="default" size="100%">Improving Decision-Making in Urban Stormwater Management – Strategy and stakeholder process </style>internal-pdf://0728596489/Nickel-2016-979.pdfKWB-documents_20191205.enlEndNote98098017<style face="normal" font="default" size="100%">KURAS - Forschung trifft Praxis: Zukunftsorientierte Anpassung des urbanen Regenwasser- und Abwassermanagements</style>
internal-pdf://0392593573/Mitchell-2016-980.pdf
KWB-documents_20191205.enlEndNote98198147<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung</style>internal-pdf://0642154973/Matzinger-2016-981.pdfKWB-documents_20191205.enlEndNote98298247<style face="normal" font="default" size="100%">Quantification of multiple benefits and cost of stormwater management</style>internal-pdf://2904523385/Matzinger-2016-982.pdfKWB-documents_20191205.enlEndNote98498410<style face="normal" font="default" size="100%">Phosphorrückgewinnung aus Klärschlamm (Praxisbeispiel)</style>KWB-documents_20191205.enlEndNote98598510<style face="normal" font="default" size="100%">34. Bochumer Workshop: Kläranlage der Zukunft - Phosphorrecycling: Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote98698610<style face="normal" font="default" size="100%">Klärschlamm: Phosphorstrategie infolge neuer rechtlicher Regelungen</style>KWB-documents_20191205.enlEndNote98798710<style face="normal" font="default" size="100%">Anforderungen an das P-Recycling</style>KWB-documents_20191205.enlEndNote98898810<style face="normal" font="default" size="100%">Phosphorrecycling – Aktueller Stand und Perspektiven</style>KWB-documents_20191205.enlEndNote98998947<style face="normal" font="default" size="100%">Quantifying microbial contamination in urban stormwater runoff</style>internal-pdf://1065922641/Seis-2016-989.pdfKWB-documents_20191205.enlEndNote99099047<style face="normal" font="default" size="100%">Extent and dynamics of classic and emerging contaminants in stormwater of urban catchment types</style>internal-pdf://2731361818/Wicke-2016-990.pdfKWB-documents_20191205.enlEndNote99199147<style face="normal" font="default" size="100%">Relevanz organischer Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://1227208656/Wicke-2016-991.pdfKWB-documents_20191205.enlEndNote99299210<style face="normal" font="default" size="100%">Temperature measurements during Managed Aquifer Recharge for safeguarding subsurface travel times</style>internal-pdf://1076870471/Sprenger-2016-992.pdfKWB-documents_20191205.enlEndNote99399347<style face="normal" font="default" size="100%">Impacts of suspended solids, water temperature and dilution on TrOC elimination and UVA254 reduction by laboratory scale ozonation of secondary effluent</style>internal-pdf://1235209285/Stapf-2016-993.pdfinternal-pdf://2406816387/Stapf-2016-9932.pdfKWB-documents_20191205.enlEndNote99499427<style face="normal" font="default" size="100%">Optiwells-2 Synthesis report</style>internal-pdf://3078848568/Rustler-2016-994.pdfKWB-documents_20191205.enlEndNote99599532<style face="normal" font="default" size="100%">Spurenstoffelimination mittels Ozon im Labormaßstab unter Berücksichtigung der Wasserqualität sowie weiterer Einflussfaktoren</style>internal-pdf://2116955358/Hilbrandt-2016-995.pdfKWB-documents_20191205.enlEndNote99699617<style face="normal" font="default" size="100%">Einfluss von Ozonung oder Aktivkohleadsorption zur weitergehenden Entfernung organischer Spurenstoffe auf den Energieaufwand und CO2-Fußabdruck einer Kläranlage</style>
internal-pdf://0509980595/Mutz-2017-996.pdf
KWB-documents_20191205.enlEndNote99799717<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>
internal-pdf://0113394616/Wicke-2017-997.pdf
KWB-documents_20191205.enlEndNote99899827<style face="normal" font="default" size="100%">Studie über Effekte und Nebeneffekte bei der Behandlung von kommunalem Abwasser mit Ozon</style>internal-pdf://2569007758/Stapf-2017-998.pdfKWB-documents_20191205.enlEndNote1001100117<style face="normal" font="default" size="100%">Phosphorus recovery from municipal and fertilizer wastewater: China's potential and perspective</style>
KWB-documents_20191205.enlEndNote1004100447<style face="normal" font="default" size="100%">Neue Wege in der Abwassertechnik: Großtechnische Erfahrungen mit dem CARISMO-Verfahren</style>internal-pdf://2743244686/Remy-2017-1004.pdfKWB-documents_20191205.enlEndNote100510055<style face="normal" font="default" size="100%">Life Cycle Assessment of processes for P recycling</style>KWB-documents_20191205.enlEndNote100610065<style face="normal" font="default" size="100%">Assessing environmental impacts and benefits of wastewater treatment plants</style>KWB-documents_20191205.enlEndNote1007100717<style face="normal" font="default" size="100%">Phosphorrückgewinnung in der Praxis – so funktioniert es in den Niederlanden</style>
internal-pdf://0231184458/Kraus-2017-1007.pdf
KWB-documents_20191205.enlEndNote1008100810<style face="normal" font="default" size="100%">Stand und Perspektiven beim Phosphorrecycling</style>KWB-documents_20191205.enlEndNote1009100910<style face="normal" font="default" size="100%">Circular Economy – Challenges and Opportunities for Phosphorus Recovery & Recycling from Wastes in Europe</style>KWB-documents_20191205.enlEndNote101010105<style face="normal" font="default" size="100%">Phosphor – der Flaschenhals des Lebens</style>KWB-documents_20191205.enlEndNote1011101110<style face="normal" font="default" size="100%">Kreislaufwirtschaft? - Von der Phosphorrückgewinnung zum tatsächlichen Recycling</style>KWB-documents_20191205.enlEndNote1012101217<style face="normal" font="default" size="100%">P recovery: from evolution to revolution</style>KWB-documents_20191205.enlEndNote101310135<style face="normal" font="default" size="100%">Circular Economy – Bridging the gap between Phosphorus Recovery and Recycling</style>KWB-documents_20191205.enlEndNote1014101427<style face="normal" font="default" size="100%">Deliverable 1.4 Pretreatment requirements and design guidelines for SAT technologies - DEMOWARE </style>internal-pdf://1270820027/Zietzschmann-2017-1014.pdfKWB-documents_20191205.enlEndNote1016101627<style face="normal" font="default" size="100%">Entwicklung einer Monitoringstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin-Tiefwerder und -Spandau - Schlussbericht T-MON</style>internal-pdf://2764214178/Sprenger-2017-1016.pdfKWB-documents_20191205.enlEndNote1017101732<style face="normal" font="default" size="100%">Untersuchungen der Leistungsfähigkeit von bepflanzten Vertikalbodenfiltern zur Elimination von Spurenstoffen nach der Ozonung im Vergleich zu Sandfiltern</style>internal-pdf://0320872840/Weidlich-2017-1017.pdfKWB-documents_20191205.enlEndNote101810185<style face="normal" font="default" size="100%">Gewässerschutz durch kombinierte dezentrale und zentrale Maßnahmen der Regenwasserbewirtschaftung - Modellstudie am Beispiel Berlins</style>internal-pdf://2258607745/Riechel-2017-1018.pdfKWB-documents_20191205.enlEndNote101910195<style face="normal" font="default" size="100%">Entwicklung und Bewertung von Maßnahmen zur Anpassung der urbanen Abwasserinfrastruktur an die Zukunft</style>internal-pdf://2344459952/Hürter-2017-1019.pdfKWB-documents_20191205.enlEndNote102010205<style face="normal" font="default" size="100%">Maßnahmen der Regenwasserbewirtschaftung – Umfassende Bewertung als Entscheidungshilfe</style>internal-pdf://0408657630/Matzinger-2017-1020.pdfKWB-documents_20191205.enlEndNote1021102117<style face="normal" font="default" size="100%">Integrated planning of urban stormwater management - Introduction to the KURAS-approach from Berlin, Germany</style>internal-pdf://0051027756/Matzinger-2017-1021.pdfKWB-documents_20191205.enlEndNote102210225<style face="normal" font="default" size="100%">Klima- und Demografieszenarien für die urbane Abwasserentsorgung</style>internal-pdf://1922735963/Riechel-2017-1022.pdfKWB-documents_20191205.enlEndNote1023102317<style face="normal" font="default" size="100%">Maßnahmenplanung unter Berücksichtigung der Regenwasserbewirtschaftung - Ergebnisse des Projekts Kuras</style>
internal-pdf://1268359034/Matzinger-2017-1023.pdf
KWB-documents_20191205.enlEndNote1024102417<style face="normal" font="default" size="100%">Die Potenziale der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>
internal-pdf://3960905641/Matzinger-2017-1024.pdf
KWB-documents_20191205.enlEndNote1025102517<style face="normal" font="default" size="100%">Berücksichtigung der vielfältigen Potenziale der Regenwasserbewirtschaftung in der Planung - Ergebnisse aus dem Verbundprojekt KURAS</style>
internal-pdf://0497721304/Matzinger-2017-1025.pdf
KWB-documents_20191205.enlEndNote102610265<style face="normal" font="default" size="100%">Potenziale der Regenwasserbewirtschaftung im Siedlungsbestand</style>internal-pdf://1119512723/Matzinger-2017-1026.pdfKWB-documents_20191205.enlEndNote1027102727<style face="normal" font="default" size="100%">Zielorientierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Ergebnisse des Projektes KURAS</style>internal-pdf://3606472960/Matzinger-2017-1027.pdfKWB-documents_20191205.enlEndNote1028102827<style face="normal" font="default" size="100%">Beschreibung der Schlauchliner in Berlin und statistische Analyse zu Zustand und Schäden - Kurzbericht des Forschungsvorhabens SEMA-Berlin (Memo).</style>internal-pdf://0161460569/Riechel-2017-1028.pdfKWB-documents_20191205.enlEndNote1029102927<style face="normal" font="default" size="100%">Analyse und Modellierung des Zustands von Abwasserkanälen in Berlin - Bericht des Forschungsvorhabens SEMA-Berlin (D2 und D4).</style>internal-pdf://1320530328/Riechel-2017-1029.pdfKWB-documents_20191205.enlEndNote1030103027<style face="normal" font="default" size="100%">Untersuchung der Lebensdauer von Schlauchlinern - Ergebnisse der Literaturrecherche. Bericht des Forschungsvorhabens SEMA-Berlin (D3).</style>internal-pdf://1564324373/Wicke-2017-1030.pdfKWB-documents_20191205.enlEndNote1031103110<style face="normal" font="default" size="100%">Eignung von saisonalen Temperatursignalen zur Überwachung von Grundwasserfließzeiten bei der Uferfiltration und Grundwasseranreicherung in Berlin</style>internal-pdf://0638393930/Schwarzmüller-2017-1031.pdfKWB-documents_20191205.enlEndNote1032103227<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser - Projekt: Wasserwiederverwendung</style>internal-pdf://0464199320/Schwarzmüller-2017-1032.pdfKWB-documents_20191205.enlEndNote1033103327<style face="normal" font="default" size="100%">Zeitreihenanalyse zur Beeinflussung des Teufelsseemoores durch die Grundwasserentnahme - Projekt: Rahmenvertrag WV-GRW</style>internal-pdf://2675449574/Menz-2017-1033.pdfKWB-documents_20191205.enlEndNote1034103427<style face="normal" font="default" size="100%">DEMOWARE D1.2: Report on opportunities for nutrient reduction and recycling in water reuse schemes</style>internal-pdf://1407230585/Van Houtte-2016-1034.pdfKWB-documents_20191205.enlEndNote1035103527<style face="normal" font="default" size="100%">Deliverable D3.3: Generic assessment of treatment trains concerning their environmental impact and risk reduction potential</style>internal-pdf://3372000036/Kraus-2016-1035.pdfKWB-documents_20191205.enlEndNote1036103627<style face="normal" font="default" size="100%">Deliverable D3.2: Show case of the environmental benefits and risk assessment of reuse schemes</style>internal-pdf://2421269347/Kraus-2016-1036.pdfKWB-documents_20191205.enlEndNote1037103727<style face="normal" font="default" size="100%">Deliverable D6.5: Health and environmental risk management for the operation of the greenfield demo site</style>internal-pdf://2716312653/Seis-2016-1037.pdfKWB-documents_20191205.enlEndNote1038103827<style face="normal" font="default" size="100%">Deliverable D5.1: Proposition of POWERSTEP process schemes and WWTP reference models</style>internal-pdf://0900768938/Remy-2016-1038.pdfKWB-documents_20191205.enlEndNote1039103927<style face="normal" font="default" size="100%">POWERSTEP WP3 Biogas Valorization and Efficient Energy Management: Deliverable D3.1: Best practices for improved sludge digestion</style>internal-pdf://0543991017/Remy-2016-1039.pdfKWB-documents_20191205.enlEndNote1041104117<style face="normal" font="default" size="100%">Biozide im Regenwasserabfluss Berlins</style>
internal-pdf://1267174380/Wicke-2017-1041.pdf
KWB-documents_20191205.enlEndNote1042104232<style face="normal" font="default" size="100%">Betriebsverhalten einer kapillaren Nanofiltration zur Sulfatentfernung in der Trinkwasseraufbereitung</style>internal-pdf://3929449002/Hoff-2017-1042.pdfKWB-documents_20191205.enlEndNote1043104347<style face="normal" font="default" size="100%">Micropollutants in stormwater runoff – citywide loads and comparison with sewage inputs.</style>internal-pdf://1489261766/Wicke-2017-1043.pdfKWB-documents_20191205.enlEndNote1044104447<style face="normal" font="default" size="100%">Spurenstoffe im Regenwasserabfluss Berlins</style>internal-pdf://2808576077/Wicke-2017-1044.pdfKWB-documents_20191205.enlEndNote1045104532<style face="normal" font="default" size="100%">Modellierung der Spurenstoffelimination im Klärwerksablauf durch Ozonung im Labormaßstab. Erprobung alternativer Indikatoren zur Abschätzung der Ozon- und OH-Radikalexposition</style>internal-pdf://3341684842/Rau-2017-1045.pdfKWB-documents_20191205.enlEndNote1046104627<style face="normal" font="default" size="100%">NITROLIMIT - Stickstofflimitation in Binnengewässern: Ist Stickstoffreduktion ökologisch sinnvoll und wirtschaftlich vertretbar? Abschlussbericht des BMBF‐Verbundprojekts NITROLIMIT II</style>internal-pdf://3618911338/2016-1046.pdfKWB-documents_20191205.enlEndNote1047104727<style face="normal" font="default" size="100%">Untersuchung des Stickstoffumsatzes im Flusssediment mit vereinfachten Modellansätzen. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kapitel 2.3.2</style>internal-pdf://0392880848/Tatis-Muvdi-2016-1047.pdfKWB-documents_20191205.enlEndNote1048104827<style face="normal" font="default" size="100%">Bewertung umgesetzter urbaner Maßnahmen zur Nährstoffreduktion. NITROLIMIT 2, Gemeinsamer Ergebnisbericht, Kap. 3.1.2</style>internal-pdf://2653823832/Riechel-2016-1048.pdfKWB-documents_20191205.enlEndNote1049104927<style face="normal" font="default" size="100%">Ökobilanz von ausgesuchten Maßnahmen im urbanen Bereich. NITROLIMIT2, Gemeinsamer Ergebnisbericht, Kap. 3.6</style>internal-pdf://3656646906/Mutz-2016-1049.pdfKWB-documents_20191205.enlEndNote1050105047<style face="normal" font="default" size="100%">Quantitative Beschreibung der Resilienz urbaner Wassersysteme</style>internal-pdf://1944797400/Matzinger-2018-1050.pdfKWB-documents_20191205.enlEndNote1051105117<style face="normal" font="default" size="100%">On the implementation of reliable early warning systems at European bathing waters using multivariate Bayesian regression modelling</style>
internal-pdf://0454065717/Seis-2018-1051.pdf
KWB-documents_20191205.enlEndNote1053105327<style face="normal" font="default" size="100%">Phorwärts Abschlussbericht: Ökobilanzieller Vergleich der P-Rückgewinnung aus dem Abwasserstrom mit der Düngemittelproduktion aus Rohphosphaten unter Einbeziehung von Umweltfolgeschäden und deren Vermeidung</style>internal-pdf://2535167896/Kraus-2019-1053.pdfKWB-documents_20191205.enlEndNote105410545<style face="normal" font="default" size="100%">Ökobilanzieller Vergleich der konventionellen P-Düngemittelproduktion aus Rohphosphat mit der Phosphorrückgewinnung aus dem Abwasserpfad</style>KWB-documents_20191205.enlEndNote1055105527<style face="normal" font="default" size="100%">Newfert D6.1: Methodology for LCA and LCC</style>KWB-documents_20191205.enlEndNote1056105627<style face="normal" font="default" size="100%">Newfert D6.2: Environmental Impact for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote1057105717<style face="normal" font="default" size="100%">Phosphorus processing – potentials for higher efficiency</style>
internal-pdf://0910799548/Hermann-2018-1057.pdf
KWB-documents_20191205.enlEndNote1058105827<style face="normal" font="default" size="100%">Newfert D6.3: Cost for innovative secondary nutrient valorization compared to fossil nutrient based fertilizers</style>KWB-documents_20191205.enlEndNote1059105917<style face="normal" font="default" size="100%">Bewertung verschiedener Modellansätze zur Vorhersage des Zustands von Abwasserkanälen am Beispiel von Berlin</style>
internal-pdf://3194698134/Riechel-2018-1059.pdf
KWB-documents_20191205.enlEndNote1060106017<style face="normal" font="default" size="100%">Practical benchmarking of statistical and machine learning models for predicting the condition of sewer pipes in Berlin, Germany</style>
internal-pdf://3644410872/Caradot-2018-1060.pdf
KWB-documents_20191205.enlEndNote1061106110<style face="normal" font="default" size="100%">Relevance of Different CSO Outlets for Bathing Water Quality in a River System</style>internal-pdf://4144312900/Riechel-2018-1061.pdfKWB-documents_20191205.enlEndNote1062106232<style face="normal" font="default" size="100%">Qualitätssicherung von UV-Onlinedaten bei der Ozonierung kommunalen Abwassers - Identifizierung von Fouling mittels Onlinedatenanalyse zur Optimierung der Betriebsführung</style>internal-pdf://4270798414/Mauch-2018-1062.pdfKWB-documents_20191205.enlEndNote1064106427<style face="normal" font="default" size="100%">Challenges and technological approaches for tackling emerging contaminants in drinking and wastewater</style>internal-pdf://1276093834/Stein-2018-1064.pdfKWB-documents_20191205.enlEndNote1065106527<style face="normal" font="default" size="100%">Entwicklung einer Monitorstrategie zur kontinuierlichen Überwachung der Fließzeiten von GWA-Becken und Uferfiltration zu Trinkwasserbrunnen am Beispiel Berlin Tiefwerder und - Spandau - Zusatzbericht zur Bestimmung der thermischen Retardation. Development of a strategy for continuous monitoring of flow times from aquifer recharge and bank filtration to drinking water wells at Berlin Tiefwerder and Spandau - additional report for the determination of thermal retardation</style>internal-pdf://2824906169/Sprenger-2018-1065.pdfKWB-documents_20191205.enlEndNote1066106627<style face="normal" font="default" size="100%">Wissenschaftliche Studie als Argumentationsbasis zur Betroffenheit relevanter Schutzgüter, insbesondere von Grundwasser und Boden, durch die Wiederverwendung von behandeltem Abwasser</style>internal-pdf://0859022840/Schwarzmüller-2018-1066.pdfKWB-documents_20191205.enlEndNote1067106717<style face="normal" font="default" size="100%">Sixty years of global progress in managed aquifer recharge</style>
internal-pdf://0616163992/Dillon-2018-1067.pdf
KWB-documents_20191205.enlEndNote1068106827<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.5: Recommendations for ecoefficient new concepts of energy positive WWTP</style>internal-pdf://2718006125/Remy-2018-1068.pdfKWB-documents_20191205.enlEndNote1069106927<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.4: Technology dossiers to apply for ETV certification and guidelines</style>internal-pdf://2906356714/Remy-2018-1069.pdfKWB-documents_20191205.enlEndNote1070107027<style face="normal" font="default" size="100%">POWERSTEP Deliverable D5.2: Recommendations for WWTP operators, municipalities and WWTP technology providers willing to engage in renewable energy market</style>internal-pdf://0934116392/Helleskov Ravn-2018-1070.pdfKWB-documents_20191205.enlEndNote1071107147<style face="normal" font="default" size="100%">Optimized materials and processes for the separation of microplastic from the water cycle - OEMP</style>internal-pdf://1967949777/Venghaus-2018-1071.pdfKWB-documents_20191205.enlEndNote1072107247<style face="normal" font="default" size="100%">Capillary nanofiltration under anoxic conditions as post-treatment after bank filtration – improvement of chemical cleaning and removal of sulphate and organic micropollutants</style>internal-pdf://2517938294/Jährig-2018-1072.pdfKWB-documents_20191205.enlEndNote1073107317<style face="normal" font="default" size="100%">Capillary Nanofiltration under Anoxic Conditions as Post-Treatment after Bank Filtration</style>
internal-pdf://0024734634/Jährig-2018-1073.pdf
KWB-documents_20191205.enlEndNote1074107432<style face="normal" font="default" size="100%">Optimierung der chemischen Reinigung einer kapillaren Nanofiltration im Pilotmaßstab zur Aufbereitung von anoxischem Grundwasser</style>internal-pdf://0639249289/Rohde-2018-1074.pdfKWB-documents_20191205.enlEndNote1075107527<style face="normal" font="default" size="100%">TestTools – Entwicklung und Validierung von schnellen Testmethoden zum Spurenstoffverhalten in technischen und natürlichen Barrieren des urbanen Wasserkreislaufs</style>internal-pdf://2724954824/Zietzschmann-2018-1075.pdfKWB-documents_20191205.enlEndNote1076107617<style face="normal" font="default" size="100%">Evaluation of uncertainties in sewer condition assessment</style>
KWB-documents_20191205.enlEndNote1077107732<style face="normal" font="default" size="100%">Überflutungskarten anhand von Social Media Daten - Erhebung, Auswertung und Validierung am Beispiel von zwei Starkregenereignissen in Berlin</style>internal-pdf://0512721717/Pilger-2018-1077.pdfKWB-documents_20191205.enlEndNote1078107832<style face="normal" font="default" size="100%">Multivariate Datenanalyse zur Erfassung und Typisierung von Quellen umweltchemischer Frachten im Berliner Regenwasser</style>KWB-documents_20191205.enlEndNote1079107917<style face="normal" font="default" size="100%">Integrierte Planung von Maßnahmen der Regenwasserbewirtschaftung - Anwendung und Weiterentwicklung der "KURAS-Methode" in Berlin</style>
internal-pdf://0296387475/Matzinger-2018-1079.pdf
KWB-documents_20191205.enlEndNote1080108017<style face="normal" font="default" size="100%">Ergebnisse des Projekts KURAS - Integrierte Maßnahmenplanung unter Berücksichtigung der vielfältigen Potentiale der Regenwasserbewirtschaftung</style>
internal-pdf://0099189714/Matzinger-2018-1080.pdf
KWB-documents_20191205.enlEndNote1085108527<style face="normal" font="default" size="100%">Reasons/conditions leading to the choice of the 5 pilots</style>
internal-pdf://1171120802/Loderer-2018-1085.pdf
KWB-documents_20191205.enlEndNote1087108732<style face="normal" font="default" size="100%">Energetic and economic evaluation of different scenarios for a biogas upgrading and power-to-gas technology at a wastewater treatment plant in Berlin</style>
internal-pdf://3050300144/Habibi-2018-1087.pdf
KWB-documents_20191205.enlEndNote1088108827<style face="normal" font="default" size="100%">5 Training Courses in the 5 regions for utility partners and stakeholders on pilotactivities</style>
internal-pdf://4282442590/Müller-2018-1088.pdf
KWB-documents_20191205.enlEndNote1089108927<style face="normal" font="default" size="100%">5 REPORTS ON THE LEGISLATIVE/ADMINISTRATIVE FRAMEWORKS IN THE INVOLVED REGION – STRUCTURE AND QUESTIONNAIRE</style>
internal-pdf://1850729357/Müller-2018-1089.pdf
KWB-documents_20191205.enlEndNote1090109027<style face="normal" font="default" size="100%">D 2.5: Options for nitrogen removal after advanced carbon extraction </style>internal-pdf://4095564387/Christensson-2018-1090.pdfKWB-documents_20191205.enlEndNote1091109127<style face="normal" font="default" size="100%">D2.1 Advanced Control strategy for Nitrogen Removal</style>internal-pdf://3925564112/Schubert-2018-1091.pdfKWB-documents_20191205.enlEndNote1092109227<style face="normal" font="default" size="100%">D 1.3: Compendium of best practices for advanced primary treatment</style>internal-pdf://4112669454/Schubert-2018-1092.pdfKWB-documents_20191205.enlEndNote1093109327<style face="normal" font="default" size="100%">D 1.2: Design and performance of advanced primary treatment with microscreen</style>internal-pdf://0799365965/Olsson-2018-1093.pdfKWB-documents_20191205.enlEndNote1094109432<style face="normal" font="default" size="100%">Bewertung der Mikrosiebung im großtechnischen Maßstab als erweiterte Vorklärung unter biologischen und ökonomischen Aspekten</style>internal-pdf://2258852794/Dühmke-2018-1094.pdfKWB-documents_20191205.enlEndNote1095109532<style face="normal" font="default" size="100%">Application of Duckweed in Wastewater Treatment – an Alternative Method for Nitrogen Removal?</style>internal-pdf://1640061976/Kahlert-2017-1095.pdfKWB-documents_20191205.enlEndNote1096109632<style face="normal" font="default" size="100%">Ressourcenschonende Abwasserbehandlung im ländlichen Raum - Prüfung der Rahmenbedingungen für die technische Umsetzbarkeit eines energieeffizienteren Behandlungskonzeptes</style>internal-pdf://2195152005/Herrmann-2016-1096.pdfKWB-documents_20191205.enlEndNote1097109732<style face="normal" font="default" size="100%">Vergleichende Bilanzierung von zwei SB-Reaktoren der Abwasserreinigung während der straßenweisen Umstellung auf eine erweiterte Vorklärung</style>internal-pdf://0820665524/Franke-2017-1097.pdfKWB-documents_20191205.enlEndNote1098109827<style face="normal" font="default" size="100%">D2.4 Feasibility of mainstream nitrogen removal and biomass production with duckweed bioreactor</style>internal-pdf://1203125622/Loderer-2018-1098.pdfKWB-documents_20191205.enlEndNote1099109917<style face="normal" font="default" size="100%">Nährstoffrückgewinnung aus dem Abwasserstrom</style>
internal-pdf://3399851189/Kleyböcker-2019-1099.pdf
KWB-documents_20191205.enlEndNote1101110147<style face="normal" font="default" size="100%">Resilience of urban drainage systems - Proposition of a quantitative approach</style>internal-pdf://2298431128/Matzinger-2019-1101.pdfKWB-documents_20191205.enlEndNote1102110247<style face="normal" font="default" size="100%">Potenziale grau-grün-blau gekoppelter Wasserinfrastrukturen für die Gestaltung zukunftsfähiger und klimagerechter Städte - Ergebnisse eines strategischen Planungsprozesses in einem Pilotquartier</style>internal-pdf://2382771495/Nenz-2019-1102.PDFinternal-pdf://0123968011/Nenz-2019-11022.pdfKWB-documents_20191205.enlEndNote1103110347<style face="normal" font="default" size="100%">Potenzial von Bilddaten aus sozialen Medien für die urbane Überflutungsvorsorge - Versuch einer Anwendung für zwei extreme Starkregenereignisse in Berlin. </style>internal-pdf://2384799813/Matzinger-2019-1103.pdfKWB-documents_20191205.enlEndNote1104110447<style face="normal" font="default" size="100%">Berücksichtigung vielfältiger Ziele der Regenwasserbewirtschaftung in der Planung - Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://0702068422/Matzinger-2019-1104.pdfKWB-documents_20191205.enlEndNote1105110547<style face="normal" font="default" size="100%">Maßnahmenplanung für die Regenwasserbewirtschaftung in Berlin Ergebnisse der BMBF-Projekte KURAS und netWORKS4</style>internal-pdf://2452402236/Matzinger-2019-1105.pdfKWB-documents_20191205.enlEndNote1106110647<style face="normal" font="default" size="100%">Integration eines partizipativen Ansatzes in den Planungsprozess</style>internal-pdf://2739131427/Nenz-2019-1106.pdfKWB-documents_20191205.enlEndNote1107110747<style face="normal" font="default" size="100%">Neues zur Auswahl geeigneter blau-grau-grüner Infrastrukturen für das Quartier</style>internal-pdf://3358193801/Matzinger-2019-1107.pdfKWB-documents_20191205.enlEndNote1108110827<style face="normal" font="default" size="100%">Optimierte Materialien und Verfahren zur Entfernung von Mikroplastik aus dem Wasserkreislauf - Schlussbericht Verbundprojekt OEMP (Teilprojekt Kompetenzzentrum Wasser Berlin gGmbH)</style>internal-pdf://0572321530/Matzinger-2019-1108.pdfKWB-documents_20191205.enlEndNote1109110927<style face="normal" font="default" size="100%">Einsatzmöglichkeiten für Nährstoffrezyklate im Ökolandbau - Abschlussbericht des Projektes nurec4org</style>internal-pdf://1700780674/Kraus-2019-1109.pdfKWB-documents_20191205.enlEndNote1110111032<style face="normal" font="default" size="100%">The use of deterioration modelling to simulate sewer asset management strategies</style>internal-pdf://3136552709/Caradot-2019-1110.pdfKWB-documents_20191205.enlEndNote1114111417<style face="normal" font="default" size="100%">Effect of temperature on biogas yield increase and formation of refractory COD during thermal hydrolysis of waste activated sludge</style>internal-pdf://4236300079/Toutian-2020-1114.pdfKWB-documents_20191205.enlEndNote1115111547<style face="normal" font="default" size="100%">Einsatz einfacher und kostengünstiger Methoden zur Überwachung von Fließzeiten und Prozessen in der Grundwasseranreicherung</style>internal-pdf://0767020926/Schwarzmüller-2020-1115.pdfKWB-documents_20191205.enlEndNote1116111617<style face="normal" font="default" size="100%">Abschwächung von Klimafolgen bei erhöhter Lebensqualität in der Stadt – das Potenzial von gekoppelten blau-grün-grauen Infrastrukturen</style>internal-pdf://3713978269/Winker-2019-1116.pdfKWB-documents_20191205.enlEndNote1118111817<style face="normal" font="default" size="100%">Planungsprozesse in der wassersensiblen und klimagerechten Stadt – blau-grün-grau gekoppelte Infrastrukturen in der Planungspraxis am Beispiel Berlin</style>internal-pdf://1703333929/Trapp-2019-1118.pdfKWB-documents_20191205.enlEndNote1119111917<style face="normal" font="default" size="100%">Wasser in der Stadt gemeinsam anders denken und planen</style>KWB-documents_20191205.enlEndNote1121112117<style face="normal" font="default" size="100%">Partizipative Regenwasserkonzepte als wirksames Element zur Gestaltung klimaresilienter Städte</style>internal-pdf://0703516760/Funke-2019-1121.pdfKWB-documents_20191205.enlEndNote1122112232<style face="normal" font="default" size="100%">Modellierung und Bewertung von Maßnahmen der dezentralen Regenwasserbewirtschaftung anhand aktueller Planungsvarianten in Berlin-Pankow</style>internal-pdf://3401371783/Funke-2019-1122.pdfKWB-documents_20191205.enlEndNote1124112410<style face="normal" font="default" size="100%">First application of a newly developed field gas extraction device to date old groundwater</style>KWB-documents_20191205.enlEndNote1125112517<style face="normal" font="default" size="100%">EU-Vorhaben Digital-Water.City: Digitale Tools für das Wassermanagement</style>KWB-documents_20191205.enlEndNote1126112627<style face="normal" font="default" size="100%">OptiWells-1 Final Synthesis Report - confidential</style>internal-pdf://1454680212/Staub-2012-1126.pdfKWB-documents_20191205.enlEndNote1127112747<style face="normal" font="default" size="100%">Model-based prediction of pipe age for filling gaps in sewer asset data</style>internal-pdf://1489257713/Riechel-2019-1127.pdfKWB-documents_20191205.enlEndNote1128112847<style face="normal" font="default" size="100%">Organische Spurenstoffe im Regenwasserabfluss Berlins – Jahresfrachten und Vergleich mit Abwassereinträgen</style>internal-pdf://2521957492/Wicke-2019-1128.pdfKWB-documents_20191205.enlEndNote1129112947<style face="normal" font="default" size="100%">Mikroschadstoffe im Regenwasser – Konzentrationen, Frachten und Vergleich mit Emissionen im Schmutzwasser</style>internal-pdf://0640384910/Wicke-2019-1129.pdfKWB-documents_20191205.enlEndNote1130113027<style face="normal" font="default" size="100%">Combining constructed wetlands and engineered treatment for water reuse, report WP3, Deliverable D3.1.</style>internal-pdf://2678269638/Wicke-2019-1130.pdfKWB-documents_20191205.enlEndNote1131113147<style face="normal" font="default" size="100%">Einsatz einer Fluoreszenz-Onlinemessung zur Überwachung einer Ozonung zur Spurenstoffelimination - Betriebserfahrungen und Vergleich zum SAK254</style>internal-pdf://0573880737/Stapf-2019-1131.pdfKWB-documents_20191205.enlEndNote1132113247<style face="normal" font="default" size="100%">Implementation of a fluorescence (FDOM) online measurement at an ozonation plant used for micropollutant elimination – operational aspects and comparison to UVA254, Ozone and Advanced Oxidation. Leading-edge science and technologies</style>internal-pdf://2411923777/Stapf-2019-1132.pdfKWB-documents_20191205.enlEndNote1133113327<style face="normal" font="default" size="100%">Assessment of baseline conditions for all case studies. Deliverable D.1.1.</style>internal-pdf://4179994627/Kleyböcker-2019-1133.pdfKWB-documents_20191205.enlEndNote1134113447<style face="normal" font="default" size="100%">Unterstützung der Kanalsanierungsplanung durch statistische und datengetriebene Alterungsmodelle</style>KWB-documents_20191205.enlEndNote1140114017<style face="normal" font="default" size="100%">Trinkwassergewinnung in urbanen Räumen - Erkenntnisse zur Uferfiltration in Berlin</style>
KWB-documents_20191205.enlEndNote1142114217<style face="normal" font="default" size="100%">Impact-based management of combined sewer overflows – Introduction to a flexible planning instrument</style>
KWB-documents_20191205.enlEndNote1143114317<style face="normal" font="default" size="100%">Modellbasiertes Werkzeug - immissionsbasierte Maßnahmenplanung im Berliner Mischwassersystem</style>
KWB-documents_20191205.enlEndNote1144114417<style face="normal" font="default" size="100%">Large-scale bioreactor pilots for monitoring the long-term hydromechanics of MSW</style>KWB-documents_20191205.enlEndNote1145114517<style face="normal" font="default" size="100%">Combining Ozonation and ceramic membrane filtration for tertiary treatment</style>
KWB-documents_20191205.enlEndNote1146114627<style face="normal" font="default" size="100%">Organic Trace Substances Relevant for Drinking Water – Assessing their Elimination through Bank Filtration. Project acronym: TRACE</style>internal-pdf://2105210140/Krause-2009-1146.pdfKWB-documents_20191205.enlEndNote1147114732<style face="normal" font="default" size="100%">Möglichkeiten der getrennten Erfassung von Arzneimitteln in Krankenhäusern zur Entlastung des Abwassers, am Beispiel der iodorganischen Röntgenkontrastmittel und der Zytostatika</style>KWB-documents_20191205.enlEndNote1148114827<style face="normal" font="default" size="100%">Getrennte Erfassung von jodorganischen Röntgenkontrastmitteln in Krankenhäusern. Abschlussbericht des Forschungsprojektes Phase 2: Praktische Durchführung. Abschlussbericht des Kompetenzzentrum Wasser Berlin</style>internal-pdf://1037062015/Schuster-2006-1148.pdfKWB-documents_20191205.enlEndNote1149114927<style face="normal" font="default" size="100%">Leitfaden für die Sammlung von Patientenurin in Krankenhäusern </style>internal-pdf://4155790509/Heinzmann-2006-1149.pdfKWB-documents_20191205.enlEndNote1150115047<style face="normal" font="default" size="100%">Prévention de la contamination des ressources en eau en milieu rural et semi-rural par les zones tampons. Poster presentation</style>KWB-documents_20191205.enlEndNote1151115117<style face="normal" font="default" size="100%">Spatial Identification and Optimization of Upland Wetlands in Agricultural Watersheds</style>KWB-documents_20191205.enlEndNote1152115247<style face="normal" font="default" size="100%">The Effect of Hydraulic Retention Time and Flow Patch on Ntrate and Atrazine Attenuation in a Bioretention Swale</style>KWB-documents_20191205.enlEndNote1153115347<style face="normal" font="default" size="100%">Zones tampons pour prévenir la pollution diffuse en milieu rural et semi-rural – présentation du projet “Aquisafe“.</style>KWB-documents_20191205.enlEndNote1154115432<style face="normal" font="default" size="100%">Development of a GIS Method to Localize Critical Source Areas of Diffuse Nitrate Pollution – Application to the Ic Catchment, France.</style>KWB-documents_20191205.enlEndNote1155115547<style face="normal" font="default" size="100%">Reduction of non-point source pollution in surface waters – presentation of semi-natural methods with case studies from France and the USA.</style>KWB-documents_20191205.enlEndNote1156115647<style face="normal" font="default" size="100%">Assessment of risks to surface water from diffuse contaminants. </style>KWB-documents_20191205.enlEndNote1157115747<style face="normal" font="default" size="100%">Vegetation effects on nitrogen and carbon cycling in slow sand filters. </style>KWB-documents_20191205.enlEndNote1158115832<style face="normal" font="default" size="100%">Effect of constructed wetlands in retention of agricultural diffuse pollution – two case studies in Brittany (France)</style>KWB-documents_20191205.enlEndNote1159115947<style face="normal" font="default" size="100%">Investigations on glyphosate removal at the UBA experimental field site.</style>KWB-documents_20191205.enlEndNote1160116017<style face="normal" font="default" size="100%">Launch of European initiative to share experiences of struvite-based wastewater phosphate recovery</style>
KWB-documents_20191205.enlEndNote1161116117<style face="normal" font="default" size="100%">Nutrient recovery 2.0</style>
KWB-documents_20191205.enlEndNote1162116217<style face="normal" font="default" size="100%">Support tools to predict the critical structural condition of uninspected pipes for case studies of Germany and Colombia</style>
KWB-documents_20191205.enlEndNote116311635<style face="normal" font="default" size="100%">Verschmutzung von Regenwasser und Mischwasser</style>KWB-documents_20191205.enlEndNote116411645<style face="normal" font="default" size="100%">Review of promising Methods for Phosphorus Recovery and Recycling from Wastewater</style>KWB-documents_20191205.enlEndNote1165116547<style face="normal" font="default" size="100%">Market prospects of low pressure membrane filtration systems for water purification</style>KWB-documents_20191205.enlEndNote1166116647<style face="normal" font="default" size="100%">Water and Energy nexus as potential industrial breakthrough</style>KWB-documents_20191205.enlEndNote1167116747<style face="normal" font="default" size="100%">Submicron particle analysis to characterize fouling in tertiary membrane filtration</style>KWB-documents_20191205.enlEndNote1168116847<style face="normal" font="default" size="100%">Online analysis of the nanoparticles to prevent membrane fouling by a secondary effluent</style>KWB-documents_20191205.enlEndNote1169116947<style face="normal" font="default" size="100%">Driving factors for water research – from local to global</style>KWB-documents_20191205.enlEndNote1170117047<style face="normal" font="default" size="100%">Zustandserfassung von Kanalnetzen</style>KWB-documents_20191205.enlEndNote1171117147<style face="normal" font="default" size="100%">Market prospects of low pressure membrane filtration systems for wastewater treatment</style>KWB-documents_20191205.enlEndNote1172117247<style face="normal" font="default" size="100%">Operational experience of containerised sequencing batch MBR plant for semi-decentralised areas reaching high effluent requirements</style>KWB-documents_20191205.enlEndNote1173117347<style face="normal" font="default" size="100%">Energetic comparison of advanced oxidation processes</style>KWB-documents_20191205.enlEndNote1174117447<style face="normal" font="default" size="100%">Untersuchung der Auswirkungen von Mischwasserüberläufen auf ein Fließgewässer am Beispiel der Spree</style>KWB-documents_20191205.enlEndNote1175117547<style face="normal" font="default" size="100%">Submicron particle analysis to characterize fouling in tertiary membrane filtration</style>KWB-documents_20191205.enlEndNote1177117747<style face="normal" font="default" size="100%">Grundlagen der Kanalnetzsimulation</style>KWB-documents_20191205.enlEndNote1178117827<style face="normal" font="default" size="100%">Integration and Consolidation of Information on Pharmaceutical Residues in the Urban Water Cycle - IC Pharma Final Project Report </style>internal-pdf://1454762948/Seeber-2010-1178.pdfKWB-documents_20191205.enlEndNote1179117927<style face="normal" font="default" size="100%">Substances to be Targeted in Laboratory and Technical Scale Experiments Project OXIRED, Deliverable 1.1a - Interim Report Phase 1</style>internal-pdf://3512566455/Wiese-2009-1179.pdfKWB-documents_20191205.enlEndNote1180118047<style face="normal" font="default" size="100%">Best data handling practices in water-related research. </style>KWB-documents_20191205.enlEndNote1181118127<style face="normal" font="default" size="100%">Erweiterte Kurzfassung Projekt: WELLMA1</style>internal-pdf://4170873677/Schwarzmüller-2011-1181.pdfKWB-documents_20191205.enlEndNote1182118247<style face="normal" font="default" size="100%">The influence of local calibration on the quality of UV-VIS spectrometer measurements in urban stormwater monitoring</style>KWB-documents_20191205.enlEndNote1183118347<style face="normal" font="default" size="100%">The evaluation of rainfall influence on CSO characteristics: the Berlin case study</style>KWB-documents_20191205.enlEndNote1184118447<style face="normal" font="default" size="100%">Influence of local calibration on the quality of on-line wet weather discharge monitoring: feedback from five international case studies.</style>KWB-documents_20191205.enlEndNote1185118547<style face="normal" font="default" size="100%">What is the reliability of sewer deterioration models?</style>KWB-documents_20191205.enlEndNote1186118647<style face="normal" font="default" size="100%">Wie zuverlässig sind Kanalalterungsmodelle</style>KWB-documents_20191205.enlEndNote1187118747<style face="normal" font="default" size="100%">EU project DEMEAU (2012-2015) Demonstration of promising technologies to address emerging pollutants in water and wastewater, Work area 5: Fostering the uptake of novel technologies in the water sector</style>KWB-documents_20191205.enlEndNote1188118847<style face="normal" font="default" size="100%">Ist eine weitergehende Stickstoffentfernung in die Gewässer ökonomisch sinnvoll?</style>KWB-documents_20191205.enlEndNote1189118947<style face="normal" font="default" size="100%">Total environmental profile of processes for P recovery from sewage sludge, liquor or ash with LCA</style>KWB-documents_20191205.enlEndNote1190119047<style face="normal" font="default" size="100%">Circular economy - challenges and opportunities for phosphorus recycling</style>KWB-documents_20191205.enlEndNote1191119147<style face="normal" font="default" size="100%">Wrap your model in an R package! </style>internal-pdf://3829176425/Rustler-2016-1191.pdfKWB-documents_20191205.enlEndNote1192119247<style face="normal" font="default" size="100%">Einfluss von Standortfaktoren auf die Brunnenalterung: Klassifizierung der Berliner Brunnen und Quantifizierung ihres Alterungspotentials</style>KWB-documents_20191205.enlEndNote1193119347<style face="normal" font="default" size="100%">From CCTV data to strategic planning: deterioration modelling for large sewer networks in Germany and Colombia</style>KWB-documents_20191205.enlEndNote1194119410<style face="normal" font="default" size="100%">Optimizing SVM Model as Predicting Model for Sewer Pipes in the Two Main Cities in Colombia</style>KWB-documents_20191205.enlEndNote1196119632<style face="normal" font="default" size="100%">Einsatz von Bodenfiltern zur biologischen Nachbehandlung ozonierten Abwassers</style>KWB-documents_20191205.enlEndNote1197119732<style face="normal" font="default" size="100%">Bio-acidification and phosphorus-recovery potential from mixed excess and primary sludge in sewage treatment plants with biological and chemical phosphours removal.</style>KWB-documents_20191205.enlEndNote1198119832<style face="normal" font="default" size="100%">Inbetriebnahme und Bewertung einer SBR-Pilotanlage zur Behandlung von kommunalem Abwasser mittels granuliertem Belebtschlamm-Verfahren</style>KWB-documents_20191205.enlEndNote1199119927<style face="normal" font="default" size="100%">Grundstücksentwässerungsanlagen - Report Project acronym: GStEW</style>internal-pdf://3738032376/Uldack-2012-1199.pdfKWB-documents_20191205.enlEndNote1200120027<style face="normal" font="default" size="100%">Rahmenbedingungen für die umweltgerechte Nutzung von behandeltem Abwasser zur landwirtschaftlichen Bewässerung</style>internal-pdf://0251151893/Seis-2016-1200.pdfKWB-documents_20191205.enlEndNote1201120127<style face="normal" font="default" size="100%">Info-Broschüre: Einsatzmöglichkeiten für Nährstoffrezyklate im Ökolandbau (Projekt nurec4org)</style>internal-pdf://0753452067/nurec4org-2018-1201.pdfKWB-documents_20191205.enlEndNote1202120232<style face="normal" font="default" size="100%">Kapillare Nanofiltration im Pilotmaßstab zur Aufbereitung von Wasser unterschiedlicher Qualitäten – Untersuchungen hinsichtlich Rückhalt, Reinigungsstrategien, Energieverbrauch und Reinigungskosten</style>KWB-documents_20191205.enlEndNote1203120332<style face="normal" font="default" size="100%">Performance evaluation of constructed wetlands combined with engineered systems for water reuse</style>KWB-documents_20191205.enlEndNote1204120432<style face="normal" font="default" size="100%">Assessment of direct greenhouse gas emissions from a pilot-scale aerobic granular sludge reactor treating domestic wastewater</style>KWB-documents_20191205.enlEndNote1205120532<style face="normal" font="default" size="100%">Beurteilung von Managementmaßnahmen am Berliner Halensee</style>KWB-documents_20191205.enlEndNote1206120632<style face="normal" font="default" size="100%">Kalibrierung eines Schmutzfrachtmodells mit InfoWorks CS - Sensitivitätsanalyse und Kalibrierung</style>KWB-documents_20191205.enlEndNote1207120717<style face="normal" font="default" size="100%">Prediction of fecal indicator organism concentrations in rivers: the shifting role of environmental factors under varying flow conditions</style>
internal-pdf://3829176424/Herrig-2019-1207.pdfinternal-pdf://0719885386/Herrig-2019-12072.pdf
KWB-documents_20191205.enlEndNote1208120817<style face="normal" font="default" size="100%">Risk management and environmental benefits of a prospective system for indirect potable reuse of municipal wastewater in France</style>
internal-pdf://3829176423/Remy-2019-1208.pdf
KWB-documents_20191205.enlEndNote1209120917<style face="normal" font="default" size="100%">Neues Frühwarnsystem zur Belastung von Badestellen</style>KWB-documents_20191205.enlEndNote1210121017<style face="normal" font="default" size="100%">Entwicklung eines Frühwarnsystems für die Berliner Unterhavel</style>KWB-documents_20191205.enlEndNote1211121117<style face="normal" font="default" size="100%">Systematic Review of Toxicity Removal by Advanced Wastewater Treatment Technologies via Ozonation and Activated Carbon</style>
KWB-documents_20191205.enlEndNote1212121217<style face="normal" font="default" size="100%">Comparative environmental life cycle assessment of phosphorus recovery with different generations of the AirPrex® systems</style>
KWB-documents_20191205.enlEndNote1214121427<style face="normal" font="default" size="100%">Effectiveness of Riparian Zones in Contaminant Mitigation Project acronym: AQUISAFE 1</style>internal-pdf://1350490027/Vidon-2009-1214.pdfKWB-documents_20191205.enlEndNote1215121527<style face="normal" font="default" size="100%">Comparative study of small wastewater treatment technologies under special operation conditions COMPAS</style>internal-pdf://3862120563/Barjenbruch-2009-1215.pdfKWB-documents_20191205.enlEndNote1216121627<style face="normal" font="default" size="100%">PROJECT AMEDEUS “ACCELERATE MEMBRANE DEVELOPMENT FOR URBAN SEWAGE PURIFICATION” FINAL ACTIVITY REPORT</style>internal-pdf://3797244140/Lesjean-2010-1216.pdfKWB-documents_20191205.enlEndNote1217121727<style face="normal" font="default" size="100%">Report on efficient design of mitigation zones for pesticide removal</style>internal-pdf://3829176422/Krause Camilo-2014-1217.pdfKWB-documents_20191205.enlEndNote1218121827<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur-Einzelmaßnahmen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://3829176421/Rouault-2016-1218.pdfKWB-documents_20191205.enlEndNote1219121927<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur- Leitfaden zum methodischen Vorgehen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://0719885384/Rouault-2016-1219.pdfKWB-documents_20191205.enlEndNote1220122027<style face="normal" font="default" size="100%">Zukunftsorientierte Anpassung der urbanen Abwasserinfrastruktur-Maßnahmenkombinationen. Projekt KURAS, Schwerpunkt “Abwassersysteme”</style>internal-pdf://3172686010/Rouault-2016-1220.pdfKWB-documents_20191205.enlEndNote1221122147<style face="normal" font="default" size="100%">Kann die Kohle nachhaltig sein? – Einsatz von Aktivkohle zur Elimination von Spurenstoffen aus kommunalem Abwasser</style>KWB-documents_20191205.enlEndNote1222122247<style face="normal" font="default" size="100%">How can condition assessment uncertainty impact sewer deterioration modelling? </style>KWB-documents_20191205.enlEndNote1223122347<style face="normal" font="default" size="100%">Comparative cost estimations of full-scale phosphorus recovery processes in German wastewater treatment plants</style>KWB-documents_20191205.enlEndNote1224122447<style face="normal" font="default" size="100%">Neue Prognose-Instrumente zur Vorhersage der Hygiene von Badegewässern</style>KWB-documents_20191205.enlEndNote1225122547<style face="normal" font="default" size="100%">Kapillare Nanofiltration zur Behandlung von anoxischem Grundwasser und Uferfiltrat</style>KWB-documents_20191205.enlEndNote1226122647<style face="normal" font="default" size="100%">Die Vorgaben der Klärschlammverwertung zur Phosphorrückgewinnung – ein Interpretationsversuch</style>KWB-documents_20191205.enlEndNote1227122747<style face="normal" font="default" size="100%">Extensive Green Roof Performance and Design under Different Climatic Conditions-Analyses from China and Germany</style>KWB-documents_20191205.enlEndNote1228122847<style face="normal" font="default" size="100%">Compliance of combined nature-based and engineered systems with European water reuse regulations</style>KWB-documents_20191205.enlEndNote1229122947<style face="normal" font="default" size="100%">Life Cycle Assessment of material recovery from municipal wastewater: circular economy with environmental benefits?</style>KWB-documents_20191205.enlEndNote1230123047<style face="normal" font="default" size="100%">Handling biased and incomplete sewer asset data for deterioration modelling</style>KWB-documents_20191205.enlEndNote1231123147<style face="normal" font="default" size="100%">Gebührenstabilität durch Asset Management?</style>KWB-documents_20191205.enlEndNote1232123247<style face="normal" font="default" size="100%">Implementation of reliable early warning systems at European bathing waters using multivariate Bayesian regression modelling</style>KWB-documents_20191205.enlEndNote1233123347<style face="normal" font="default" size="100%">Improvement of probabilistic QMRA by quantitative integration of external information using Bayesian hierarchical modelling</style>KWB-documents_20191205.enlEndNote1234123447<style face="normal" font="default" size="100%">Rolling literature review on pathogen reduction by water treatment processes</style>KWB-documents_20191205.enlEndNote1235123547<style face="normal" font="default" size="100%">Untersuchung des Foulingverhaltens von UV-Onlinesonden im Betrieb einer Ozonung auf Kläranlagen</style>KWB-documents_20191205.enlEndNote1236123647<style face="normal" font="default" size="100%">Extensive Green Roof Performance and Design under Different Climatic Conditions-Analyses from China and Germany</style>KWB-documents_20191205.enlEndNote1237123727<style face="normal" font="default" size="100%">Monitoring of Water Quality Parameters in Combined Sewer Overflows </style>internal-pdf://3592461291/Rouault-2009-1237.pdfKWB-documents_20191205.enlEndNote1239123927<style face="normal" font="default" size="100%">EXTENDED SUMMARY Project acronym: WellMa1</style>internal-pdf://2906118969/Schwarzmüller-2011-1239.pdfKWB-documents_20191205.enlEndNote1240124027<style face="normal" font="default" size="100%">RÉSUMÉ ÉTENDU Projet: WELLMA1</style>internal-pdf://2976402389/Schwarzmüller-2012-1240.pdfKWB-documents_20191205.enlEndNote1241124127<style face="normal" font="default" size="100%">Blau-grün-graue Infrastrukturen vernetzt planen und umsetzen. Ein Beitrag zur Klimaanpassung in Kommunen</style>internal-pdf://3494418066/Anterola-2020-1241.pdfKWB-documents_20191205.enlEndNote1242124227<style face="normal" font="default" size="100%">Fokusgebiet Sanierung und Erweiterung einer Kindertagesstätte. Arbeitshilfe für die Planung blau-grün-grau gekoppelter Infrastrukturen in der wassersensiblen Stadt</style>internal-pdf://3529221289/Reichmann-2020-1242.pdfKWB-documents_20191205.enlEndNote1243124327<style face="normal" font="default" size="100%">WELLMA Decision Support Tool: Manual</style>internal-pdf://0675192179/Schwarzmüller-2013-1243.pdfKWB-documents_20191205.enlEndNote1244124427<style face="normal" font="default" size="100%">WELLMA - outil d’aide á la décision- mode d'emploi</style>internal-pdf://0794933742/Schwarzmüller-2013-1244.pdfKWB-documents_20191205.enlEndNote1245124517<style face="normal" font="default" size="100%">Nutrient retention by the littoral vegetation of a large lake: Can Lake Ohrid cope with current and future loading? </style>internal-pdf://0128472978/Vermaat-2020-1245.pdfKWB-documents_20191205.enlEndNote1246124617<style face="normal" font="default" size="100%">Combined sewer overflows: A critical review on best practice and innovative solutions to mitigate impacts on environment and human health</style>
internal-pdf://1769527655/Botturi-2020-1246.pdf
KWB-documents_20191205.enlEndNote1247124717<style face="normal" font="default" size="100%">Projekt REEF 2W – energetische Potenziale ausschöpfen</style>
internal-pdf://2707206542/Habibi-2020-1247.pdf
KWB-documents_20191205.enlEndNote1248124817<style face="normal" font="default" size="100%">Das Mikrosieb als Vorklärung zur Verringerung des Energiebedarfs kleiner Kläranlagen</style>
internal-pdf://4013204759/Schubert-2020-1248.pdf
\ No newline at end of file diff --git a/inst/extdata/read_sqlite_file.R b/inst/extdata/read_sqlite_file.R index 21b7471..ff58aff 100644 --- a/inst/extdata/read_sqlite_file.R +++ b/inst/extdata/read_sqlite_file.R @@ -7,22 +7,29 @@ # #install.packages("RSQLite") -library(DBI) +#library(DBI) + +grammar <- list( + dms = "~/Projekte2/dms", + dms_hs = "~/../Downloads/endnote-db/KWB-documents_20191205.Data/sdb", + sdb = "/sdb.eni", + pdb = "/pdb.eni" +) + +#paths <- kwb.utils::resolve(grammar, root = "dms") +paths <- kwb.utils::resolve(grammar, root = "dms_hs") # Create an ephemeral in-memory RSQLite database -#con <- dbConnect(RSQLite::SQLite(), "~/Projekte2/dms/pdb.eni") -con <- dbConnect(RSQLite::SQLite(), "~/Projekte2/dms/sdb.eni") +con <- DBI::dbConnect(RSQLite::SQLite(), paths$pdb) -table_names <- dbListTables(con) +table_names <- DBI::dbListTables(con) -contents <- lapply(setNames(nm = table_names), dbReadTable, con = con) +contents <- lapply(setNames(nm = table_names), DBI::dbReadTable, con = con) -str(contents, 2) +write.csv2(contents$pdf_index[, c(1, 3, 5)], "~/tmp/pdf_index.csv") x <- contents$refs[, c("id", "keywords")] -View(x) - #write.csv(x, "keywords.csv", row.names = FALSE) -dbDisconnect(con) +DBI::dbDisconnect(con) diff --git a/man/check_for_differences.Rd b/man/check_for_differences.Rd index aa80abb..40c179d 100644 --- a/man/check_for_differences.Rd +++ b/man/check_for_differences.Rd @@ -28,8 +28,8 @@ Check two Dataframes for Differences ### Check differences between two different versions of "KWB_documents.xml" ############################################################################ -old_xml <- extdata_file("2019-01-14_KWB_documents.xml") -new_xml <- extdata_file("2019-07-09_KWB_documents.xml") +old_xml <- extdata_file("2020-05-25_KWB-documents.xml") +new_xml <- extdata_file("2020-06-17_KWB-documents.xml") old_list <- kwb.endnote::create_endnote_list(old_xml) new_list <- kwb.endnote::create_endnote_list(new_xml) old_df <- kwb.endnote::create_references_df(old_list) diff --git a/man/get_authors.Rd b/man/get_authors.Rd index 9e9e11d..c72fc1f 100644 --- a/man/get_authors.Rd +++ b/man/get_authors.Rd @@ -4,8 +4,12 @@ \alias{get_authors} \title{Helper function: get authors from list for a reference} \usage{ -get_authors(record_list, col_name = "author", - extract_value = "authors", collapse = FALSE) +get_authors( + record_list, + col_name = "author", + extract_value = "authors", + collapse = FALSE +) } \arguments{ \item{record_list}{list with one record of create_endnote_list()} diff --git a/man/get_keywords.Rd b/man/get_keywords.Rd index 20ee78d..acc14be 100644 --- a/man/get_keywords.Rd +++ b/man/get_keywords.Rd @@ -4,8 +4,12 @@ \alias{get_keywords} \title{Helper function: get keywords from list for a reference} \usage{ -get_keywords(record_list, col_name = "keyword", - extract_value = "keywords", collapse = FALSE) +get_keywords( + record_list, + col_name = "keyword", + extract_value = "keywords", + collapse = FALSE +) } \arguments{ \item{record_list}{list with one record of create_endnote_list()} diff --git a/man/pipe.Rd b/man/pipe.Rd index b7daf6a..0eec752 100644 --- a/man/pipe.Rd +++ b/man/pipe.Rd @@ -7,6 +7,6 @@ lhs \%>\% rhs } \description{ -See \code{magrittr::\link[magrittr]{\%>\%}} for details. +See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. } \keyword{internal} diff --git a/man/write_clean_references_df_to_xlsx.Rd b/man/write_clean_references_df_to_xlsx.Rd index 18e6399..307ea46 100644 --- a/man/write_clean_references_df_to_xlsx.Rd +++ b/man/write_clean_references_df_to_xlsx.Rd @@ -4,9 +4,14 @@ \alias{write_clean_references_df_to_xlsx} \title{Write Clean References Dataframe to XLSX} \usage{ -write_clean_references_df_to_xlsx(endnote_list, - file = default_clean_xlsx(endnote_list), export_dir = ".", - give_hints = FALSE, dbg = TRUE, ...) +write_clean_references_df_to_xlsx( + endnote_list, + file = default_clean_xlsx(endnote_list), + export_dir = ".", + give_hints = FALSE, + dbg = TRUE, + ... +) } \arguments{ \item{endnote_list}{list created with create_endnote_list()} diff --git a/man/write_references_df_to_xlsx.Rd b/man/write_references_df_to_xlsx.Rd index f59d29e..0f37fc1 100644 --- a/man/write_references_df_to_xlsx.Rd +++ b/man/write_references_df_to_xlsx.Rd @@ -4,9 +4,13 @@ \alias{write_references_df_to_xlsx} \title{Write References Dataframe to XLSX} \usage{ -write_references_df_to_xlsx(endnote_list, - file = default_xlsx(endnote_list), export_dir = ".", dbg = TRUE, - ...) +write_references_df_to_xlsx( + endnote_list, + file = default_xlsx(endnote_list), + export_dir = ".", + dbg = TRUE, + ... +) } \arguments{ \item{endnote_list}{list created with create_endnote_list()} diff --git a/vignettes/analyse-endnote.Rmd b/vignettes/analyse-endnote.Rmd index 122a156..a0ae2ce 100644 --- a/vignettes/analyse-endnote.Rmd +++ b/vignettes/analyse-endnote.Rmd @@ -24,7 +24,8 @@ library(kwb.endnote) endnote_xml <- kwb.endnote::default_xml() -references_df <- kwb.endnote::create_df_from_endnote_xml(endnote_xml) +references_df <- kwb.endnote::create_df_from_endnote_xml(endnote_xml) %>% + dplyr::filter(.data$ref_type_name != "Generic") n_publications <- length(unique(references_df$record_id)) ``` @@ -47,65 +48,70 @@ knitr::kable(refs_by_type) ## By Year -```{r echo=TRUE} -endnote_list <- kwb.endnote::create_endnote_list(endnote_xml) -refs_df <- kwb.endnote::create_references_df(endnote_list) -refs_by_year <- refs_df %>% -dplyr::count(ref_type_name, year) - -knitr::kable(refs_by_year) -``` - ```{r echo=TRUE, fig.width=8, fig.height=9} +endnote_list <- kwb.endnote::create_endnote_list(endnote_xml) +refs_df <- kwb.endnote::create_references_df(endnote_list) -kwb.endnote::plot_pubs_by_year(refs_df) +p1 <- kwb.endnote::plot_pubs_by_year(refs_df) +plotly::ggplotly(p1) ``` -## By Keywords +## By Language ```{r echo=TRUE} +refs_by_language <- refs_df %>% +dplyr::count(language) %>% +dplyr::mutate(percent = round(100*n/nrow(refs_df), 1)) - keywords_df <- kwb.endnote::create_keywords_df(references_df) - - keywords_df %>% - dplyr::filter(.data$n > 1) %>% - knitr::kable() + +knitr::kable(refs_by_language) ``` -Create a word cloud for the keywords + -```{r echo=TRUE, fig.width=7, fig.height=7} + + + -kwb.endnote::plot_wordcloud_keywords(keywords_df) -``` + + + + -## Which fields are filled? + -## Ordered Alphabetically -```{r echo=TRUE} -references_df %>% -dplyr::count(key1, key2, key3, key4) %>% -knitr::kable() -``` + + + + -## Ordered By Frequency -```{r echo=TRUE} -references_df %>% -dplyr::count(key1, key2, key3, key4) %>% -dplyr::arrange(dplyr::desc(n)) %>% -knitr::kable() -``` + -## Ordered By Ref Type Name and Frequency + + + + + + -```{r echo=TRUE} -references_df %>% -dplyr::count(ref_type_name, key1, key2, key3, key4) %>% -dplyr::arrange(ref_type_name, dplyr::desc(n)) %>% -knitr::kable() -``` + + + + + + + + + + + + + + + + ## Has an Abstract? @@ -113,7 +119,7 @@ knitr::kable() ```{r echo=TRUE} refs_with_abstract <- references_df %>% dplyr::filter(.data$key1 == "abstract") %>% - dplyr::count(.data$record_id, .data$rec_number, .data$ref_type_name) + dplyr::count(.data$record_id, .data$rec_number, .data$ref_type_name) n_pubs_with_abstract <- nrow(refs_with_abstract) ### Percent of Publications with Abstracts @@ -144,38 +150,38 @@ These need to be corrected manually! ## By Accessibility Level -Is the accessibility level for the referenc defined in the fiel"custom3" +Is the accessibility level for the referenc defined in the fiel"caption" (confidential or not?) ```{r echo=TRUE} -refs_with_accessability_level <- references_df %>% - dplyr::filter(.data$key1 == "custom3") %>% - dplyr::count(.data$value) +refs_with_accessability_level <- refs_df %>% + dplyr::count(.data$caption) %>% + dplyr::mutate(percent = round(100*n/nrow(refs_df), 1)) + -n_pubs_with_accessability_level <- sum(refs_with_accessability_level$n) +n_pubs_with_accessability_level <- sum(refs_with_accessability_level$n[1:2]) percent_with_accessibility_level <- round(100*n_pubs_with_accessability_level/n_publications, 1) + +is_confidential <- refs_with_accessability_level$caption=="confidential" & !is.na(refs_with_accessability_level$caption) + + knitr::kable(refs_with_accessability_level) -is_confidential <- grepl(paste(c("conf", "PU", "intern", "private"), collapse="|"), - refs_with_accessability_level$value) -n_pubs_confidential <-sum(refs_with_accessability_level$n[is_confidential]) -### in percent -percent_confidential <- 100*sum(refs_with_accessability_level$n[is_confidential])/n_pubs_with_accessability_level ``` Only for `r n_pubs_with_accessability_level` (i.e. `r percent_with_accessibility_level` percent) meta information on the accessibility level is explicitly defined, out of which -`r n_pubs_confidential` are defined as confidential (i.e. -`r round(percent_confidential,1)` of the publications with metadata on the +`r refs_with_accessability_level$n[is_confidential]` are defined as confidential (i.e. +`r refs_with_accessability_level$percent[is_confidential]` of the publications with metadata on the accessibility level). **Recommendation:** -Fill the field **custom3** for all publications with either: +Fill the field **caption** for all publications with either: - **public** or @@ -186,11 +192,10 @@ Fill the field **custom3** for all publications with either: ## By Project -Group references by "custom2" (i.e. "project names") +Group references by "label" (i.e. "project names") ```{r echo=TRUE} -refs_with_project <- references_df %>% - dplyr::filter(.data$key1 == "custom2") +refs_with_project <- refs_df[!is.na(refs_df$label),] n_pubs_with_project_meta <- nrow(refs_with_project) @@ -200,7 +205,7 @@ percent_pubs_with_project_meta <- round(100*n_pubs_with_project_meta/n_publicati unique_project_names <- refs_with_project %>% - dplyr::count(.data$value) + dplyr::count(.data$label) knitr::kable(unique_project_names) @@ -228,7 +233,8 @@ refs_by_author_lastfirst <- references_df %>% dplyr::count(.data$value) %>% dplyr::arrange(dplyr::desc(.data$n)) -kwb.endnote::plot_pubs_by_author(refs_by_author_lastfirst[1:50, ]) +p2 <- kwb.endnote::plot_pubs_by_author(refs_by_author_lastfirst[1:50, ]) +plotly::ggplotly(p2) ``` @@ -272,8 +278,8 @@ refs_by_author_last <- references_df %>% dplyr::count(.data$value) %>% dplyr::arrange(dplyr::desc(.data$n)) -kwb.endnote::plot_pubs_by_author(refs_by_author_last[1:50, ]) - +p3 <- kwb.endnote::plot_pubs_by_author(refs_by_author_last[1:50, ]) +plotly::ggplotly(p3) ``` @@ -330,21 +336,22 @@ for how many we have this metadata: ```{r echo=TRUE} -has_doi <- stringr::str_detect(pubs_in_journals$value, "doi") -pubs_in_journals_with_doi <- pubs_in_journals[has_doi, ] +has_doi <- pubs_in_journals %>% + dplyr::filter(.data$key1 == "electronic-resource-num", + .data$value != "") + -n_pubs_in_journals_with_doi <- nrow(pubs_in_journals_with_doi) +n_pubs_in_journals_with_doi <- nrow(has_doi) -knitr::kable(pubs_in_journals_with_doi) +knitr::kable(has_doi) ``` -Only `r n_pubs_in_journals_with_doi` journal publications have a DOI which is -either encoded in the field **electronic-resource-num** and **urls**. +Only `r n_pubs_in_journals_with_doi` (`r round(100*n_pubs_in_journals_with_doi/n_pubs_in_journals,1)` %) journal publications have a DOI which is encoded in the field **electronic-resource-num**. All DOIs should be entered in the field **electronic-resource-num** in the following format, i.e.: -**https://doi.org/10.6084/m9.figshare.828487** +**10.6084/m9.figshare.828487** # Export References To XLSX diff --git a/vignettes/workflow.Rmd b/vignettes/workflow.Rmd index 48e1621..c975bb3 100644 --- a/vignettes/workflow.Rmd +++ b/vignettes/workflow.Rmd @@ -55,8 +55,8 @@ diffs_df %>% ```{r echo=TRUE} -en_old_xml <- kwb.endnote::extdata_file("2019-01-14_KWB_documents.xml") -en_new_xml <- kwb.endnote::extdata_file("2019-07-09_KWB_documents.xml") +en_old_xml <- kwb.endnote::extdata_file("2020-05-25_KWB-documents.xml") +en_new_xml <- kwb.endnote::extdata_file("2020-06-17_KWB-documents.xml") en_old_list <- kwb.endnote::create_endnote_list(en_old_xml) en_new_list <- kwb.endnote::create_endnote_list(en_new_xml)