text/html posi.html — 735.4 KB

Dateiinhalt

<!DOCTYPE HTML>
<html>
<head>
<title>JabRef references</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">
<!--
// QuickSearch script for JabRef HTML export 
// Version: 3.0
//
// Copyright (c) 2006-2011, Mark Schenk
//
// This software is distributed under a Creative Commons Attribution 3.0 License
// http://creativecommons.org/licenses/by/3.0/
//
// Features:
// - intuitive find-as-you-type searching
//    ~ case insensitive
//    ~ ignore diacritics (optional)
//
// - search with/without Regular Expressions
// - match BibTeX key
//

// Search settings
var searchAbstract = true;	// search in abstract
var searchReview = true;	// search in review

var noSquiggles = true; 	// ignore diacritics when searching
var searchRegExp = false; 	// enable RegExp searches


if (window.addEventListener) {
	window.addEventListener("load",initSearch,false); }
else if (window.attachEvent) {
	window.attachEvent("onload", initSearch); }

function initSearch() {
	// check for quick search table and searchfield
	if (!document.getElementById('qs_table')||!document.getElementById('quicksearch')) { return; }

	// load all the rows and sort into arrays
	loadTableData();
	
	//find the query field
	qsfield = document.getElementById('qs_field');

	// previous search term; used for speed optimisation
	prevSearch = '';

	//find statistics location
	stats = document.getElementById('stat');
	setStatistics(-1);
	
	// set up preferences
	initPreferences();

	// shows the searchfield
	document.getElementById('quicksearch').style.display = 'block';
	document.getElementById('qs_field').onkeyup = quickSearch;
}

function loadTableData() {
	// find table and appropriate rows
	searchTable = document.getElementById('qs_table');
	var allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr');

	// split all rows into entryRows and infoRows (e.g. abstract, review, bibtex)
	entryRows = new Array(); infoRows = new Array(); absRows = new Array(); revRows = new Array();

	// get data from each row
	entryRowsData = new Array(); absRowsData = new Array(); revRowsData = new Array(); 
	
	BibTeXKeys = new Array();
	
	for (var i=0, k=0, j=0; i<allRows.length;i++) {
		if (allRows[i].className.match(/entry/)) {
			entryRows[j] = allRows[i];
			entryRowsData[j] = stripDiacritics(getTextContent(allRows[i]));
			allRows[i].id ? BibTeXKeys[j] = allRows[i].id : allRows[i].id = 'autokey_'+j;
			j ++;
		} else {
			infoRows[k++] = allRows[i];
			// check for abstract/review
			if (allRows[i].className.match(/abstract/)) {
				absRows.push(allRows[i]);
				absRowsData[j-1] = stripDiacritics(getTextContent(allRows[i]));
			} else if (allRows[i].className.match(/review/)) {
				revRows.push(allRows[i]);
				revRowsData[j-1] = stripDiacritics(getTextContent(allRows[i]));
			}
		}
	}
	//number of entries and rows
	numEntries = entryRows.length;
	numInfo = infoRows.length;
	numAbs = absRows.length;
	numRev = revRows.length;
}

function quickSearch(){
	
	tInput = qsfield;

	if (tInput.value.length == 0) {
		showAll();
		setStatistics(-1);
		qsfield.className = '';
		return;
	} else {
		t = stripDiacritics(tInput.value);

		if(!searchRegExp) { t = escapeRegExp(t); }
			
		// only search for valid RegExp
		try {
			textRegExp = new RegExp(t,"i");
			closeAllInfo();
			qsfield.className = '';
		}
			catch(err) {
			prevSearch = tInput.value;
			qsfield.className = 'invalidsearch';
			return;
		}
	}
	
	// count number of hits
	var hits = 0;

	// start looping through all entry rows
	for (var i = 0; cRow = entryRows[i]; i++){

		// only show search the cells if it isn't already hidden OR if the search term is getting shorter, then search all
		if(cRow.className.indexOf('noshow')==-1 || tInput.value.length <= prevSearch.length){
			var found = false; 

			if (entryRowsData[i].search(textRegExp) != -1 || BibTeXKeys[i].search(textRegExp) != -1){ 
				found = true;
			} else {
				if(searchAbstract && absRowsData[i]!=undefined) {
					if (absRowsData[i].search(textRegExp) != -1){ found=true; } 
				}
				if(searchReview && revRowsData[i]!=undefined) {
					if (revRowsData[i].search(textRegExp) != -1){ found=true; } 
				}
			}
			
			if (found){
				cRow.className = 'entry show';
				hits++;
			} else {
				cRow.className = 'entry noshow';
			}
		}
	}

	// update statistics
	setStatistics(hits)
	
	// set previous search value
	prevSearch = tInput.value;
}


// Strip Diacritics from text
// http://stackoverflow.com/questions/990904/javascript-remove-accents-in-strings

// String containing replacement characters for stripping accents 
var stripstring = 
    'AAAAAAACEEEEIIII'+
    'DNOOOOO.OUUUUY..'+
    'aaaaaaaceeeeiiii'+
    'dnooooo.ouuuuy.y'+
    'AaAaAaCcCcCcCcDd'+
    'DdEeEeEeEeEeGgGg'+
    'GgGgHhHhIiIiIiIi'+
    'IiIiJjKkkLlLlLlL'+
    'lJlNnNnNnnNnOoOo'+
    'OoOoRrRrRrSsSsSs'+
    'SsTtTtTtUuUuUuUu'+
    'UuUuWwYyYZzZzZz.';

function stripDiacritics(str){

    if(noSquiggles==false){
        return str;
    }

    var answer='';
    for(var i=0;i<str.length;i++){
        var ch=str[i];
        var chindex=ch.charCodeAt(0)-192;   // Index of character code in the strip string
        if(chindex>=0 && chindex<stripstring.length){
            // Character is within our table, so we can strip the accent...
            var outch=stripstring.charAt(chindex);
            // ...unless it was shown as a '.'
            if(outch!='.')ch=outch;
        }
        answer+=ch;
    }
    return answer;
}

// http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex
// NOTE: must escape every \ in the export code because of the JabRef Export...
function escapeRegExp(str) {
  return str.replace(/[-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
}

function toggleInfo(articleid,info) {

	var entry = document.getElementById(articleid);
	var abs = document.getElementById('abs_'+articleid);
	var rev = document.getElementById('rev_'+articleid);
	var bib = document.getElementById('bib_'+articleid);
	
	if (abs && info == 'abstract') {
		abs.className.indexOf('noshow') == -1?abs.className = 'abstract noshow':abs.className = 'abstract show';
	} else if (rev && info == 'review') {
		rev.className.indexOf('noshow') == -1?rev.className = 'review noshow':rev.className = 'review show';
	} else if (bib && info == 'bibtex') {
		bib.className.indexOf('noshow') == -1?bib.className = 'bibtex noshow':bib.className = 'bibtex show';
	} else { 
		return;
	}

	// check if one or the other is available
	var revshow; var absshow; var bibshow;
	(abs && abs.className.indexOf('noshow') == -1)? absshow = true: absshow = false;
	(rev && rev.className.indexOf('noshow') == -1)? revshow = true: revshow = false;	
	(bib && bib.className.indexOf('noshow') == -1)? bibshow = true: bibshow = false;
	
	// highlight original entry
	if(entry) {
		if (revshow || absshow || bibshow) {
		entry.className = 'entry highlight show';
		} else {
		entry.className = 'entry show';
		}
	}
	
	// When there's a combination of abstract/review/bibtex showing, need to add class for correct styling
	if(absshow) {
		(revshow||bibshow)?abs.className = 'abstract nextshow':abs.className = 'abstract';
	} 
	if (revshow) {
		bibshow?rev.className = 'review nextshow': rev.className = 'review';
	}	
	
}

function setStatistics (hits) {
	if(hits < 0) { hits=numEntries; }
	if(stats) { stats.firstChild.data = hits + '/' + numEntries}
}

function getTextContent(node) {
	// Function written by Arve Bersvendsen
	// http://www.virtuelvis.com
	
	if (node.nodeType == 3) {
	return node.nodeValue;
	} // text node
	if (node.nodeType == 1 && node.className != "infolinks") { // element node
	var text = [];
	for (var chld = node.firstChild;chld;chld=chld.nextSibling) {
		text.push(getTextContent(chld));
	}
	return text.join("");
	} return ""; // some other node, won't contain text nodes.
}

function showAll(){
	closeAllInfo();
	for (var i = 0; i < numEntries; i++){ entryRows[i].className = 'entry show'; }
}

function closeAllInfo(){
	for (var i=0; i < numInfo; i++){
		if (infoRows[i].className.indexOf('noshow') ==-1) {
			infoRows[i].className = infoRows[i].className + ' noshow';
		}
	}
}

function clearQS() {
	qsfield.value = '';
	showAll();
}

function redoQS(){
	showAll();
	quickSearch(qsfield);
}

function updateSetting(obj){
	var option = obj.id;
	var checked = obj.value;

	switch(option)
	 {
	 case "opt_searchAbs":
	   searchAbstract=!searchAbstract;
	   redoQS();
	   break;
	 case "opt_searchRev":
	   searchReview=!searchReview;
	   redoQS();
	   break;
	 case "opt_useRegExp":
	   searchRegExp=!searchRegExp;
	   redoQS();
	   break;
	 case "opt_noAccents":
	   noSquiggles=!noSquiggles;
	   loadTableData();
	   redoQS();
	   break;
	 }
}

function initPreferences(){
	if(searchAbstract){document.getElementById("opt_searchAbs").checked = true;}
	if(searchReview){document.getElementById("opt_searchRev").checked = true;}
	if(noSquiggles){document.getElementById("opt_noAccents").checked = true;}
	if(searchRegExp){document.getElementById("opt_useRegExp").checked = true;}
	
	if(numAbs==0) {document.getElementById("opt_searchAbs").parentNode.style.display = 'none';}
	if(numRev==0) {document.getElementById("opt_searchRev").parentNode.style.display = 'none';}
}

function toggleSettings(){
	var togglebutton = document.getElementById('showsettings');
	var settings = document.getElementById('settings');
	
	if(settings.className == "hidden"){
		settings.className = "show";
		togglebutton.innerText = "close settings";
		togglebutton.textContent = "close settings";
	}else{
		settings.className = "hidden";
		togglebutton.innerText = "settings...";		
		togglebutton.textContent = "settings...";
	}
}

-->
</script>
<style type="text/css">
body { background-color: white; font-family: Arial, sans-serif; font-size: 13px; line-height: 1.2; padding: 1em; color: #2E2E2E; margin: auto 2em; }

form#quicksearch { width: auto; border-style: solid; border-color: gray; border-width: 1px 0px; padding: 0.7em 0.5em; display:none; position:relative; }
span#searchstat {padding-left: 1em;}

div#settings { margin-top:0.7em; /* border-bottom: 1px transparent solid; background-color: #efefef; border: 1px grey solid; */ }
div#settings ul {margin: 0; padding: 0; }
div#settings li {margin: 0; padding: 0 1em 0 0; display: inline; list-style: none; }
div#settings li + li { border-left: 2px #efefef solid; padding-left: 0.5em;}
div#settings input { margin-bottom: 0px;}

div#settings.hidden {display:none;}

#showsettings { border: 1px grey solid; padding: 0 0.5em; float:right; line-height: 1.6em; text-align: right; }
#showsettings:hover { cursor: pointer; }

.invalidsearch { background-color: red; }
input[type="button"] { background-color: #efefef; border: 1px #2E2E2E solid;}

table { width: 100%; empty-cells: show; border-spacing: 0em 0.2em; margin: 1em 0em; border-style: none; }
th, td { border: 1px gray solid; border-width: 0px 0px; padding: 0.5em; vertical-align: top; text-align: left; }
th { background-color: #efefef; }
td + td, th + th { border-left: none; }

td a { color: navy; text-decoration: none; }
td a:hover  { text-decoration: underline; }

tr.noshow { display: none;}
tr.highlight td { background-color: #EFEFEF; border-top: 0px #2E2E2E solid; font-weight: bold; }
tr.abstract td, tr.review td, tr.bibtex td { background-color: #EFEFEF; text-align: justify; border-bottom: 0px #2E2E2E solid; }
tr.nextshow td { border-bottom: 1px gray solid; }

tr.bibtex pre { width: 100%; overflow: auto; white-space: pre-wrap;}
p.infolinks { margin: 0.3em 0em 0em 0em; padding: 0px; }

@media print {
	p.infolinks, #qs_settings, #quicksearch, t.bibtex { display: none !important; }
	tr { page-break-inside: avoid; }
}
</style>
</head>
<body>

<form action="" id="quicksearch">
<input type="text" id="qs_field" autocomplete="off" placeholder="Type to search..." /> <input type="button" onclick="clearQS()" value="clear" />
<span id="searchstat">Matching entries: <span id="stat">0</span></span>
<div id="showsettings" onclick="toggleSettings()">settings...</div>
<div id="settings" class="hidden">
<ul>
<li><input type="checkbox" class="search_setting" id="opt_searchAbs" onchange="updateSetting(this)"><label for="opt_searchAbs"> include abstract</label></li>
<li><input type="checkbox" class="search_setting" id="opt_searchRev" onchange="updateSetting(this)"><label for="opt_searchRev"> include review</label></li>
<li><input type="checkbox" class="search_setting" id="opt_useRegExp" onchange="updateSetting(this)"><label for="opt_useRegExp"> use RegExp</label></li>
<li><input type="checkbox" class="search_setting" id="opt_noAccents" onchange="updateSetting(this)"><label for="opt_noAccents"> ignore accents</label></li>
</ul>
</div>
</form>
<table id="qs_table" border="1">
<!--
<thead><tr><th width="20%">Author</th><th width="30%">Title</th><th width="5%">Year</th><th width="30%">Journal/Proceedings</th><th width="10%">Reftype</th><th width="5%">DOI/URL</th></tr></thead>
-->
<tbody><tr id="2022" class="entry"><td><h1>2022</h1></td></tr>

<tr id="Chen2022" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/acsestengg.2c00103">Elucidating the Roles of Polyamide Layer Structural Properties in the Permeability-Selectivity Tradeoff Governing Aqueous Separations</a></em><br />
X. Chen, R. Verbeke, C. Boo, M. Dickmann, W. Egger, K. Ndamage, I.F.J. Vankelecom and N.Y. Yip; ACS EST Eng.
<b> 2</b>
 (10)
 (2022)
 1857-1870.
<p class="infolinks">
[<a href="javascript:toggleInfo('Chen2022','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Chen2022','bibtex')">BibTeX</a>]
[<a href="https://pubs.acs.org/doi/10.1021/acsestengg.2c00103">URL</a>]
[<a href="https://doi.org/10.1021/acsestengg.2c00103">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Chen2022.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Chen2022" class="abstract noshow">
	<td><b>Abstract</b>: A tradeoff relationship between permeability and selectivity of reverse osmosis and nanofiltration aqueous separation membranes is increasingly being documented. However, there is currently no comprehensive mechanistic framework to describe the roles of membrane structural properties in the transport tradeoff. This study investigates two key structural properties of the widely used thin-film composite polyamide (TFC-PA) membranes, namely, the free volume element (FVE) size and the effective transport pathway, and examines their influence on the tradeoff behavior. Permeability and selectivity performance were characterized by challenging chemically modified TFC-PA membranes with two neutral organic tracers. Positron annihilation lifetime spectroscopy (PALS) determined that the FVE diameters slightly increased for more permeable membranes, but the marginal size enlargement cannot fully account for the permeability trend. Instead, analysis using the hindered transport model showed that shortening of the effective transport pathway is identified as having a more significant effect on raising the water permeability. On the other hand, membrane selectivity is found to be dominated by FVE size and is essentially independent of the transport pathway. Lastly, a framework reconciling experimental evidence with transport theory is proposed to relate the influence of membrane structural properties on the permeability-selectivity tradeoff. Findings of this study provide fundamental insights for understanding the transport phenomena in aqueous separation membranes.<br>A tradeoff relationship between permeability and selectivity of reverse osmosis and nanofiltration aqueous separation membranes is increasingly being documented. However, there is currently no comprehensive mechanistic framework to describe the roles of membrane structural properties in the transport tradeoff. This study investigates two key structural properties of the widely used thin-film composite polyamide (TFC-PA) membranes, namely, the free volume element (FVE) size and the effective transport pathway, and examines their influence on the tradeoff behavior. Permeability and selectivity performance were characterized by challenging chemically modified TFC-PA membranes with two neutral organic tracers. Positron annihilation lifetime spectroscopy (PALS) determined that the FVE diameters slightly increased for more permeable membranes, but the marginal size enlargement cannot fully account for the permeability trend. Instead, analysis using the hindered transport model showed that shortening of the effective transport pathway is identified as having a more significant effect on raising the water permeability. On the other hand, membrane selectivity is found to be dominated by FVE size and is essentially independent of the transport pathway. Lastly, a framework reconciling experimental evidence with transport theory is proposed to relate the influence of membrane structural properties on the permeability-selectivity tradeoff. Findings of this study provide fundamental insights for understanding the transport phenomena in aqueous separation membranes.</td>
</tr>
<tr id="bib_Chen2022" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Chen2022,
	  author = {Chen, Xi and Verbeke, Rhea and Boo, Chanhee and Dickmann, Marcel and Egger, Werner and Ndamage, Kalisa and Vankelecom, Ivo F. J. and Yip, Ngai Yin},
	  title = {Elucidating the Roles of Polyamide Layer Structural Properties in the Permeability-Selectivity Tradeoff Governing Aqueous Separations},
	  journal = {ACS EST Eng.},
	  publisher = {American Chemical Society},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2022},
	  volume = {2},
	  number = {10},
	  pages = {1857--1870},
	  url = {https://pubs.acs.org/doi/10.1021/acsestengg.2c00103},
	  doi = {https://doi.org/10.1021/acsestengg.2c00103}
	}
	</pre></td>
</tr>






<tr id="Krsjak2022" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.jmst.2021.08.004">On the helium bubble swelling in nano-oxide dispersion-strengthened steels</a></em><br />
V. Krsjak, T. Shen, J. Degmova, S. Sojak, E. Korpas, P. Noga, W. Egger, B. Li, V. Slugen and F.A. Garner; Journal of Materials Science &amp; Technology
<b> 105</b>

 (2022)
 172-181.
<p class="infolinks">
[<a href="javascript:toggleInfo('Krsjak2022','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Krsjak2022','bibtex')">BibTeX</a>]
[<a href="https://www.sciencedirect.com/science/article/pii/S100503022100743X">URL</a>]
[<a href="https://doi.org/10.1016/j.jmst.2021.08.004">DOI</a>]

</td>
</tr> 
<tr id="abs_Krsjak2022" class="abstract noshow">
	<td><b>Abstract</b>: The development of structural materials resistant to harsh radiation environments requires an in-depth understanding of the early stage of the aging processes. In radiation environments with high transmutation helium production rates such as in fusion and spallation applications, even materials with otherwise acceptable radiation stability may suffer from radiation embrittlement related to helium bubble formation. While theoretical modeling of helium-assisted cavity nucleation in pure metals and simple alloys provides some useful guidelines at the atomic scale level, these, however, do not overlap with the size resolution of available experimental techniques. In this study, we employed slow positron beam spectroscopy to characterize the nucleation and growth of nano-scale helium bubbles in martensitic steels strengthened by thermodynamically stable nano-oxide dispersoids. In combination with transmission electron microscopy, we experimentally characterized the evolution of helium bubbles from small clusters of radiation-induced vacancies to large cavities well resolvable by TEM. Superior radiation resistance of oxide-dispersion strengthened steels dominates only in the early stages of bubble evolution, where positron lifetime measurements provide a missing piece of the microstructural puzzle conventionally constructed by TEM.</td>
</tr>
<tr id="bib_Krsjak2022" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Krsjak2022,
	  author = {Vladimir Krsjak and Tielong Shen and Jarmila Degmova and Stanislav Sojak and Erik Korpas and Pavol Noga and Werner Egger and Bingsheng Li and Vladimir Slugen and Frank A. Garner},
	  title = {On the helium bubble swelling in nano-oxide dispersion-strengthened steels},
	  journal = {Journal of Materials Science &amp; Technology},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2022},
	  volume = {105},
	  pages = {172-181},
	  url = {https://www.sciencedirect.com/science/article/pii/S100503022100743X},
	  doi = {https://doi.org/10.1016/j.jmst.2021.08.004}
	}
	</pre></td>
</tr>






<tr id="Wu2022" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevMaterials.6.065201">Formation of vacancies and metallic-like domains in photochromic rare-earth oxyhydride thin films studied by in-situ illumination positron annihilation spectroscopy</a></em><br />
Z. Wu, T. de Krom, G. Colombi, D. Chaykina, G. van Hattem, H. Schut, M. Dickmann, W. Egger, C. Hugenschmidt, E. Br&uuml;ck, B. Dam and S.W.H. Eijt; Phys. Rev. Mater.
<b> 6</b>

 (2022)
 065201.
<p class="infolinks">
[<a href="javascript:toggleInfo('Wu2022','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Wu2022','bibtex')">BibTeX</a>]
[<a href="https://link.aps.org/doi/10.1103/PhysRevMaterials.6.065201">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevMaterials.6.065201">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Wu2022.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Wu2022" class="abstract noshow">
	<td><b>Abstract</b>: Rare-earth (RE) oxyhydride thin films show a color-neutral, reversible photochromic effect at ambient conditions. The origin of the photochromism is the topic of current investigations. Here, we investigated the lattice defects, electronic structure, and crystal structure of photochromic YH_xO_y and GdH_xO_y thin films deposited by magnetron sputtering using positron annihilation techniques and x-ray diffraction, in comparison with Y, YH_\sim1.9, Y_2O_3, Gd, GdH_\sim1.8, and Gd_2O_3 films. Positron annihilation lifetime spectroscopy (PALS) reveals the presence of cation monovacancies in the as-deposited Y and YH_\sim1.9 films at concentrations of \sim10^-5 per cation. In addition, vacancy clusters and nanopores are found in the as-prepared YH_xO_y and Y_2O_3 films. Doppler broadening positron annihilation spectroscopy (DB-PAS) of the Y- and Gd-based films reflects the transition from a metallic to an insulating nature of the RE metal, metal hydride, semiconducting oxyhydride and insulating oxide films. In-situ illumination DB-PAS shows the irreversible formation predominantly of di-vacancies, as PALS showed that cation mono-vacancies are already abundantly present in the as-prepared films. The formation of di-vacancies supports conjectures that H^-- (and/or O^2--) ions become mobile upon illumination, as these will leave anion vacancies behind, some of which may subsequently cluster with cation vacancies present. In addition, in RE oxyhydride films, partially reversible shifts in the Doppler parameters are observed that correlate with the photochromic effect and point to the formation of metallic domains in the semiconducting films. Two processes are discussed that may explain the formation of these metallic domains and the changes in optical properties associated with the photochromic effect. The first process considers the reversible formation of metallic nanodomains with reduced O : H composition by transport of light-induced mobile hydrogen and local oxygen displacements. The second process considers metallic nanodomains resulting from the trapping of photoexcited electrons in an e_g orbital at the yttrium ions surrounding positively charged hydrogen vacancies that are formed by light-induced removal of hydrogen atoms from octahedral sites. When a sufficiently large concentration, on the order of \sim10%, is reached in a certain domain of the film, band formation of the e_g electrons may occur, leading to an Anderson-Mott insulator-metal transition like the case of yttrium trihydride in these domains." name="description" /><meta content="Rare-earth (RE) oxyhydride thin films show a color-neutral, reversible photochromic effect at ambient conditions. The origin of the photochromism is the topic of current investigations. Here, we investigated the lattice defects, electronic structure, and crystal structure of photochromic YH_xO_y and GdH_xO_y thin films deposited by magnetron sputtering using positron annihilation techniques and x-ray diffraction, in comparison with Y, YH_\sim1.9, Y_2O_3, Gd, GdH_\sim1.8, and Gd_2O_3 films. Positron annihilation lifetime spectroscopy (PALS) reveals the presence of cation monovacancies in the as-deposited Y and YH_\sim1.9 films at concentrations of \sim10^-5 per cation. In addition, vacancy clusters and nanopores are found in the as-prepared YH_xO_y and Y_2O_3 films. Doppler broadening positron annihilation spectroscopy (DB-PAS) of the Y- and Gd-based films reflects the transition from a metallic to an insulating nature of the RE metal, metal hydride, semiconducting oxyhydride and insulating oxide films. In-situ illumination DB-PAS shows the irreversible formation predominantly of di-vacancies, as PALS showed that cation mono-vacancies are already abundantly present in the as-prepared films. The formation of di-vacancies supports conjectures that H^-- (and/or O^2--) ions become mobile upon illumination, as these will leave anion vacancies behind, some of which may subsequently cluster with cation vacancies present. In addition, in RE oxyhydride films, partially reversible shifts in the Doppler parameters are observed that correlate with the photochromic effect and point to the formation of metallic domains in the semiconducting films. Two processes are discussed that may explain the formation of these metallic domains and the changes in optical properties associated with the photochromic effect. The first process considers the reversible formation of metallic nanodomains with reduced O : H composition by transport of light-induced mobile hydrogen and local oxygen displacements. The second process considers metallic nanodomains resulting from the trapping of photoexcited electrons in an e_g orbital at the yttrium ions surrounding positively charged hydrogen vacancies that are formed by light-induced removal of hydrogen atoms from octahedral sites. When a sufficiently large concentration, on the order of \sim10%, is reached in a certain domain of the film, band formation of the e_g electrons may occur, leading to an Anderson-Mott insulator-metal transition like the case of yttrium trihydride in these domains.</td>
</tr>
<tr id="bib_Wu2022" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Wu2022,
	  author = {Wu, Ziying and de Krom, Tom and Colombi, Giorgio and Chaykina, Diana and van Hattem, Gijs and Schut, Henk and Dickmann, Marcel and Egger, Werner and Hugenschmidt, Christoph and Br&uuml;ck, Ekkes and Dam, Bernard and Eijt, Stephan W. H.},
	  title = {Formation of vacancies and metallic-like domains in photochromic rare-earth oxyhydride thin films studied by in-situ illumination positron annihilation spectroscopy},
	  journal = {Phys. Rev. Mater.},
	  publisher = {American Physical Society},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2022},
	  volume = {6},
	  pages = {065201},
	  url = {https://link.aps.org/doi/10.1103/PhysRevMaterials.6.065201},
	  doi = {https://doi.org/10.1103/PhysRevMaterials.6.065201}
	}
	</pre></td>
</tr>






<tr id="Yang2022" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.jnucmat.2022.154019">A combined experimental and theoretical study of small and large vacancy clusters in tungsten</a></em><br />
Q. Yang, Z. Hu, I. Makkonen, P. Desgardin, W. Egger, M.-F. Barthe and P. Olsson; Journal of Nuclear Materials
<b> 571</b>

 (2022)
 154019.
<p class="infolinks">
[<a href="javascript:toggleInfo('Yang2022','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Yang2022','bibtex')">BibTeX</a>]
[<a href="https://www.sciencedirect.com/science/article/pii/S0022311522005049">URL</a>]
[<a href="https://doi.org/10.1016/j.jnucmat.2022.154019">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Yang2022.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Yang2022" class="abstract noshow">
	<td><b>Abstract</b>: Tungsten is considered to be used in the future fusion reactors as plasma-facing material. In such extreme environments, defects are induced in materials that modify their macroscopic properties such as the mechanical ones. It is of paramount importance to be able to determine concentration and size of the vacancy defects, from the mono vacancy to the large cavities, to validate the models developed to predict the evolution of the microstructure of irradiated materials. Positrons are very useful non-destructive probes that can characterize vacancy-type defects in materials. We present a combined experimental and theoretical study on detecting and estimating the sizes of vacancy clusters that are invisible with electron microscopy in tungsten, using positron annihilation spectroscopy. We here model the positron annihilation in the tungsten lattice and in vacancy-type defects using state-of-the-art first principles methodology. The Doppler broadening spectra and positron lifetimes in tungsten are calculated with two-component density functional theory with local density approximation and weighted density approximation. Our calculations are in excellent agreement with our experimental results. We show that the sizes of vacancy clusters in tungsten can be well estimated by combining both positron lifetimes and Doppler broadening spectra. We also determine the limit of validity of the canonical calculation method, which here is shown to fail when the vacancy clusters grow beyond their nucleation stage. This work is a first step needed to better interpret the measured positron annihilation characteristics (Doppler and lifetime) in tungsten and then extract quantitative data on small vacancy defects required to improve the understanding of early-stage vacancy defect evolution in tungsten. The method used in this paper could be used to study other metallic materials.</td>
</tr>
<tr id="bib_Yang2022" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Yang2022,
	  author = {Yang, Qigui and Hu, Zhiwei and Makkonen, Ilja and Desgardin, Pierre and Egger, Werner and Barthe, Marie-France and Olsson, Pär},
	  title = {A combined experimental and theoretical study of small and large vacancy clusters in tungsten},
	  journal = {Journal of Nuclear Materials},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2022},
	  volume = {571},
	  pages = {154019},
	  url = {https://www.sciencedirect.com/science/article/pii/S0022311522005049},
	  doi = {https://doi.org/10.1016/j.jnucmat.2022.154019}
	}
	</pre></td>
</tr>




<tr id="2021" class="entry"><td><h1>2021</h1></td></tr>

<tr id="Keeble2021" class="entry">

<td>
<em> <a href="https://doi.org/10.1038/s41467-021-25937-1">Identification of lead vacancy defects in lead halide perovskites</a></em><br />
D.J. Keeble, J. Wiktor, S.K. Pathak, L.J. Phillips, M. Dickmann, K. Durose, H.J. Snaith and W. Egger; Nature Communications
<b> 12</b>

 (2021)
 5566.
<p class="infolinks">
[<a href="javascript:toggleInfo('Keeble2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Keeble2021','bibtex')">BibTeX</a>]
[<a href="https://www.nature.com/articles/s41467-021-25937-1">URL</a>]
[<a href="https://doi.org/10.1038/s41467-021-25937-1">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Keeble2021.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Keeble2021" class="abstract noshow">
	<td><b>Abstract</b>: Perovskite photovoltaics advance rapidly, but questions remain regarding point defects: while experiments have detected the presence of electrically active defects no experimentally confirmed microscopic identifications have been reported. Here we identify lead monovacancy (VPb) defects in MAPbI3 (MA = CH3NH3+) using positron annihilation lifetime spectroscopy with the aid of density functional theory. Experiments on thin film and single crystal samples all exhibited dominant positron trapping to lead vacancy defects, and a minimum defect density of &nbsp;3 × 1015 cm−3 was determined. There was also evidence of<br>trapping at the vacancy complex (VPbVI)- in a minority of samples, but no trapping to MAion vacancies was observed. Our experimental results support the predictions of other firstprinciples studies that deep level, hole trapping, V2 Pb , point defects are one of the most stable defects in MAPbI3. This direct detection and identification of a deep level native defect in a halide perovskite, at technologically relevant concentrations, will enable further investigation of defect driven mechanisms.</td>
</tr>
<tr id="bib_Keeble2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Keeble2021,
	  author = {Keeble, David J. and Wiktor, Julia and Pathak, Sandeep K. and Phillips, Laurie J. and Dickmann, Marcel and Durose, Ken and Snaith, Henry J. and Egger, Werner},
	  title = {Identification of lead vacancy defects in lead halide perovskites},
	  journal = {Nature Communications},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  volume = {12},
	  pages = {5566},
	  url = {https://www.nature.com/articles/s41467-021-25937-1},
	  doi = {https://doi.org/10.1038/s41467-021-25937-1}
	}
	</pre></td>
</tr>






<tr id="Krsjak2021" class="entry">

<td>
<em> <a href="https://doi.org/10.1039/D1NA00394A">A new approach to near-surface positron annihilation analysis of ion irradiated ferritic alloys</a></em><br />
V. Kršjak, P. Hruška, J. Degmová, S. Sojak, P. Noga, T. Shen, V. Sabelová, W. Egger and V. Slugen; Nanoscale Advances
<b> 3</b>
 (23)
 (2021)
 6596-6607.
<p class="infolinks">
[<a href="javascript:toggleInfo('Krsjak2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Krsjak2021','bibtex')">BibTeX</a>]
[<a href="https://pubs.rsc.org/en/content/articlelanding/2021/NA/D1NA00394A">URL</a>]
[<a href="https://doi.org/10.1039/D1NA00394A">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Krsjak2021.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Krsjak2021" class="abstract noshow">
	<td><b>Abstract</b>: The present work provides an innovative approach to the near-surface slow-positron-beam (SPB) study of structural materials exposed to ion-beam irradiation. This approach enables the use of variable-energy positron annihilation lifetime spectroscopy (PALS) to characterise a wide range of microstructural damage along the ion implantation profile. In a typical application of the SPB PALS technique, positron lifetime is used to provide qualitative information on the size of vacancy clusters as a function of the positron energy, i.e., the probing depth of the spectrometer. This approach is limited to a certain defect concentration above which the positron lifetime gets saturated. In our experiments, we investigated the back-diffusion of positrons and their annihilation at the surface. The probability of such an event is characterised by the positron diffusion length, and it depends on the density of lattice defects, even in the saturation range of the positron lifetime. Until now, the back-diffusion experiments were reported only in connection with Doppler broadening spectroscopy (DBS) of positron-annihilation radiation. To verify the validity of the used approach, we compared the obtained results on helium-implanted Fe9Cr alloy and its oxide dispersion strengthened variant with the transmission electron microscopy and “conventional” slow positron DBS analysis.</td>
</tr>
<tr id="bib_Krsjak2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Krsjak2021,
	  author = {Kršjak, Vladimír and Hruška, Petr and Degmová, Jarmila and Sojak, Stanislav and Noga, Pavol and Shen, Tielong and Sabelová, Veronika and Egger, Werner and Slugen, Vladimír},
	  title = {A new approach to near-surface positron annihilation analysis of ion irradiated ferritic alloys},
	  journal = {Nanoscale Advances},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  volume = {3},
	  number = {23},
	  pages = {6596-6607},
	  url = {https://pubs.rsc.org/en/content/articlelanding/2021/NA/D1NA00394A},
	  doi = {https://doi.org/10.1039/D1NA00394A}
	}
	</pre></td>
</tr>






<tr id="Ma2021" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.watres.2020.116756">Transport of organic solutes in ion-exchange membranes: Mechanisms and influence of solvent ionic composition</a></em><br />
L. Ma, L. Gutierrez, R. Verbeke, A. D'Haese, M. Waqas, M. Dickmann, R. Helm, I. Vankelecom, A. Verliefde and E. Cornelissen; Water Research
<b> 190</b>

 (2021)
 116756.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ma2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ma2021','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0043135420312896">URL</a>]
[<a href="https://doi.org/10.1016/j.watres.2020.116756">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ma2021.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ma2021" class="abstract noshow">
	<td><b>Abstract</b>: Ion-exchange membrane (IEM)-based processes are used in the industry or in the drinking water production to achieve selective separation. The transport mechanisms of organic solutes/micropollutants (i.e., paracetamol, clofibric acid, and atenolol) at a single-membrane level in diffusion cells were similar to that of salts (i.e., diffusion, convection, and electromigration). The presence of an equal concentration of salts at both sides of the membrane slightly decreased the transport of organics due to lower diffusion coefficients of organics in salts and the increase of hindrance and/or decrease of partitioning in the membrane phase. In the presence of a salt gradient, diffusion was the main transport mechanism for non-charged organics, while the counter-transport of salts promoted the transport of charged organics through electromigration (electroneutrality). Conversely, the co-transport of salts hindered the transport of charged organics, where diffusion was the main transport mechanism of the latter. Although convection played a role in the transport of non-charged organics, its influence on the charged solutes was minimal due to the dominant electromigration. Positron annihilation lifetime spectroscopy showed a bimodal size distribution of free-volume elements of IEMs, with both classes of free-volume elements contributing to salt transport, while larger organics can only transport through the larger class.</td>
</tr>
<tr id="bib_Ma2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ma2021,
	  author = {Ma, Lingshan and Gutierrez, Leonardo and Verbeke, Rhea and D'Haese, Arnout and Waqas, Muhammad and Dickmann, Marcel and Helm, Ricardo and Vankelecom, Ivo and Verliefde, Arne and Cornelissen, Emile},
	  title = {Transport of organic solutes in ion-exchange membranes: Mechanisms and influence of solvent ionic composition},
	  journal = {Water Research},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  volume = {190},
	  pages = {116756},
	  url = {http://www.sciencedirect.com/science/article/pii/S0043135420312896},
	  doi = {https://doi.org/10.1016/j.watres.2020.116756}
	}
	</pre></td>
</tr>






<tr id="Macchi2021" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.rinp.2021.104513">Oxygen related defects and vacancy clusters identified in sputtering grown UOx thin films by positron annihilation techniques</a></em><br />
C.E. Macchi, A. Somoza, J. Guimpel, S. Suárez, W. Egger, C.P. Hugenschmidt, S. Mariazzi and R.S. Brusa; Results in Physics
<b> 27</b>

 (2021)
 104513.
<p class="infolinks">
[<a href="javascript:toggleInfo('Macchi2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Macchi2021','bibtex')">BibTeX</a>]
[<a href="https://www.sciencedirect.com/science/article/pii/S2211379721006239?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/j.rinp.2021.104513">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Macchi2021.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Macchi2021" class="abstract noshow">
	<td><b>Abstract</b>: We experimentally studied the formation of vacancy clusters and oxygen related defects in uranium oxide (UOx) thin films (<70 nm) changing the stoichiometry in the x = 2.2–3.5 range. Films were deposited on Si(001) by DC magnetron sputtering varying the substrate temperature (room temperature, 400 °C and 600 °C) and different relative O2 partial pressures in the argon-oxygen mixture. The different species of vacancy-like defects are identified by the combination of depth dependent positron annihilation techniques and by comparison of the experimental data with ab-initio calculations. In samples growth up to 400 °C substrate temperature, di- and tri- vacancies were formed whereas at higher temperature, hexa-vacancies and larger vacancy clusters appear. Film growth at increasing oxygen partial pressure was found not to be correlated with an increase of oxygen defects, but with the formation of more complex vacancy clusters. The presence of oxygen related defects is revealed by identifying preferential positron annihilations with oxygen electrons. Moreover, uranium vacancies inside vacancy clusters are identified by localization of positrons, in agreement with ab-initio calculations.</td>
</tr>
<tr id="bib_Macchi2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Macchi2021,
	  author = {Macchi, Carlos Eugenio and Somoza, Alberto and Guimpel, Julio and Suárez, Sebastián and Egger, Werner and Hugenschmidt, Christoph P. and Mariazzi, Sebastiano and Brusa, Roberto Sennen},
	  title = {Oxygen related defects and vacancy clusters identified in sputtering grown UOx thin films by positron annihilation techniques},
	  journal = {Results in Physics},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  volume = {27},
	  pages = {104513},
	  url = {https://www.sciencedirect.com/science/article/pii/S2211379721006239?via%3Dihub},
	  doi = {https://doi.org/10.1016/j.rinp.2021.104513}
	}
	</pre></td>
</tr>






<tr id="Mitteneder2021" class="entry">

<td>
<em> <a href="http://www.barc.gov.in/symposium/psd-2020/">Formation of a micrometer positron beam at the Scanning Positron Microscope</a></em><br />
J. Mitteneder;
In: 
<em>  Positron Studies of Defects 2020 (PSD-20), March 22-27, 2020, India</em>


 (2021)

.
<p class="infolinks">
[<a href="javascript:toggleInfo('Mitteneder2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Mitteneder2021','bibtex')">BibTeX</a>]
[<a href="http://www.barc.gov.in/symposium/psd-2020/">URL</a>]


</td>
</tr> 
<tr id="abs_Mitteneder2021" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation lifetime spectroscopy (PALS) is a powerful tool in a wide range of material science. To investigate inhomogeneous defect distributions, e.g. close to fatigue cracks or dispersive alloy, with PALS a monochromatic pulsed positron beam of variable energy with a diameter in the range of 1 µm and a pulse width  of 150 ps FWHM is needed.<p>To this aim the Scanning Positron Microscope (SPM) was developed and built at the Universität der Bundeswehr [1]. To overcome the limit of low count-rates and corresponding exceedingly long measurement times the SPM is currently transferred to the intense positron source NEPOMUC at the MLZ in Garching. To connect the SPM to NEPOMUC a special interface has been constructed [2, 3] as shown in Fig. 1.<p>A sophisticated beam preparation, including multiple remoderation steps, is needed to reach a lateral resolution in the micro-meter range. An essential component of the interface is the positron elevator which compen-sates for the energy loss caused by the remoderation process without altering other important beam properties like time structure and brightness [4, 5]. 	In this contribution we will give an overview of the SPM and the SPM-Interface with a focus on the positron elevator and the newly developed frequency stabilization system. The bunching system of the interface works at 50 MHz. This is also the resonance frequency of the resonator which provides a 10 kV sine-wave signal for the positron elevator. To ensure proper operation of the whole system, stable amplitude, stable frequency and stable phase of the RF-signal are crucial.<p>[1] W. Egger, Proceedings of the International School of Physics “Enrico Fermi”, Course CLXXIV , IOS Press: Amsterdam, 419 (2010).<br>[2] Ch. Hugenschmidt et al. , J. large scale research facilities JLSRF 1, A 22 (2015).<br>[3] M. Dickmann, Radio Frequency Elevation and Characterization of a Pulsed Positron Microbeam, Ph.D.thesis, Universität der Bundeswehr München 2017.<br>[4] M. Dickmann et al., Nucl. Instr. Methods in Phys. Res. A 821, 40 – 43 (2016).<br>[5] J. Mitteneder et al., Journal of Physics: Conference Series 791, p. 012006 (2017).</td>
</tr>
<tr id="bib_Mitteneder2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@conference{Mitteneder2021,
	  author = {Mitteneder, Johannes},
	  title = {Formation of a micrometer positron beam at the Scanning Positron Microscope},
	  booktitle = {Positron Studies of Defects 2020 (PSD-20), March 22-27, 2020, India},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  url = {http://www.barc.gov.in/symposium/psd-2020/}
	}
	</pre></td>
</tr>






<tr id="Roman2021" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.isci.2021.102095">Non-steady diffusion and adsorption of organic micropollutants in ion-exchange membranes: effect of the membrane thickness</a></em><br />
M. Roman, P. Roman, R. Verbeke, L. Gutierrez, M. Vanoppen, M. Dickmann, W. Egger, I. Vankelecom, J. Post, E. Cornelissen, K. Keesman and A. Verliefde; iScience
<b> 24</b>
 (2)
 (2021)
 102095.
<p class="infolinks">
[<a href="javascript:toggleInfo('Roman2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Roman2021','bibtex')">BibTeX</a>]
[<a href="https://www.sciencedirect.com/science/article/pii/S2589004221000638">URL</a>]
[<a href="https://doi.org/10.1016/j.isci.2021.102095">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Roman2021.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Roman2021" class="abstract noshow">
	<td><b>Abstract</b>: Summary<br>There is no efficient wastewater treatment solution for removing organic micropollutants (OMPs), which, therefore, are continuously introduced to the Earth's surface waters. This creates a severe risk to aquatic ecosystems and human health. In emerging water treatment processes based on ion-exchange membranes (IEM), transport of OMPs through membranes remains unknown. We performed a comprehensive investigation of the OMP transport through a single IEM under non-steady-state conditions. For the first time, positron annihilation lifetime spectroscopy was used to study differences in the free volume element radius between anion- and cation-exchange membranes, and between their thicknesses. The dynamic diffusion-adsorption model was used to calculate the adsorption and diffusion coefficients of OMPs. Remarkably, diffusion coefficients increased with the membrane thickness, where its surface resistance was more evident in thinner membranes. Presented results will contribute to the improved design of next-generation IEMs with higher selectivity toward multiple types of organic compounds.</td>
</tr>
<tr id="bib_Roman2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Roman2021,
	  author = {Roman, Malgorzata and Roman, Pawel and Verbeke, Rhea and Gutierrez, Leonardo and Vanoppen, Marjolein and Dickmann, Marcel and Egger, Werner and Vankelecom, Ivo and Post, Jan and Cornelissen, Emile and Keesman, Karel and Verliefde, Arne},
	  title = {Non-steady diffusion and adsorption of organic micropollutants in ion-exchange membranes: effect of the membrane thickness},
	  journal = {iScience},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  volume = {24},
	  number = {2},
	  pages = {102095},
	  url = {https://www.sciencedirect.com/science/article/pii/S2589004221000638},
	  doi = {https://doi.org/10.1016/j.isci.2021.102095}
	}
	</pre></td>
</tr>






<tr id="Tu2021" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/anie.202014791">Template-mediated control over polymorphism in the vapor-assisted formation of zeolitic imidazolate framework powders and films</a></em><br />
M. Tu, D.E. Kravchenko, B. Xia, V. Rubio-Giménez, N. Wauteraerts, R. Verbeke, I. Vankelecom, T. Stassin, W. Egger, M. Dickmann, H. Amenitsch and R. Ameloot; Angewandte Chemie International Edition
<b> 60</b>
 (14)
 (2021)
 7553-7558.
<p class="infolinks">
[<a href="javascript:toggleInfo('Tu2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Tu2021','bibtex')">BibTeX</a>]
[<a href="https://onlinelibrary.wiley.com/doi/abs/10.1002/anie.202014791">URL</a>]
[<a href="https://doi.org/10.1002/anie.202014791">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Tu2021.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Tu2021" class="abstract noshow">
	<td><b>Abstract</b>: The landscape of possible polymorphs for some metal-organic frameworks (MOFs) can pose a challenge for controlling the synthesis outcome. In this work, we demonstrate how a template can enable such control in the vapor-assisted formation of zeolitic imidazolate framework (ZIF) powders and thin films. Introducing a small amount of ethanol or dimethylformamide vapor during the reaction between ZnO and 4,5-dichloroimidazole vapor results in the formation of the porous ZIF-71 phase; other conditions lead to the formation of the dense ZIF-72 phase or amorphous materials. Time-resolved in situ small-angle X-ray scattering reveals that the porous phase is metastable and can be transformed into its dense polymorph. This transformation is avoided through the introduction of template vapor. The porosity of the resulted ZIF powders and films was studied by N 2 and Kr physisorption, as well as positron annihilation lifetime spectroscopy. The templating principle was demonstrated for other members of the ZIF family as well, including the ZIF-7 series, ZIF-8Cl, and ZIF-8Br.</td>
</tr>
<tr id="bib_Tu2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Tu2021,
	  author = {Tu, Min and Kravchenko, Dmitry E. and Xia, Benzheng and Rubio-Giménez, Víctor and Wauteraerts, Nathalie and Verbeke, Rhea and Vankelecom, Ivo and Stassin, Timothée and Egger, Werner and Dickmann, Marcel and Amenitsch, Heinz and Ameloot, Rob},
	  title = {Template-mediated control over polymorphism in the vapor-assisted formation of zeolitic imidazolate framework powders and films},
	  journal = {Angewandte Chemie International Edition},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  volume = {60},
	  number = {14},
	  pages = {7553--7558},
	  url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/anie.202014791},
	  doi = {https://doi.org/10.1002/anie.202014791}
	}
	</pre></td>
</tr>






<tr id="Verbeke2021" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/acs.estlett.1c00515">Chlorine-Resistant Epoxide-Based Membranes for Sustainable Water Desalination</a></em><br />
R. Verbeke, D.M. Davenport, T. Stassin, S. Eyley, M. Dickmann, A.J. Cruz, P. Dara, C.L. Ritt, C. Bogaerts, W. Egger, R. Ameloot, J. Meersschaut, W. Thielemans, G. Koeckelberghs, M. Elimelech and I.F.J. Vankelecom; Environmental Science and Technology Letters
<b> 8</b>
 (9)
 (2021)
 818-824.
<p class="infolinks">
[<a href="javascript:toggleInfo('Verbeke2021','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Verbeke2021','bibtex')">BibTeX</a>]
[<a href="https://pubs.acs.org/doi/10.1021/acs.estlett.1c00515">URL</a>]
[<a href="https://doi.org/10.1021/acs.estlett.1c00515">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Verbeke2021.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Verbeke2021" class="abstract noshow">
	<td><b>Abstract</b>: The hypersensitivity of state-of-the-art polyamide-based membranes to chlorine is a major source of premature membrane failure and module replacement in water desalination plants. This problem can currently only be solved by implementing pre- and post-treatment processes involving additional chemical use and energy input, thus increasing environmental, capital, and operational costs. Herein, we report a chlorine-, acid-, and base-resistant desalination membrane comprising a cross-linked epoxide-based polymer-selective layer with permanent positive charges. These novel membranes exhibit high mono- and divalent salt rejection (81% NaCl, 87% CaCl2, 89% MgCl2) and a water permeance of ∼2 L m-2 h-1 bar-1, i.e., desalination performance comparable to that of commercially available nanofiltration membranes. Unlike conventional polyamide-based membranes, this new generation of epoxide-based membranes takes advantage of the intrinsic chemical stability of ether bonds while achieving the polymer and charge density needed for desalination. In doing so, the stability of these membranes opens new horizons for sustainable water purification and many other separations in harsh media in a variety of applications (e.g., solvent recovery, gas separations, redox flow batteries).<br>The hypersensitivity of state-of-the-art polyamide-based membranes to chlorine is a major source of premature membrane failure and module replacement in water desalination plants. This problem can currently only be solved by implementing pre- and post-treatment processes involving additional chemical use and energy input, thus increasing environmental, capital, and operational costs. Herein, we report a chlorine-, acid-, and base-resistant desalination membrane comprising a cross-linked epoxide-based polymer-selective layer with permanent positive charges. These novel membranes exhibit high mono- and divalent salt rejection (81% NaCl, 87% CaCl2, 89% MgCl2) and a water permeance of ∼2 L m-2 h-1 bar-1, i.e., desalination performance comparable to that of commercially available nanofiltration membranes. Unlike conventional polyamide-based membranes, this new generation of epoxide-based membranes takes advantage of the intrinsic chemical stability of ether bonds while achieving the polymer and charge density needed for desalination. In doing so, the stability of these membranes opens new horizons for sustainable water purification and many other separations in harsh media in a variety of applications (e.g., solvent recovery, gas separations, redox flow batteries).</td>
</tr>
<tr id="bib_Verbeke2021" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Verbeke2021,
	  author = {Verbeke, Rhea and Davenport, Douglas M. and Stassin, Timothée and Eyley, Samuel and Dickmann, Marcel and Cruz, Alexander John and Dara, Praveen and Ritt, Cody L. and Bogaerts, Caroline and Egger, Werner and Ameloot, Rob and Meersschaut, Johan and Thielemans, Wim and Koeckelberghs, Guy and Elimelech, Menachem and Vankelecom, Ivo F. J.},
	  title = {Chlorine-Resistant Epoxide-Based Membranes for Sustainable Water Desalination},
	  journal = {Environmental Science and Technology Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2021},
	  volume = {8},
	  number = {9},
	  pages = {818-824},
	  url = {https://pubs.acs.org/doi/10.1021/acs.estlett.1c00515},
	  doi = {https://doi.org/10.1021/acs.estlett.1c00515}
	}
	</pre></td>
</tr>




<tr id="2020" class="entry"><td><h1>2020</h1></td></tr>

<tr id="Amelrooij2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/adsu.202000003">Characterization of Enzymatically Synthesized Titania Thin Films Using Positron Annihilation Spectroscopy Reveals Low-Cost Approach for Organic/Inorganic Photovoltaic Cells</a></em><br />
E.F. van Amelrooij, H. Schut, W. Egger, M. Dickmann, C. Hugenschmidt, L. Mallée, U. Hanefeld, D.G.G. McMillan and S.W.H. Eijt; Advanced Sustainable Systems
<b> 4</b>
 (6)
 (2020)
 2000003.
<p class="infolinks">
[<a href="javascript:toggleInfo('Amelrooij2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Amelrooij2020','bibtex')">BibTeX</a>]
[<a href="https://onlinelibrary.wiley.com/doi/abs/10.1002/adsu.202000003">URL</a>]
[<a href="https://doi.org/10.1002/adsu.202000003">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Amelrooij2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Amelrooij2020" class="abstract noshow">
	<td><b>Abstract</b>: Abstract A new method is developed to produce mesoporous titania thin films at room temperature using the enzyme papain in a dip-coating procedure, providing low-cost titania films in a sustainable manner. Quartz crystal microbalance, positron annihilation Doppler broadening and lifetime spectroscopy, scanning electron microscopy, and X-ray diffraction are used to determine the deposition and structural properties of the films. As-deposited films have low densities ρ ≈ 0.6 g cm−3, contain small micropores and proteins, and exhibit corrugated surfaces. Annealing at temperatures of 300 °C or higher leads to the destruction and evaporation of most of the organic material, resulting in a thickness decrease of 50–60 more pure titania films with increased density, an increase in micropore size and a decrease in the concentration and size of atomic-scale vacancies. Up to 50 layers could be stacked, allowing easy control over the total layer thickness. Based on these titania films, first test devices consisting of natural dye-sensitized solar cells are produced, that show photovoltaic activity and indicate possibilities for low-cost, accessible, organic production of solar cells. Given the wide range of other applications for titania, this new method is a promising candidate for improving the fabrication of those products with respect to cost, sustainability, and production speed.</td>
</tr>
<tr id="bib_Amelrooij2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Amelrooij2020,
	  author = {van Amelrooij, Edward F. and Schut, Henk and Egger, Werner and Dickmann, Marcel and Hugenschmidt, Christoph and Mallée, Lloyd and Hanefeld, Ulf and McMillan, Duncan G. G. and Eijt, Stephan W. H.},
	  title = {Characterization of Enzymatically Synthesized Titania Thin Films Using Positron Annihilation Spectroscopy Reveals Low-Cost Approach for Organic/Inorganic Photovoltaic Cells},
	  journal = {Advanced Sustainable Systems},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {4},
	  number = {6},
	  pages = {2000003},
	  url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/adsu.202000003},
	  doi = {https://doi.org/10.1002/adsu.202000003}
	}
	</pre></td>
</tr>






<tr id="Bilchak2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/acsnano.0c07049">Tuning Selectivities in Gas Separation Membranes Based on Polymer-Grafted Nanoparticles</a></em><br />
C.R. Bilchak, M. Jhalaria, Y. Huang, Z. Abbas, J. Midya, F.M. Benedetti, D. Parisi, W. Egger, M. Dickmann, M. Minelli, F. Doghieri, A. Nikoubashman, C.J. Durning, D. Vlassopoulos, J. Jestin, Z.P. Smith, B.C. Benicewicz, M. Rubinstein, L. Leibler and S.K. Kumar; ACS Nano
<b> 14</b>
 (12)
 (2020)
 17174-17183.
<p class="infolinks">
[<a href="javascript:toggleInfo('Bilchak2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Bilchak2020','bibtex')">BibTeX</a>]
[<a href="https://pubs.acs.org/doi/10.1021/acsnano.0c07049">URL</a>]
[<a href="https://doi.org/10.1021/acsnano.0c07049">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Bilchak2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Bilchak2020" class="abstract noshow">
	<td><b>Abstract</b>: Polymer membranes are critical to many sustainability applications that require the size-based separation of gas mixtures. Despite their ubiquity, there is a continuing need to selectively affect the transport of different mixture components while enhancing mechanical strength and hindering aging. Polymer-grafted nanoparticles (GNPs) have recently been explored in the context of gas separations. Membranes made from pure GNPs have higher gas permeability and lower selectivity relative to the neat polymer because they have increased mean free volume. Going beyond this ability to manipulate the mean free volume by grafting chains to a nanoparticle, the conceptual advance of the present work is our finding that GNPs are spatially heterogeneous transport media, with this free volume distribution being easily manipulated by the addition of free polymer. In particular, adding a small amount of appropriately chosen free polymer can increase the membrane gas selectivity by up to two orders of magnitude while only moderately reducing small gas permeability. Added short free chains, which are homogeneously distributed in the polymer layer of the GNP, reduce the permeability of all gases but yield no dramatic increases in selectivity. In contrast, free chains with length comparable to the grafts, which populate the interstitial pockets between GNPs, preferentially hinder the transport of the larger gas and thus result in large selectivity increases. This work thus establishes that we can favorably manipulate the selective gas transport properties of GNP membranes through the entropic effects associated with the addition of free chains.</td>
</tr>
<tr id="bib_Bilchak2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Bilchak2020,
	  author = {Bilchak, Connor R. and Jhalaria, Mayank and Huang, Yucheng and Abbas, Zaid and Midya, Jiarul and Benedetti, Francesco M. and Parisi, Daniele and Egger, Werner and Dickmann, Marcel and Minelli, Matteo and Doghieri, Ferruccio and Nikoubashman, Arash and Durning, Christopher J. and Vlassopoulos, Dimitris and Jestin, Jacques and Smith, Zachary P. and Benicewicz, Brian C. and Rubinstein, Michael and Leibler, Ludwik and Kumar, Sanat K.},
	  title = {Tuning Selectivities in Gas Separation Membranes Based on Polymer-Grafted Nanoparticles},
	  journal = {ACS Nano},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {14},
	  number = {12},
	  pages = {17174-17183},
	  note = {PMID: 33216546},
	  url = {https://pubs.acs.org/doi/10.1021/acsnano.0c07049},
	  doi = {https://doi.org/10.1021/acsnano.0c07049}
	}
	</pre></td>
</tr>






<tr id="Checchetto2020" class="entry">

<td>
<em> <a href="https://doi.org/10.12693/APhysPolA.137.118">Open Volumes Structure and Molecular Transport in Biopolymer Nanocomposites</a></em><br />
R. Checchetto, L. Penasa, M. Dickmann, W. Egger, S. Tarter and R.S. Brusa; Acta Physica Polonica A
<b> 137</b>

 (2020)
 118-121.
<p class="infolinks">
[<a href="javascript:toggleInfo('Checchetto2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Checchetto2020','bibtex')">BibTeX</a>]
[<a href="http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html">URL</a>]
[<a href="https://doi.org/10.12693/APhysPolA.137.118">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Checchetto2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Checchetto2020" class="abstract noshow">
	<td><b>Abstract</b>: We discuss gas barrier mechanisms in biopolymer nanocomposite in which fillers of different natures and concentrations are added. The kinetics of gas transport is studied by gas phase permeation techniques and free volumes are analyzed by positron annihilation lifetime spectroscopy. Gas barrier properties of two biopolymer nanocomposite films are presented in relation to their free volume. The first film is poly(3-hydroxybutyrate-co-3-hydroxyhexanoate) (PHBH) containing 0.25 wt% of graphene oxide (GO) filler nanoparticles. The second film is poly(lactic acid) (PLA) in which cellulose nanofibrils have been dispersed with content from 4.1 to 12.4 vol.%. It is shown that in both biopolymer films the filler addition improves their gas barrier properties but with different mechanism.</td>
</tr>
<tr id="bib_Checchetto2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Checchetto2020,
	  author = {Checchetto, R. and Penasa, L. and Dickmann, M. and Egger, W. and Tarter, S. and Brusa, R. S.},
	  title = {Open Volumes Structure and Molecular Transport in Biopolymer Nanocomposites},
	  journal = {Acta Physica Polonica A},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {137},
	  pages = {118--121},
	  url = {http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html},
	  doi = {https://doi.org/10.12693/APhysPolA.137.118}
	}
	</pre></td>
</tr>






<tr id="Davenport2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.memsci.2020.118268">Thin film composite membrane compaction in high-pressure reverse osmosis</a></em><br />
D.M. Davenport, C.L. Ritt, R. Verbeke, M. Dickmann, W. Egger, I.F.J. Vankelecom and M. Elimelech; Journal of Membrane Science
<b> 610</b>

 (2020)
 118268.
<p class="infolinks">
[<a href="javascript:toggleInfo('Davenport2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Davenport2020','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0376738820308462">URL</a>]
[<a href="https://doi.org/10.1016/j.memsci.2020.118268">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Davenport2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Davenport2020" class="abstract noshow">
	<td><b>Abstract</b>: Membrane deformation under an applied hydraulic pressure, often termed compaction, is observed in almost all pressure-driven membrane processes. Most notably, compaction decreases water permeability in conventional reverse osmosis (RO) and is expected to critically hinder high-pressure reverse osmosis (HPRO) for hypersaline brine desalination. In this work, we demonstrated that compaction decreases the water permeability of commercial RO membranes from 2.0 L m−2 h−1 bar−1 at 70 bar applied hydraulic pressure to 1.3 L m−2 h−1 bar−1 at 150 bar. The morphological effects of compaction were primarily associated with changes in the support layer, where a &nbsp;60% decrease in cross-sectional thickness is observed following compaction at 150 bar hydraulic pressure. In contrast, positron annihilation lifetime spectroscopy demonstrates that the selective layer does not compact irreversibly. The mechanism that drives compaction was found to be the difference in hydraulic pressure across the interface of the selective and support layers. We further found that compaction can reduce the support layer surface porosity by up to &nbsp;95%. This decreased porosity is identified as the cause for compaction-induced water permeability decline, while the intrinsic permeability of the selective layer is not influenced by compaction. As such, we conclude that compaction of the support layer has an inextricable impact on composite membrane performance. Finally, we propose recommendations for developing compaction-resistant membranes that can maintain high water permeability, and thus good desalination performance, in high-pressure membrane applications, such as HPRO.</td>
</tr>
<tr id="bib_Davenport2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Davenport2020,
	  author = {Davenport, Douglas M. and Ritt, Cody L. and Verbeke, Rhea and Dickmann, Marcel and Egger, Werner and Vankelecom, Ivo F. J. and Elimelech, Menachem},
	  title = {Thin film composite membrane compaction in high-pressure reverse osmosis},
	  journal = {Journal of Membrane Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {610},
	  pages = {118268},
	  url = {http://www.sciencedirect.com/science/article/pii/S0376738820308462},
	  doi = {https://doi.org/10.1016/j.memsci.2020.118268}
	}
	</pre></td>
</tr>






<tr id="Dawley2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/5.0011136">Defect accommodation in off-stoichiometric (SrTiO3)nSrO Ruddlesden–Popper superlattices studied with positron annihilation spectroscopy</a></em><br />
N.M. Dawley, B.H. Goodge, W. Egger, M.R. Barone, L.F. Kourkoutis, D.J. Keeble and D.G. Schlom; Applied Physics Letters
<b> 117</b>
 (6)
 (2020)
 062901.
<p class="infolinks">
[<a href="javascript:toggleInfo('Dawley2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Dawley2020','bibtex')">BibTeX</a>]
[<a href="https://aip.scitation.org/doi/10.1063/5.0011136">URL</a>]
[<a href="https://doi.org/10.1063/5.0011136">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Dawley2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Dawley2020" class="abstract noshow">
	<td><b>Abstract</b>: The low dielectric loss underlying the record performance of strained (SrTiO3)nSrO Ruddlesden–Popper films as tunable microwave dielectrics was postulated to arise from (SrO)2 faults accommodating local non-stoichiometric defects. Here, we explore the effect of non-stoichiometry on (SrTiO3)nSrO using positron annihilation lifetime spectroscopy on a composition series of 300 nm thick n = 6 (Sr1+δTiO3)nSrO thin films. These films show titanium-site vacancies across the stoichiometry series, with evidence that TiOx vacancy complexes dominate. Little change in defect populations is observed across the series, indicating the ability of Ruddlesden–Popper phases to accommodate ± 5% off-stoichiometry. This ability for defect accommodation is corroborated by scanning transmission electron microscopy with electron energy loss spectroscopy.<br>The synthesis science work at Cornell was supported by the U.S. Department of Energy, Office of Basic Sciences, Division of Materials Sciences and Engineering, under Award No. DE-SC0002334. Sample preparation was in part facilitated by the Cornell NanoScale Facility, a member of the National Nanotechnology Coordinated Infrastructure (NNCI), which was supported by the National Science Foundation (Grant No. NNCI-1542081). This work made use of the Cornell Center for Materials Research Shared Facilities, which are supported through the NSF MRSEC program (No. DMR-1719875). B.H.G. and L.F.K. acknowledge support from the Department of Defense Air Force Office of Scientific Research (No. FA 9550-16-1-0305). The FEI Titan Themis 300 was acquired through No. NSF-MRI-1429155, with additional support from Cornell University, the Weill Institute, and the Kavli Institute at Cornell. The Thermo Fisher Helios G4 X FIB was acquired with support by NSF No. DMR-1539918. D.J.K. gratefully acknowledges the financial support provided by FRM-II to perform the high-intensity positron beam measurements at Heinz Maier-Leibnitz Zentrum (MLZ), Garching, Germany.</td>
</tr>
<tr id="bib_Dawley2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Dawley2020,
	  author = {Dawley, Natalie M. and Goodge, Berit H. and Egger, Werner and Barone, Matthew R. and Kourkoutis, Lena F. and Keeble, David J. and Schlom, Darrell G.},
	  title = {Defect accommodation in off-stoichiometric (SrTiO3)nSrO Ruddlesden–Popper superlattices studied with positron annihilation spectroscopy},
	  journal = {Applied Physics Letters},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {117},
	  number = {6},
	  pages = {062901},
	  url = {https://aip.scitation.org/doi/10.1063/5.0011136},
	  doi = {https://doi.org/10.1063/5.0011136}
	}
	</pre></td>
</tr>






<tr id="Dickmann2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.polymer.2020.122729">Interface nanocavities in poly (lactic acid) membranes with dispersed cellulose nanofibrils: Their role in the gas barrier performances</a></em><br />
M. Dickmann, S. Tarter, W. Egger, A. Pegoretti, D. Rigotti, R.S. Brusa and R. Checchetto; Polymer
<b> 202</b>

 (2020)
 122729.
<p class="infolinks">
[<a href="javascript:toggleInfo('Dickmann2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Dickmann2020','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0032386120305590">URL</a>]
[<a href="https://doi.org/10.1016/j.polymer.2020.122729">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Dickmann2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Dickmann2020" class="abstract noshow">
	<td><b>Abstract</b>: Poly (lactic acid) nanocomposites containing lauryl-functionalized cellulose nanoparticles were prepared by solution-casting method and structurally characterized. The gas transport process was studied in &nbsp; 50 μm thick nanocomposite films with filler contents up to 12 vol% using He, 2H2, N2 and CO2 as test gases. The gas permeability and diffusivity was evaluated by studying the permeation process using a specific mass spectroscopy technique in the temperature range from 298 K to 340 K in transient and stationary transport conditions. We present original diffusivity and permeability data as a function of the temperature together with the obtained values for the activation energy. Gas transport data were correlated with information on the nanocomposite free volume structure obtained by positron annihilation lifetime spectroscopy. The results indicate that the decrease of the gas barrier performances observed in nanocomposites with filler contents larger than &nbsp; 5 vol% is due to an increased gas solubility caused by the formation of rigid cavities at the interface between the polymer matrix and micrometer-sized filler aggregations.</td>
</tr>
<tr id="bib_Dickmann2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Dickmann2020,
	  author = {Dickmann, M. and Tarter, S. and Egger, W. and Pegoretti, A. and Rigotti, D. and Brusa, R. S. and Checchetto, R.},
	  title = {Interface nanocavities in poly (lactic acid) membranes with dispersed cellulose nanofibrils: Their role in the gas barrier performances},
	  journal = {Polymer},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {202},
	  pages = {122729},
	  url = {http://www.sciencedirect.com/science/article/pii/S0032386120305590},
	  doi = {https://doi.org/10.1016/j.polymer.2020.122729}
	}
	</pre></td>
</tr>






<tr id="Dickmann2020a" class="entry">

<td>
<em> <a href="https://doi.org/10.12693/APhysPolA.137.149">Upgrade of the NEPOMUC Remoderator</a></em><br />
M. Dickmann, W. Egger, G. Kögel, S. Vohburger and C. Hugenschmidt; Acta Physica Polonica A
<b> 137</b>

 (2020)
 149-151.
<p class="infolinks">
[<a href="javascript:toggleInfo('Dickmann2020a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Dickmann2020a','bibtex')">BibTeX</a>]
[<a href="http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html">URL</a>]
[<a href="https://doi.org/10.12693/APhysPolA.137.149">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Dickmann2020a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Dickmann2020a" class="abstract noshow">
	<td><b>Abstract</b>: The neutron-induced positron source Munich (NEPOMUC) provides a monochromatic low-energy positron beam with an intensity of >1×109e+ s-1 and a full width at half maximum (FWHM) diameter of about 10 mm. To create a small beam focus or sharp positron pulses of 100 ps FWHM the beam brightness needs to be enhanced by remoderation. This is achieved by focusing the primary beam magnetically onto a tungsten single crystal W(100) in reflection geometry. Afterwards the beam exhibits an intensity of >5×107e+ s-1 and a diameter of <2 mm FWHM. To further optimize the beam quality of NEPOMUC we redesigned the remoderation unit. The new setup allows a precise positioning of the remoderator crystal within the focus of the magnetic lens. Additionally, a replacement of the crystal within several minutes and without breaking the beamline vacuum is possible that offers the opportunity for systematic tests of different remoderator materials.</td>
</tr>
<tr id="bib_Dickmann2020a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Dickmann2020a,
	  author = {Dickmann, M. and Egger, W. and Kögel, G. and Vohburger, S. and Hugenschmidt, C.},
	  title = {Upgrade of the NEPOMUC Remoderator},
	  journal = {Acta Physica Polonica A},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {137},
	  pages = {149--151},
	  url = {http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html},
	  doi = {https://doi.org/10.12693/APhysPolA.137.149}
	}
	</pre></td>
</tr>






<tr id="Eijt2020" class="entry">

<td>
<em> <a href="https://doi.org/10.12693/APhysPolA.137.205">Photochromic YOxHy Thin Films Examinedby in situ Positron Annihilation Spectroscopy</a></em><br />
S.W.H. Eijt, T.W.H. de Krom, D. Chaykina, H. Schut, G. Colombi, S. Cornelius, W. Egger, M. Dickmann, C. Hugenschmidt and B. Dam; Acta Physica Polonica A
<b> 137</b>

 (2020)
 205-208.
<p class="infolinks">
[<a href="javascript:toggleInfo('Eijt2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Eijt2020','bibtex')">BibTeX</a>]
[<a href="http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html">URL</a>]
[<a href="https://doi.org/10.12693/APhysPolA.137.205">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Eijt2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Eijt2020" class="abstract noshow">
	<td><b>Abstract</b>: Doppler broadening positron annihilation spectroscopy depth profiles were collected on photochromic YOxHy thin films. In situ UV illumination of photochromic semiconductor YOxHy films leads to an increase in S-parameter and a large reduction in W-parameter, possibly caused by a change in the charge state of vacancies or the growth of hydrogen-rich metallic Y(Ox)Hy clusters, albeit that vacancy formation or changes in positronium formation during illumination might also play a role. Intriguingly, both the S- and W-parameters increase during thermal bleaching, indicating that another process takes place. The Doppler parameters do not return to their initial values after complete thermal bleaching, suggesting that persistent local rearrangements of vacancies and possibly hydride ions have occurred during the full photodarkening-thermal bleaching cycle. Positron annihilation lifetime spectroscopy shows that a small fraction of positronium is formed in as-deposited YOxHy films, indicating that the films contain some nanopores.</td>
</tr>
<tr id="bib_Eijt2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Eijt2020,
	  author = {Eijt, S. W. H. and de Krom, T. W. H. and Chaykina, D. and Schut, H. and Colombi, G. and Cornelius, S. and Egger, W. and Dickmann, M. and Hugenschmidt, C. and Dam, B.},
	  title = {Photochromic YOxHy Thin Films Examinedby in situ Positron Annihilation Spectroscopy},
	  journal = {Acta Physica Polonica A},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {137},
	  pages = {205--208},
	  url = {http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html},
	  doi = {https://doi.org/10.12693/APhysPolA.137.205}
	}
	</pre></td>
</tr>






<tr id="Horn-Stanja2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/2516-1067/ab6f44">Injection of intense low-energy reactor-based positron beams into a supported magnetic dipole trap</a></em><br />
J. Horn-Stanja, E.V. Stenson, M.R. Stoneking, M. Singer, U. Hergenhahn, S. Ni&szlig;l, H. Saitoh, T.S. Pedersen, M. Dickmann, C. Hugenschmidt and J.R. Danielson; Plasma Research Express
<b> 2</b>
 (1)
 (2020)
 015006.
<p class="infolinks">
[<a href="javascript:toggleInfo('Horn-Stanja2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Horn-Stanja2020','bibtex')">BibTeX</a>]
[<a href="https://iopscience.iop.org/article/10.1088/2516-1067/ab6f44">URL</a>]
[<a href="https://doi.org/10.1088/2516-1067/ab6f44">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Horn-Stanja2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Horn-Stanja2020" class="abstract noshow">
	<td><b>Abstract</b>: An increased low-energy positron flux is obtained from the reactor based NEPOMUC source when using its primary beam at energies as low as 20 eV. First experiments with this beam in a supported magnetic dipole trap resulted in the maximum current of injected positrons to date. According to single-particle simulations, remaining limitations in the injection efficiency, observed in the experiment, can be attributed to the spatial spread of the beam. In the first trapping measurements with this beam, top-down asymmetries in the electrostatic trapping potential are found to be detrimental to confinement.</td>
</tr>
<tr id="bib_Horn-Stanja2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Horn-Stanja2020,
	  author = {Horn-Stanja, J. and Stenson, E. V. and Stoneking, M. R. and Singer, M. and Hergenhahn, U. and Ni&szlig;l, S. and Saitoh, H. and Pedersen, T. Sunn and Dickmann, M. and Hugenschmidt, C. and Danielson, J. R.},
	  title = {Injection of intense low-energy reactor-based positron beams into a supported magnetic dipole trap},
	  journal = {Plasma Research Express},
	  publisher = {IOP Publishing},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {2},
	  number = {1},
	  pages = {015006},
	  url = {https://iopscience.iop.org/article/10.1088/2516-1067/ab6f44},
	  doi = {https://doi.org/10.1088/2516-1067/ab6f44}
	}
	</pre></td>
</tr>






<tr id="Petschke2020" class="entry">

<td>
<em> <a href="https://doi.org/10.12693/APhysPolA.137.171">Limitations on the positron lifetime spectra decomposability applying the iterative least-square re-convolution method using the instrumental responses obtained from 207Bi and 60Co</a></em><br />
D. Petschke, R. Helm, M. Haaks and T.E.M. Staab; Acta Physica Polonica A
<b> 137</b>
 (2, Proceedings of 15th International Workshop on Slow Positron Beam Techniques \& Applications (SLOPOS-15) Prague, Czech Republic, September 2–6, 2019)
 (2020)
 171-176.
<p class="infolinks">
[<a href="javascript:toggleInfo('Petschke2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Petschke2020','bibtex')">BibTeX</a>]
[<a href="http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html">URL</a>]
[<a href="https://doi.org/10.12693/APhysPolA.137.171">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Petschke2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Petschke2020" class="abstract noshow">
	<td><b>Abstract</b>: Since the decomposition of positron lifetime spectra requires solving an ill-posed and inverse problem, the accurate knowledge of the spectrometer`s instrument response function is crucial for extracting the true underlying physical information of the phenomenon under investigation. In general, the instrument response function is modelled by a superposition of Gaussian functions, since an analytical solution for the convolution with an exponential distribution function exists and, hence, the characteristic lifetimes and its corresponding contributions can be obtained by non-linear least-squares fitting. In contrast, the iterative least-squares re-convolution approach determines the best fit of the recorded lifetime spectrum by re-convoluting a sum of N expected exponential decays with the numerical data of the experimentally obtained instrument response function. For a laboratory setup, two methods exist to estimate the shape of the instrument response function from experiment: (1) the direct method using a 60Co isotope and an indirect method by graphically deconvoluting the monoexponential lifetime spectrum obtained from 207Bi. For both variants, the energies of the incident gamma-rays are considerably different to the energies accompanying the creation (1274 keV) and annihilation (511 keV) of a positron using 22Na: 60Co (1173 keV, 1333 keV), 207Bi (570 keV, 1064 keV). Here we present a detailed study on the basis of plastic scintillators regarding the spectra decomposability by using the re-convolution technique with experimentally obtained instrument response functions. We can clearly show that beyond incident gamma-ray energy differences, the Compton scattering effects and pile-up events represent the limiting factors in this approach.</td>
</tr>
<tr id="bib_Petschke2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Petschke2020,
	  author = {Petschke, Danny and Helm, Ricardo and Haaks, M. and Staab, Torsten E. M.},
	  title = {Limitations on the positron lifetime spectra decomposability applying the iterative least-square re-convolution method using the instrumental responses obtained from 207Bi and 60Co},
	  journal = {Acta Physica Polonica A},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {137},
	  number = {2, Proceedings of 15th International Workshop on Slow Positron Beam Techniques &amp; Applications (SLOPOS-15) Prague, Czech Republic, September 2–6, 2019},
	  pages = {171-176},
	  url = {http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html},
	  doi = {https://doi.org/10.12693/APhysPolA.137.171}
	}
	</pre></td>
</tr>






<tr id="Pipich2020" class="entry">

<td>
<em> <a href="https://doi.org/10.3390/membranes10030048">Morphology of Thin Film Composite Membranes Explored by Small-Angle Neutron Scattering and Positron-Annihilation Lifetime Spectroscopy</a></em><br />
V. Pipich, M. Dickmann, H. Frielinghaus, R. Kasher, C. Hugenschmidt, W. Petry, Y. Oren and D. Schwahn; Membranes
<b> 10</b>
 (3)
 (2020)
 48.
<p class="infolinks">
[<a href="javascript:toggleInfo('Pipich2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Pipich2020','bibtex')">BibTeX</a>]
[<a href="https://www.mdpi.com/2077-0375/10/3/48">URL</a>]
[<a href="https://doi.org/10.3390/membranes10030048">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Pipich2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Pipich2020" class="abstract noshow">
	<td><b>Abstract</b>: The morphology of thin film composite (TFC) membranes used in reverse osmosis (RO) and nanofiltration (NF) water treatment was explored with small-angle neutron scattering (SANS) and positron-annihilation lifetime spectroscopy (PALS). The combination of both methods allowed the characterization of the bulk porous structure from a few &amp;Aring; to &amp;micro;m in radius. PALS shows pores of &nbsp;4.5 &amp;Aring; average radius in a surface layer of about 4 &amp;mu;m thickness, which become &nbsp;40% smaller at the free surface of the membranes. This observation may correlate with the glass state of the involved polymer. Pores of similar size appear in SANS as closely packed pores of &nbsp;6 &amp;Aring; radius distributed with an average distance of &nbsp;30 &amp;Aring;. The main effort of SANS was the characterization of the morphology of the porous polysulfone support layer as well as the fibers of the nonwoven fabric layer. Contrast variation using the media H2O/D2O and supercritical CO2 and CD4 identified the polymers of the support layers as well as internal heterogeneities.</td>
</tr>
<tr id="bib_Pipich2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Pipich2020,
	  author = {Pipich, Vitaliy and Dickmann, Marcel and Frielinghaus, Henrich and Kasher, Roni and Hugenschmidt, Christoph and Petry, Winfried and Oren, Yoram and Schwahn, Dietmar},
	  title = {Morphology of Thin Film Composite Membranes Explored by Small-Angle Neutron Scattering and Positron-Annihilation Lifetime Spectroscopy},
	  journal = {Membranes},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {10},
	  number = {3},
	  pages = {48},
	  url = {https://www.mdpi.com/2077-0375/10/3/48},
	  doi = {https://doi.org/10.3390/membranes10030048}
	}
	</pre></td>
</tr>






<tr id="Slugen2020" class="entry">

<td>
<em> <a href="https://doi.org/10.12693/APhysPolA.137.238">Positron Annihilation Studies of Reactor Pressure Vessel Steels Treated by Hydrogen Ion Implantation</a></em><br />
V. Slugen, S. Pecko, S. Sojak, W. Egger, M. Saro and M. Petriska; Acta Physica Polonica A
<b> 137</b>

 (2020)
 238-241.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2020','bibtex')">BibTeX</a>]
[<a href="http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html">URL</a>]
[<a href="https://doi.org/10.12693/APhysPolA.137.238">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2020" class="abstract noshow">
	<td><b>Abstract</b>: Long term operation of nuclear reactors is one of the most discussed challenges in nuclear power engineering. Radiation degradation of nuclear materials limits the operational lifetime of all nuclear installations or at least decreases its safety margin. This paper is focused on experimental simulation and evaluation of materials via hydrogen ion implantation and on comparison with our previous results obtained from neutron-irradiated samples. In our case, German reactor pressure vessel (RPV) steels, originally from CARINA/CARISMA program, were studied by positron annihilation lifetime spectroscopy (PALS) and the pulsed low energy positron system (PLEPS) with the aim to study microstructural changes in RPV steels after high level of irradiation. Unique specimens were irradiated by neutrons in the German experimental reactor VAK (Versuchsatomkraftwerk Kahl) in the 1980s and these results were compared with the results from a high level of hydrogen nuclei implantation. Defects with sizes of about 1-2 vacancies with relatively small contributions (with intensity on the level of 20-40%) were observed in all ``as-received'' steels. An increase in the sizes of the induced defects (2-3 vacancies) due to neutron damage was observed in the irradiated specimens. On the other hand, the size and intensity of defects reached extremely high values due to displacement damage caused by implantation of hydrogen ions in a very narrow damaged region. This fact can be a limiting factor in the operation of new fission or fusion nuclear facilities.</td>
</tr>
<tr id="bib_Slugen2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2020,
	  author = {Slugen, V. and Pecko, S. and Sojak, S. and Egger, W. and Saro, M. and Petriska, M.},
	  title = {Positron Annihilation Studies of Reactor Pressure Vessel Steels Treated by Hydrogen Ion Implantation},
	  journal = {Acta Physica Polonica A},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {137},
	  pages = {238--241},
	  url = {http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html},
	  doi = {https://doi.org/10.12693/APhysPolA.137.238}
	}
	</pre></td>
</tr>






<tr id="Slugen2020a" class="entry">

<td>
<em> <a href="https://doi.org/10.3390/met10101378">Radiation Damage of Reactor Pressure Vessel Steels Studied by Positron Annihilation Spectroscopy—A Review</a></em><br />
V. Slugeň, S. Sojak, W. Egger, V. Krsjak, J. Simeg Veternikova and M. Petriska; Metals
<b> 10</b>
 (10)
 (2020)
 1378.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2020a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2020a','bibtex')">BibTeX</a>]
[<a href="https://www.mdpi.com/2075-4701/10/10/1378">URL</a>]
[<a href="https://doi.org/10.3390/met10101378">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2020a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2020a" class="abstract noshow">
	<td><b>Abstract</b>: Safe and long term operation of nuclear reactors is one of the most discussed challenges in nuclear power engineering. The radiation degradation of nuclear design materials limits the operational lifetime of all nuclear installations or at least decreases its safety margin. This paper is a review of experimental PALS/PLEPS studies of different nuclear reactor pressure vessel (RPV) steels investigated over last twenty years in our laboratories. Positron annihilation lifetime spectroscopy (PALS) via its characteristics (lifetimes of positrons and their intensities) provides useful information about type and density of radiation induced defects. The new results obtained on neutron-irradiated and hydrogen ions implanted German steels were compared to those from the previous studies with the aim to evaluate different processes (neutron flux/fluence, thermal treatment or content of selected alloying elements) to the microstructural changes of neutron irradiated RPV steel specimens. The possibility of substitution of neutron treatment (connected to new defects creation) via hydrogen ions implantation was analyzed as well. The same materials exposed to comparable displacement damage (dpa) introduced by neutrons and accelerated hydrogen ions shown that in the results interpretation the effect of hydrogen as a vacancy-stabilizing gas must be considered, too. This approach could contribute to future studies of nuclear fission/fusion design steels treated by high levels of neutron irradiation.</td>
</tr>
<tr id="bib_Slugen2020a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2020a,
	  author = {Slugeň, Vladimír and Sojak, Stanislav and Egger, Werner and Krsjak, Vladimir and Simeg Veternikova, Jana and Petriska, Martin},
	  title = {Radiation Damage of Reactor Pressure Vessel Steels Studied by Positron Annihilation Spectroscopy—A Review},
	  journal = {Metals},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {10},
	  number = {10},
	  pages = {1378},
	  url = {https://www.mdpi.com/2075-4701/10/10/1378},
	  doi = {https://doi.org/10.3390/met10101378}
	}
	</pre></td>
</tr>






<tr id="Stassin2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/acs.chemmater.9b03807">Solvent-Free Powder Synthesis and MOF-CVD Thin Films of the Large-Pore Metal–Organic Framework MAF-6</a></em><br />
T. Stassin, I. Stassen, J. Marreiros, A.J. Cruz, R. Verbeke, M. Tu, H. Reinsch, M. Dickmann, W. Egger, I.F.J. Vankelecom, D.E. De Vos and R. Ameloot; Chemistry of Materials
<b> 32</b>
 (5)
 (2020)
 1784-1793.
<p class="infolinks">
[<a href="javascript:toggleInfo('Stassin2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Stassin2020','bibtex')">BibTeX</a>]
[<a href="https://pubs.acs.org/doi/10.1021/acs.chemmater.9b03807">URL</a>]
[<a href="https://doi.org/10.1021/acs.chemmater.9b03807">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Stassin2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Stassin2020" class="abstract noshow">
	<td><b>Abstract</b>: A simple solvent- and catalyst-free method is presented for the synthesis of the large-pore metal–organic framework (MOF) MAF-6 (RHO-Zn(eIm)2) based on the reaction of ZnO with 2-ethylimidazole vapor at temperatures ≤100 °C. By translating this method to a chemical vapor deposition (CVD) protocol, crystalline films of a large-pore material could be deposited for the first time entirely from the vapor phase. A combination of positron annihilation lifetime spectroscopy (PALS) and Kr physisorption measurements confirmed the porosity of these MOF-CVD films and the size of the MAF-6 supercages (diameter ∼2 nm), in close agreement with powder data and calculations. MAF-6 powders and films were further characterized by X-ray diffraction (XRD), thermogravimetric analysis (TGA), scanning electron microscopy (SEM), Fourier-transform infrared spectroscopy (FTIR), pair distribution function (PDF), and extended X-ray absorption fine structure (EXAFS). The exceptional uptake capacity of MAF-6 in comparison to ZIF-8 is demonstrated by vapor-phase loading of a molecule larger than the ZIF-8 windows.</td>
</tr>
<tr id="bib_Stassin2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Stassin2020,
	  author = {Stassin, Timothée and Stassen, Ivo and Marreiros, João and Cruz, Alexander John and Verbeke, Rhea and Tu, Min and Reinsch, Helge and Dickmann, Marcel and Egger, Werner and Vankelecom, Ivo F. J. and De Vos, Dirk E. and Ameloot, Rob},
	  title = {Solvent-Free Powder Synthesis and MOF-CVD Thin Films of the Large-Pore Metal–Organic Framework MAF-6},
	  journal = {Chemistry of Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {32},
	  number = {5},
	  pages = {1784-1793},
	  url = {https://pubs.acs.org/doi/10.1021/acs.chemmater.9b03807},
	  doi = {https://doi.org/10.1021/acs.chemmater.9b03807}
	}
	</pre></td>
</tr>






<tr id="Stassin2020a" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/chem.202001661">Aqueous Flow Reactor and Vapour-Assisted Synthesis of Aluminium Dicarboxylate Metal–Organic Frameworks with Tuneable Water Sorption Properties</a></em><br />
T. Stassin, S. Waitschat, N. Heidenreich, H. Reinsch, F. Pluschkell, D. Kravchenko, J. Marreiros, I. Stassen, J. van Dinter, R. Verbeke, M. Dickmann, W. Egger, I. Vankelecom, D. De Vos, R. Ameloot and N. Stock; Chemistry
<b> 26</b>
 (47)
 (2020)
 10841-10848.
<p class="infolinks">
[<a href="javascript:toggleInfo('Stassin2020a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Stassin2020a','bibtex')">BibTeX</a>]
[<a href="https://chemistry-europe.onlinelibrary.wiley.com/doi/abs/10.1002/chem.202001661">URL</a>]
[<a href="https://doi.org/10.1002/chem.202001661">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Stassin2020a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Stassin2020a" class="abstract noshow">
	<td><b>Abstract</b>: Abstract Energy-efficient indoors temperature and humidity control can be realised by using the reversible adsorption and desorption of water in porous materials. Stable microporous aluminium-based metal–organic frameworks (MOFs) present promising water sorption properties for this goal. The development of synthesis routes that make use of available and affordable building blocks and avoid the use of organic solvents is crucial to advance this field. In this work, two scalable synthesis routes under mild reaction conditions were developed for aluminium-based MOFs: (1) in aqueous solutions using a continuous-flow reactor and (2) through the vapour-assisted conversion of solid precursors. Fumaric acid, its methylated analogue mesaconic acid, as well as mixtures of the two were used as linkers to obtain polymorph materials with tuneable water sorption properties. The synthesis conditions determine the crystal structure and either the MIL-53 or MIL-68 type structure with square-grid or kagome-grid topology, respectively, is formed. Fine-tuning resulted in new MOF materials thus far inaccessible through conventional synthesis routes. Furthermore, by varying the linker ratio, the water sorption properties can be continuously adjusted while retaining the sigmoidal isotherm shape advantageous for heat transformation and room climatisation applications.</td>
</tr>
<tr id="bib_Stassin2020a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Stassin2020a,
	  author = {Stassin, Timothée and Waitschat, Steve and Heidenreich, Niclas and Reinsch, Helge and Pluschkell, Finn and Kravchenko, Dmitry and Marreiros, João and Stassen, Ivo and van Dinter, Jonas and Verbeke, Rhea and Dickmann, Marcel and Egger, Werner and Vankelecom, Ivo and De Vos, Dirk and Ameloot, Rob and Stock, Norbert},
	  title = {Aqueous Flow Reactor and Vapour-Assisted Synthesis of Aluminium Dicarboxylate Metal–Organic Frameworks with Tuneable Water Sorption Properties},
	  journal = {Chemistry},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {26},
	  number = {47},
	  pages = {10841-10848},
	  url = {https://chemistry-europe.onlinelibrary.wiley.com/doi/abs/10.1002/chem.202001661},
	  doi = {https://doi.org/10.1002/chem.202001661}
	}
	</pre></td>
</tr>






<tr id="Uedono2020" class="entry">

<td>
<em> <a href="https://doi.org/10.12693/APhysPolA.137.227">Annealing Behaviours of Open Spaces in Thin Al2O3 Films Deposited on Semiconductors Studied Using Monoenergetic Positron Beams</a></em><br />
A. Uedono, W. Egger, T. Koschine, C. Hugenschmidt, M. Dickmann and S. Ishibashi; Acta Physica Polonica A
<b> 137</b>

 (2020)
 227-230.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uedono2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uedono2020','bibtex')">BibTeX</a>]
[<a href="http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html">URL</a>]
[<a href="https://doi.org/10.12693/APhysPolA.137.227">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uedono2020" class="abstract noshow">
	<td><b>Abstract</b>: Open spaces in amorphous Al2O3 films fabricated by atomic layer deposition and in AlONx deposited by a reactive sputtering technique were probed by using monoenergetic positron beams. In these films, open spaces with three different sizes were found to coexist. The mean size and the concentration of open spaces were decreased by annealing at 800° in N2 atmosphere, which was associated with rearrangements of the amorphous network in the films and their crystallization. Nitrogen incorporation into Al2O3 suppressed the shrinkage of network structures due to the annealing, which was attributed to the formation of a stable network through the introduction of Al-N bonding. For Al2O3 deposited on GaN, the temperature treatment above 800° led to the introduction of vacancy-type defects in the GaN substrate. This fact suggests that the change in the network structure of Al2O3 enhances chemical instability at the Al2O3/GaN interface and the out-diffusion of atoms from the substrate.</td>
</tr>
<tr id="bib_Uedono2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uedono2020,
	  author = {Uedono, A. and Egger, W. and Koschine, T. and Hugenschmidt, C. and Dickmann, M. and Ishibashi, S.},
	  title = {Annealing Behaviours of Open Spaces in Thin Al2O3 Films Deposited on Semiconductors Studied Using Monoenergetic Positron Beams},
	  journal = {Acta Physica Polonica A},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {137},
	  pages = {227--230},
	  url = {http://przyrbwn.icm.edu.pl/APP/SPIS/a137-2.html},
	  doi = {https://doi.org/10.12693/APhysPolA.137.227}
	}
	</pre></td>
</tr>






<tr id="Uedono2020a" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.5134513">Voids and vacancy-type defects in SiO2/GaN structures probed by monoenergetic positron beams</a></em><br />
A. Uedono, W. Ueno, T. Yamada, T. Hosoi, W. Egger, T. Koschine, C. Hugenschmidt, M. Dickmann and H. Watanabe; Journal of Applied Physics
<b> 127</b>
 (5)
 (2020)
 054503.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uedono2020a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uedono2020a','bibtex')">BibTeX</a>]
[<a href="https://doi.org/10.1063/1.5134513">URL</a>]
[<a href="https://doi.org/10.1063/1.5134513">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2020a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uedono2020a" class="abstract noshow">
	<td><b>Abstract</b>: Voids in SiO2 films deposited on GaN were probed by using monoenergetic positron beams. The films were fabricated on GaN substrates by using plasma-enhanced chemical vapor deposition. The size and density of the voids in the films increased up to an annealing temperature of 800 °C and then decreased at 1000 °C. The observed annealing behaviors of the voids were attributed to the desorption of impurities incorporated during the deposition process and the shrinkage of the Si–O matrix by high-temperature annealing. Vacancy-type defects were introduced into the GaN substrate after 1000 °C annealing in O2 atmosphere due to the diffusion of Ga from the substrate to the SiO2 film. No out-diffusion of Ga into the SiO2 film was observed for the annealing in N2 atmosphere. Thus, the observed out-diffusion of Ga was attributed to the enhanced oxidation of GaN during the annealing in O2 atmosphere. The diffusion of positrons implanted into the GaN substrate toward the SiO2 film was suppressed by annealing, suggesting a decrease in the negative charges in the SiO2 film or near the SiO2/GaN interface.</td>
</tr>
<tr id="bib_Uedono2020a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uedono2020a,
	  author = {Uedono, Akira and Ueno, Wataru and Yamada, Takahiro and Hosoi, Takuji and Egger, Werner and Koschine, Tönjes and Hugenschmidt, Christoph and Dickmann, Marcel and Watanabe, Heiji},
	  title = {Voids and vacancy-type defects in SiO2/GaN structures probed by monoenergetic positron beams},
	  journal = {Journal of Applied Physics},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {127},
	  number = {5},
	  pages = {054503},
	  url = {https://doi.org/10.1063/1.5134513},
	  doi = {https://doi.org/10.1063/1.5134513}
	}
	</pre></td>
</tr>






<tr id="Uedono2020b" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/5.0015225">Annealing behaviors of vacancy-type defects in AlN deposited by radio-frequency sputtering and metalorganic vapor phase epitaxy studied using monoenergetic positron beams</a></em><br />
A. Uedono, K. Shojiki, K. Uesugi, S.F. Chichibu, S. Ishibashi, M. Dickmann, W. Egger, C. Hugenschmidt and H. Miyake; Journal of Applied Physics
<b> 128</b>
 (8)
 (2020)
 085704.
<p class="infolinks">


[<a href="javascript:toggleInfo('Uedono2020b','bibtex')">BibTeX</a>]
[<a href="https://doi.org/10.1063/5.0015225">URL</a>]
[<a href="https://doi.org/10.1063/5.0015225">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2020b.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Uedono2020b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uedono2020b,
	  author = {Uedono, Akira and Shojiki, Kanako and Uesugi, Kenjiro and Chichibu, Shigefusa F. and Ishibashi, Shoji and Dickmann, Marcel and Egger, Werner and Hugenschmidt, Christoph and Miyake, Hideto},
	  title = {Annealing behaviors of vacancy-type defects in AlN deposited by radio-frequency sputtering and metalorganic vapor phase epitaxy studied using monoenergetic positron beams},
	  journal = {Journal of Applied Physics},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {128},
	  number = {8},
	  pages = {085704},
	  url = {https://doi.org/10.1063/5.0015225},
	  doi = {https://doi.org/10.1063/5.0015225}
	}
	</pre></td>
</tr>






<tr id="Uedono2020c" class="entry">

<td>
<em> <a href="https://www.spiedigitallibrary.org/conference-proceedings-of-spie/11280/2541518/Control-of-vacancy-type-defects-in-Mg-implanted-GaN-studied/10.1117/12.2541518.short">Control of vacancy-type defects in Mg implanted GaN studied by positron annihilation spectroscopy</a></em><br />
A. Uedono, M. Dickmann, W. Egger, C. Hugenschmidt, S. Ishibashi and S.F. Chichibu;
In: , H. Fujioka, H. Morkoç and U.T. Schwarz (Eds.),
<em>  Gallium Nitride Materials and Devices XV</em>
, Proc. SPIE
 <b>11280</b>
 (2020)
 28 - 35
, SPIE.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uedono2020c','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uedono2020c','bibtex')">BibTeX</a>]
[<a href="https://www.spiedigitallibrary.org/conference-proceedings-of-spie/11280/2541518/Control-of-vacancy-type-defects-in-Mg-implanted-GaN-studied/10.1117/12.2541518.short">URL</a>]
[<a href="https://doi.org/10.1117/12.2541518">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2020c.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uedono2020c" class="abstract noshow">
	<td><b>Abstract</b>: Vacancy-type defects in Mg-implanted GaN were probed using monoenergetic positron beams. Mg<sup>+</sup> ions were implanted to provide box profiles with Mg concentrations [Mg] of 10<sup>17</sup>-10<sup>19</sup> cm-<sup>3</sup>. For as-implanted samples, the major defect species was determined to be Ga-vacancy (<i>V</i><sub>Ga</sub>) related defects such as divacancy (<i>V</i><sub>Ga</sub><i>V</i><sub>N</sub>) and/or their complexes with impurities. For Mg-implanted samples, an agglomeration of vacancies started at 800-1000&amp;deg;C annealing, leading to the formation of vacancy clusters such as (<i>V</i><sub>Ga</sub><i>V</i><sub>N</sub>)<sub>3</sub>. For the sample with [Mg]=10<sup>19</sup> cm<sup>-3</sup>, the trapping rate of positrons to the vacancies decreased with increasing annealing temperature (&amp;ge;1100&amp;deg;C), which was attributed to the change in the charge state of vacancy-type defects from neutral to positive (or negative to neutral) due to the activation of Mg. For Mg- and H-implanted samples, the hydrogenation of vacancy-type defects started after 800&amp;deg;C annealing. Comparing with the annealing behavior of defects for the samples without H-implantation, the clustering of vacancy-type defects was suppressed, which can be attributed to the interaction between Mg, H, and vacancies.</td>
</tr>
<tr id="bib_Uedono2020c" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Uedono2020c,
	  author = {Uedono, Akira and Dickmann, Marcel and Egger, Werner and Hugenschmidt, Christoph and Ishibashi, Shoji and Chichibu, Shigefusa F.},
	  title = {Control of vacancy-type defects in Mg implanted GaN studied by positron annihilation spectroscopy},
	  booktitle = {Gallium Nitride Materials and Devices XV},
	  journal = {Proc. SPIE},
	  publisher = {SPIE},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {11280},
	  pages = {28 -- 35},
	  editor = {Hiroshi Fujioka and Hadis Morkoç and Ulrich T. Schwarz},
	  url = {https://www.spiedigitallibrary.org/conference-proceedings-of-spie/11280/2541518/Control-of-vacancy-type-defects-in-Mg-implanted-GaN-studied/10.1117/12.2541518.short},
	  doi = {https://doi.org/10.1117/12.2541518}
	}
	</pre></td>
</tr>






<tr id="Zibrov2020" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.nme.2020.100747">High temperature recovery of radiation defects in tungsten and its effect on deuterium retention</a></em><br />
M. Zibrov, T. Dürbeck, W. Egger and M. Mayer; Nuclear Materials and Energy
<b> 23</b>

 (2020)
 100747.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zibrov2020','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zibrov2020','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S2352179120300235">URL</a>]
[<a href="https://doi.org/10.1016/j.nme.2020.100747">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zibrov2020.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zibrov2020" class="abstract noshow">
	<td><b>Abstract</b>: The recovery of radiation defects in tungsten (W) due to post-irradiation isochronal (15 min) annealing at temperatures in the range of 1600–2100 K has been investigated. The defects were introduced in W (100) single crystals by irradiation with 9 MeV W ions to a maximum damage level of 1.1 dpa at 290 K. Vacancies and vacancy clusters in the samples were examined using positron annihilation lifetime spectroscopy. The defects were decorated with deuterium (D) by exposing the annealed samples to a low-flux (1020 D/(m2s)), low-energy (10 eV/D) D plasma at a temperature of 450 K. The D concentration profiles in the samples were measured by D(3He, p)α nuclear reaction analysis and the D binding states in the defects were identified by thermal desorption spectroscopy. Annealing at 1600–1900 K resulted in the presence of mainly large vacancy clusters which gave rise to a single desorption peak near 600 K. The trapped D concentration in the sample annealed at 1600 K was 15% of that in the as-irradiated sample and decreased to 4% in the sample annealed at 1900 K. Annealing at 2000 K resulted in the complete recovery of radiation defects.</td>
</tr>
<tr id="bib_Zibrov2020" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zibrov2020,
	  author = {M. Zibrov and T. Dürbeck and W. Egger and M. Mayer},
	  title = {High temperature recovery of radiation defects in tungsten and its effect on deuterium retention},
	  journal = {Nuclear Materials and Energy},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {23},
	  pages = {100747},
	  url = {http://www.sciencedirect.com/science/article/pii/S2352179120300235},
	  doi = {https://doi.org/10.1016/j.nme.2020.100747}
	}
	</pre></td>
</tr>






<tr id="Zibrov2020a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.jnucmat.2020.152017">Vacancy cluster growth and thermal recovery in hydrogen-irradiated tungsten</a></em><br />
M. Zibrov, W. Egger, J. Heikinheimo, M. Mayer and F. Tuomisto; Journal of Nuclear Materials
<b> 531</b>

 (2020)
 152017.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zibrov2020a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zibrov2020a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0022311519312395">URL</a>]
[<a href="https://doi.org/10.1016/j.jnucmat.2020.152017">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zibrov2020a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zibrov2020a" class="abstract noshow">
	<td><b>Abstract</b>: The thermal evolution of vacancies and vacancy clusters in tungsten (W) has been studied. W (100) single crystals were irradiated with 200 keV hydrogen (H) ions to a low damage level (5.8×10−3 dpa) at 290 K and then annealed at temperatures in the range of 500–1800 K. The resulting defects were characterized by positron annihilation lifetime spectroscopy (PALS) and positron annihilation Doppler broadening spectroscopy (DBS). Annealing at 700 K resulted in the formation of clusters containing 10–15 vacancies, while at 800 K and higher temperatures clusters containing about 20 vacancies or more were formed. Reduction of the defect concentration likely accompanied by further coarsening of the clusters started at 1300 K and ended at 1800 K with the complete defect recovery. The determined cluster sizes at 700 K and 800 K were larger than the estimated minimum cluster sizes that are thermally stable at these temperatures, indicating that the migration and ensuing coalescence of small clusters plays an important role in cluster growth.</td>
</tr>
<tr id="bib_Zibrov2020a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zibrov2020a,
	  author = {M. Zibrov and W. Egger and J. Heikinheimo and M. Mayer and F. Tuomisto},
	  title = {Vacancy cluster growth and thermal recovery in hydrogen-irradiated tungsten},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2020},
	  volume = {531},
	  pages = {152017},
	  url = {http://www.sciencedirect.com/science/article/pii/S0022311519312395},
	  doi = {https://doi.org/10.1016/j.jnucmat.2020.152017}
	}
	</pre></td>
</tr>




<tr id="2019" class="entry"><td><h1>2019</h1></td></tr>

<tr id="Brusa2019" class="entry">

<td>
<em> <a href="https://aip.scitation.org/doi/abs/10.1063/1.5135848">Influence of filler content on free volumes structure and gas transport properties of biopolymer nanocomposites</a></em><br />
R.S. Brusa, R. Checchetto and W. Egger;
In: , F. Selim (Ed.),
<em>  THE 18TH INTERNATIONAL CONFERENCE ON POSITRON ANNIHILATION (ICPA-18): Positron Annihilation Spectroscopy-Fundamentals, Techniques ad Applications</em>
, AIP Conference Proceedings
 <b>2182</b>
 (2019)
 050005
, American Institute of Physics.
<p class="infolinks">
[<a href="javascript:toggleInfo('Brusa2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Brusa2019','bibtex')">BibTeX</a>]
[<a href="https://aip.scitation.org/doi/abs/10.1063/1.5135848">URL</a>]
[<a href="https://doi.org/10.1063/1.5135848">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Brusa2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Brusa2019" class="abstract noshow">
	<td><b>Abstract</b>: The kinetics of gas transport through bi-layer membranes consisting of self-assembled cellulose nanofibrils (CNF) on polylactic acid (PLA) support was studied by gas phase permeation techniques: their gas barrier properties were explained thanks to depth-profiled PALS (Positron Annihilation Lifetime Spectroscopy) measurements. CNF were then dispersed at different concentration in PLA matrix: these nano-composite were also studied with PALS and gas permeation. The gas barrier properties of CNF-PLA bi-layer will be reviewed and the new results on nano-composite discussed.</td>
</tr>
<tr id="bib_Brusa2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Brusa2019,
	  author = {Brusa, Roberto S. and Checchetto, Riccardo and Egger, Werner},
	  title = {Influence of filler content on free volumes structure and gas transport properties of biopolymer nanocomposites},
	  booktitle = {THE 18TH INTERNATIONAL CONFERENCE ON POSITRON ANNIHILATION (ICPA-18): Positron Annihilation Spectroscopy-Fundamentals, Techniques ad Applications},
	  journal = {AIP Conference Proceedings},
	  publisher = {American Institute of Physics},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {2182},
	  number = {1},
	  pages = {050005},
	  editor = {Farida Selim},
	  url = {https://aip.scitation.org/doi/abs/10.1063/1.5135848},
	  doi = {https://doi.org/10.1063/1.5135848}
	}
	</pre></td>
</tr>






<tr id="Dujardin2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.eurpolymj.2019.02.014">Fine-tuning the molecular structure of binaphthalene polyimides for gas separations</a></em><br />
W. Dujardin, C.V. Goethem, Z. Zhang, R. Verbeke, M. Dickmann, W. Egger, E. Nies, I. Vankelecom and G. Koeckelberghs; European Polymer Journal
<b> 114</b>

 (2019)
 134 - 143.
<p class="infolinks">
[<a href="javascript:toggleInfo('Dujardin2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Dujardin2019','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0014305718324376">URL</a>]
[<a href="https://doi.org/10.1016/j.eurpolymj.2019.02.014">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Dujardin2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Dujardin2019" class="abstract noshow">
	<td><b>Abstract</b>: A set of new stiff and contorted polyimides were prepared to systematically link polymer structure with gas separation properties. Seven novel bridged binaphthalene polyimides were synthesized for this purpose using commercial dianhydrides pyromellitic dianhydride (PMDA), biphenyl-tetracarboxylic acid dianhydride (BPDA) and 4,4′-(hexafluoroisopropylidene)diphthalic anhydride (6FDA). From these polyimides, freestanding membranes were prepared and tested on mixed gas CO2/CH4 and CO2/N2 separation performance. They were further characterized using WAXS and PALS and through the simulation of their free volume elements (FVEs) and gas separation properties. The binaphthalene polyimides had CO2/CH4 and CO2/N2 mixed gas selectivities of respectively 40 and 29 and mixed gas permeabilities of about 20 barrer for both gas mixtures.</td>
</tr>
<tr id="bib_Dujardin2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Dujardin2019,
	  author = {Dujardin, Wouter and Goethem, Cédric Van and Zhang, Zidan and Verbeke, Rhea and Dickmann, Marcel and Egger, Werner and Nies, Erik and Vankelecom, Ivo and Koeckelberghs, Guy},
	  title = {Fine-tuning the molecular structure of binaphthalene polyimides for gas separations},
	  journal = {European Polymer Journal},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {114},
	  pages = {134 - 143},
	  url = {http://www.sciencedirect.com/science/article/pii/S0014305718324376},
	  doi = {https://doi.org/10.1016/j.eurpolymj.2019.02.014}
	}
	</pre></td>
</tr>






<tr id="Li2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.seppur.2019.02.012">Tuning the porosity of asymmetric membranes via simple post-synthesis solvent-treatment for non-aqueous applications</a></em><br />
Y. Li, I. Nulens, R. Verbeke, H. Mariën, T. Koschine, M. Dickmann, W. Egger and I.F.J. Vankelecom; Separation and Purification Technology
<b> 217</b>

 (2019)
 147 - 153.
<p class="infolinks">
[<a href="javascript:toggleInfo('Li2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Li2019','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S1383586618337584">URL</a>]
[<a href="https://doi.org/10.1016/j.seppur.2019.02.012">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Li2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Li2019" class="abstract noshow">
	<td><b>Abstract</b>: Tuning the cohesive and swelling forces in porous membranes by post-synthesis solvent-treatment was already proven to be a successful way to increase the membrane selectivity in aqueous redox flow battery application without sacrificing too much permeability of the membranes. This method was now extended to non-aqueous applications and the mechanism behind the tuning of the pore sizes upon solvent-treatment was studied in more detail. Porous polyvinylidene fluoride (PVDF) and polysulfone (PSF) membranes were thus prepared via phase inversion and subsequently treated with different solvents followed by the evaporation of this solvent to adjust the structural porosities of these asymmetric membranes and better understand the underlying mechanism. For this purpose, water and acetonitrile permeances were determined before and after the solvent-treatment and these permeances were linked to the (solvent)-(membrane polymer) Hansen solubility parameters. The membrane density changes were characterized by positron annihilation lifetime spectroscopy (PALS). It was proven that the pore adjustment that was created by the solvent-treatment was reversible when the membrane was later on applied in a feed solution with high affinity for the membrane polymer.</td>
</tr>
<tr id="bib_Li2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Li2019,
	  author = {Li, Yun and Nulens, Ines and Verbeke, Rhea and Mariën, Hanne and Koschine, Tönjes and Dickmann, Marcel and Egger, Werner and Vankelecom, Ivo F. J.},
	  title = {Tuning the porosity of asymmetric membranes via simple post-synthesis solvent-treatment for non-aqueous applications},
	  journal = {Separation and Purification Technology},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {217},
	  pages = {147 - 153},
	  url = {http://www.sciencedirect.com/science/article/pii/S1383586618337584},
	  doi = {https://doi.org/10.1016/j.seppur.2019.02.012}
	}
	</pre></td>
</tr>






<tr id="Mitteneder2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.5135834">Recent developments of the scanning positron microscope SPM for depth- and position-resolved positron lifetime measurement</a></em><br />
J. Mitteneder, M. Dickmann, G. Kögel, W. Egger and G. Dollinger; AIP Conference Proceedings
<b> 2182</b>
 (1)
 (2019)
 040002.
<p class="infolinks">
[<a href="javascript:toggleInfo('Mitteneder2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Mitteneder2019','bibtex')">BibTeX</a>]
[<a href="https://aip.scitation.org/doi/abs/10.1063/1.5135834">URL</a>]
[<a href="https://doi.org/10.1063/1.5135834">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/">PDF</a>]
</td>
</tr> 
<tr id="abs_Mitteneder2019" class="abstract noshow">
	<td><b>Abstract</b>: To investigate inhomogeneous defect distributions, e.g. close to fatigue cracks or dispersive alloys with positron annihilation lifetime spectroscopy a pulsed positron beam with a diameter in the range of 1 µm and with a time resolution in the order of 250 ps is needed. The Scanning Positron Microscope (SPM) fulfills the requirements for position resolved positron lifetime measurements and was operated by the Universität der Bundeswehr München. To increase the countrate, the SPM is currently transferred to the intense positron source NEPOMUC. The SPM Interface connects the SPM to the NEPOMUC source and en-hances the beam quality to the needs of the SPM.<br>In this contribution we will give an overview of the SPM Interface and its performance. The finale stage of the SPM Interface is the positron elevator which has been further developed. We will discuss the apparatus in detail and show measurements of the beam quality with a beam elevation of 8 keV.<br>From our measurements we are able to predict the performance of the SPM at NEPOMUC. In the future position resolved measurements will be possible with an improved spatial resolution of about 0.3 µm and an event rate of about 3.7 kHz.</td>
</tr>
<tr id="bib_Mitteneder2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Mitteneder2019,
	  author = {Mitteneder, Johannes and Dickmann, Marcel and Kögel, Gottfried and Egger, Werner and Dollinger, Günther},
	  title = {Recent developments of the scanning positron microscope SPM for depth- and position-resolved positron lifetime measurement},
	  journal = {AIP Conference Proceedings},
	  publisher = {American Institute of Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {2182},
	  number = {1},
	  pages = {040002},
	  url = {https://aip.scitation.org/doi/abs/10.1063/1.5135834},
	  doi = {https://doi.org/10.1063/1.5135834}
	}
	</pre></td>
</tr>






<tr id="Pipich2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.memsci.2018.11.055">Morphology and porous structure of standalone aromatic polyamide films as used in RO membranes – An exploration with SANS, PALS, and SEM</a></em><br />
V. Pipich, K. Schlenstedt, M. Dickmann, R. Kasher, J. Meier-Haack, C. Hugenschmidt, W. Petry, Y. Oren and D. Schwahn; Journal of Membrane Science
<b> 573</b>

 (2019)
 167 - 176.
<p class="infolinks">
[<a href="javascript:toggleInfo('Pipich2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Pipich2019','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0376738818325936">URL</a>]
[<a href="https://doi.org/10.1016/j.memsci.2018.11.055">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Pipich2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Pipich2019" class="abstract noshow">
	<td><b>Abstract</b>: This report presents a study about the morphology of a cross-linked aromatic polyamide (PA) film in its dry and wet state using small-angle neutron scattering (SANS), positron annihilation lifetime spectroscopy (PALS), and scanning electron microscopy (SEM). PA is used as active skin layer for reverse osmosis membranes and determines the selectivity of the membrane with respect to water and salt molecules. This selectivity of PA is largely determined from its morphology. The PA film scatters the neutrons much stronger and shows a different profile as expected from randomly distributed nanoscopic large pores. SANS contrast variation, using supercritical CO2 as contrast medium, confirms that pores are the only scattering centers. The analysis shows that interconnected pores of an average radius of about 16 Å determine the scattering. The pores are formed as a network of channels showing a fractal structure. PALS determines pores of ∼6 Å diameter representing the diameter of such channels. The volume fraction of the pores is estimated as ∼10% which after water up-take increases by ∼30% due to slightly swelling of the pores.</td>
</tr>
<tr id="bib_Pipich2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Pipich2019,
	  author = {Vitaliy Pipich and Kornelia Schlenstedt and Marcel Dickmann and Roni Kasher and Jochen Meier-Haack and Christoph Hugenschmidt and Winfried Petry and Yoram Oren and Dietmar Schwahn},
	  title = {Morphology and porous structure of standalone aromatic polyamide films as used in RO membranes – An exploration with SANS, PALS, and SEM},
	  journal = {Journal of Membrane Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {573},
	  pages = {167 - 176},
	  url = {http://www.sciencedirect.com/science/article/pii/S0376738818325936},
	  doi = {https://doi.org/10.1016/j.memsci.2018.11.055}
	}
	</pre></td>
</tr>






<tr id="Singer2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.5135828">APEX – Newly implemented functionalities towards the first magnetically confined electron-positron pair plasma</a></em><br />
M. Singer, C. Hugenschmidt, E.V. Stenson, U. Hergenhahn, J. Horn-Stanja, S. Nissl, T.S. Pedersen, H. Saitoh, M. Dickmann, M.R. Stoneking, J.R. Danielson and C.M. Surko; AIP Conference Proceedings
<b> 2182</b>
 (1)
 (2019)
 030005.
<p class="infolinks">
[<a href="javascript:toggleInfo('Singer2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Singer2019','bibtex')">BibTeX</a>]
[<a href="https://aip.scitation.org/doi/abs/10.1063/1.5135828">URL</a>]
[<a href="https://doi.org/10.1063/1.5135828">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Singer2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Singer2019" class="abstract noshow">
	<td><b>Abstract</b>: The APEX (A Positron Electron eXperiment) collaboration aims to magnetically confine a low-temperature electron-positron pair plasma. By using a pair of ExB plates, positrons generated by the NEPOMUC facility are drift-injected into the confinement field created by a supported permanent magnet. Fine-tuning the fields generated by electrodes and magnetic coils increased the injection efficiency to 100% and positron confinement times to more than 1s. A newly installed electron gun has been used to inject electrons, guided alongside the positron beam, into the confinement volume. This contribution describes the recent upgrades required for the first dual species experiments.</td>
</tr>
<tr id="bib_Singer2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Singer2019,
	  author = {Singer, Markus and Hugenschmidt, Christoph and Stenson, Eve V. and Hergenhahn, Uwe and Horn-Stanja, Juliane and Nissl, Stefan and Pedersen, Thomas Sunn and Saitoh, Haruhiko and Dickmann, Marcel and Stoneking, Matthew R. and Danielson, James R. and Surko, Clifford M.},
	  title = {APEX – Newly implemented functionalities towards the first magnetically confined electron-positron pair plasma},
	  journal = {AIP Conference Proceedings},
	  publisher = {AIP Publishing},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {2182},
	  number = {1},
	  pages = {030005},
	  url = {https://aip.scitation.org/doi/abs/10.1063/1.5135828},
	  doi = {https://doi.org/10.1063/1.5135828}
	}
	</pre></td>
</tr>






<tr id="Thuer2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.memsci.2019.01.016">Bipyridine-based UiO-67 as novel filler in mixed-matrix membranes for CO2-selective gas separation</a></em><br />
R. Thür, N.V. Velthoven, S. Slootmaekers, J. Didden, R. Verbeke, S. Smolders, M. Dickmann, W. Egger, D.D. Vos and I.F.J. Vankelecom; Journal of Membrane Science
<b> 576</b>

 (2019)
 78 - 87.
<p class="infolinks">
[<a href="javascript:toggleInfo('Thuer2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Thuer2019','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0376738819300122">URL</a>]
[<a href="https://doi.org/10.1016/j.memsci.2019.01.016">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Thuer2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Thuer2019" class="abstract noshow">
	<td><b>Abstract</b>: Bipyridine-based UiO-67 Metal-Organic Frameworks (MOFs) are for the first time successfully applied as filler material in Matrimid mixed-matrix membranes (MMMs). Extensive characterization of fillers (via XRD, NMR, SEM, ATR-FTIR, CO2 and N2 physisorption) and membranes (via XRD, SEM, ATR-FTIR, DSC, TGA and PALS) were performed to gain insight in the MMM separation behavior. Lewis basic sites in the MMMs function as CO2-carriers, doubling CO2/CH4 selectivity (from 38 for pristine Matrimid to 75 for the MMM with 10 wt% UiO-67-33), while the CO2 permeability was simultaneously improved from 16 Barrer (Matrimid) up till 26 Barrer for the MMM with 10 wt% UiO-67-33 (+63%). Gas permeation experiments suggested a facilitated transport mechanism to be responsible for these high mixed-gas selectivities. The concentration of the filler inside the membrane could be increased to 30 wt%, resulting in a permeability increase of 350% without losing selectivity compared to the Matrimid membrane. Use of N-heterocyclic ligands proved to be an interesting strategy and good alternative for functionalization of MOF surfaces to obtain improved membrane performance.</td>
</tr>
<tr id="bib_Thuer2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Thuer2019,
	  author = {Thür, Raymond and Velthoven, Niels Van and Slootmaekers, Sam and Didden, Jeroen and Verbeke, Rhea and Smolders, Simon and Dickmann, Marcel and Egger, Werner and Vos, Dirk De and Vankelecom, Ivo F. J.},
	  title = {Bipyridine-based UiO-67 as novel filler in mixed-matrix membranes for CO2-selective gas separation},
	  journal = {Journal of Membrane Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {576},
	  pages = {78 - 87},
	  url = {http://www.sciencedirect.com/science/article/pii/S0376738819300122},
	  doi = {https://doi.org/10.1016/j.memsci.2019.01.016}
	}
	</pre></td>
</tr>






<tr id="Tu2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/anie.201813996">Reversible Optical Writing and Data Storage in an Anthracene-loaded Metal–organic Framework</a></em><br />
M. Tu, H. Reinsch, S. Rodríguez-Hermida, R. Verbeke, T. Stassin, W. Egger, M. Dickmann, B. Dieu, J. Hofkens, I.F.J. Vankelecom, N. Stock and R. Ameloot; Angewandte Chemie International Edition
<b> 58</b>
 (0)
 (2019)
 2423-2427.
<p class="infolinks">
[<a href="javascript:toggleInfo('Tu2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Tu2019','bibtex')">BibTeX</a>]
[<a href="https://onlinelibrary.wiley.com/doi/abs/10.1002/anie.201813996">URL</a>]
[<a href="https://doi.org/10.1002/anie.201813996">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Tu2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Tu2019" class="abstract noshow">
	<td><b>Abstract</b>: Abstract Metal–organic frameworks (MOFs) enable the design of host–guest systems with specific properties. In this work, we show how the confinement of anthracene in a well-chosen MOF host leads to reversible yellow-to-purple photoswitching of the fluorescence emission. This behavior has not been observed before for anthracene, either in pure form or adsorbed in other porous hosts. The photoresponse of the host–guest system is caused by the photodimerization of anthracene, which is greatly facilitated by the pore geometry, connectivity, and volume as well as the structural flexibility of the MOF host. The photoswitching behavior was used to fabricate photopatternable and erasable surfaces that, in combination with data encryption and decryption, hold promise in product authentication and secure communication applications.</td>
</tr>
<tr id="bib_Tu2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Tu2019,
	  author = {Tu, Min and Reinsch, Helge and Rodríguez-Hermida, Sabina and Verbeke, Rhea and Stassin, Timothée and Egger, Werner and Dickmann, Marcel and Dieu, Bjorn and Hofkens, Johan and Vankelecom, Ivo F. J. and Stock, Norbert and Ameloot, Rob},
	  title = {Reversible Optical Writing and Data Storage in an Anthracene-loaded Metal–organic Framework},
	  journal = {Angewandte Chemie International Edition},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {58},
	  number = {0},
	  pages = {2423-2427},
	  url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/anie.201813996},
	  doi = {https://doi.org/10.1002/anie.201813996}
	}
	</pre></td>
</tr>






<tr id="Uedono2019" class="entry">

<td>
<em> <a href="https://aip.scitation.org/doi/abs/10.1063/1.5135849">Effect of illumination on positron states in wide bandgap semiconductors</a></em><br />
A. Uedono, W. Egger, C. Hugenschmidt and S. Ishibashi;
In: , F. Selim (Ed.),
<em>  THE 18TH INTERNATIONAL CONFERENCE ON POSITRON ANNIHILATION (ICPA-18): Positron Annihilation Spectroscopy-Fundamentals, Techniques ad Applications</em>
, AIP Conference Proceedings
 <b>2182</b>
 (2019)
 050006
.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uedono2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uedono2019','bibtex')">BibTeX</a>]
[<a href="https://aip.scitation.org/doi/abs/10.1063/1.5135849">URL</a>]
[<a href="https://doi.org/10.1063/1.5135849">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uedono2019" class="abstract noshow">
	<td><b>Abstract</b>: Vacancy-type defects in Mg-implanted GaN were probed using monoenergetic positron beams. For the samples after annealing at 1300°C, the line shape parameter S and the positron lifetime increased under illumination with a 325-nm He-Cd laser. The observed increase in the trapping rate of positrons by vacancies was associated with the trapping of the excited electrons by the defects. Native defects in GaN grown on Si substrate were also studied. A similar illumination effect on the positron annihilation parameters was observed for GaN with the carbon concentration of 2×1016 cm−3. From the relationship between S and the photon energy, it was found that the transition of an electron from a carbon atom to the vacancies plays an important role in the charge shift of the vacancies under illumination.</td>
</tr>
<tr id="bib_Uedono2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Uedono2019,
	  author = {Uedono, Akira and Egger, Werner and Hugenschmidt, Christoph and Ishibashi, Shoji},
	  title = {Effect of illumination on positron states in wide bandgap semiconductors},
	  booktitle = {THE 18TH INTERNATIONAL CONFERENCE ON POSITRON ANNIHILATION (ICPA-18): Positron Annihilation Spectroscopy-Fundamentals, Techniques ad Applications},
	  journal = {AIP Conference Proceedings},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {2182},
	  number = {1},
	  pages = {050006},
	  editor = {Farida Selim},
	  url = {https://aip.scitation.org/doi/abs/10.1063/1.5135849},
	  doi = {https://doi.org/10.1063/1.5135849}
	}
	</pre></td>
</tr>






<tr id="Uedono2019a" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssb.201900104">Annealing Behavior of Vacancy-Type Defects in Mg- and H-Implanted GaN Studied Using Monoenergetic Positron Beams</a></em><br />
A. Uedono, H. Iguchi, T. Narita, K. Kataoka, W. Egger, T. Koschine, C. Hugenschmidt, M. Dickmann, K. Shima, K. Kojima, S.F. Chichibu and S. Ishibashi; physica status solidi (b)
<b> 256</b>
 (10)
 (2019)
 1900104.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uedono2019a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uedono2019a','bibtex')">BibTeX</a>]
[<a href="https://onlinelibrary.wiley.com/doi/abs/10.1002/pssb.201900104">URL</a>]
[<a href="https://doi.org/10.1002/pssb.201900104">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2019a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uedono2019a" class="abstract noshow">
	<td><b>Abstract</b>: Vacancy-type defects in Mg-implanted GaN with and without hydrogen (H) implantation are probed by using monoenergetic positron beams. Mg+ and H+ ions are implanted into GaN(0001¯) to obtain 0.1 and 0.7-µm-deep box profiles with Mg and H concentrations of 1 × 1019 and 2 × 1020 cm−3, respectively. For the as-implanted samples, the major defect species is determined to be Ga-vacancy (VGa) related defects such as VGa, divacancy (VGaVN), and their complexes with impurities. For Mg-implanted samples, an agglomeration of vacancies starts at 800 °C annealing, leading to the formation of vacancy clusters such as (VGaVN)3. For the samples annealed above 1000 °C, the trapping rate of positrons by vacancies is increased by illumination of a He–Cd laser. This is attributed to the capture of photon-excited electrons by the defects and their charge transition. For Mg- and H-implanted samples, the hydrogenation of vacancy-type defects starts after 800 °C annealing. Comparing with the annealing behavior of defects for the samples without H-implantation, the clustering of vacancy-type defects is suppressed, which can be attributed to the interaction between Mg, H, and vacancies.</td>
</tr>
<tr id="bib_Uedono2019a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uedono2019a,
	  author = {Uedono, Akira and Iguchi, Hiroko and Narita, Tetsuo and Kataoka, Keita and Egger, Werner and Koschine, Tönjes and Hugenschmidt, Christoph and Dickmann, Marcel and Shima, Kohei and Kojima, Kazunobu and Chichibu, Shigefusa F. and Ishibashi, Shoji},
	  title = {Annealing Behavior of Vacancy-Type Defects in Mg- and H-Implanted GaN Studied Using Monoenergetic Positron Beams},
	  journal = {physica status solidi (b)},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {256},
	  number = {10},
	  pages = {1900104},
	  url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/pssb.201900104},
	  doi = {https://doi.org/10.1002/pssb.201900104}
	}
	</pre></td>
</tr>






<tr id="Verbeke2019b" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.memsci.2019.02.016">Transferring bulk chemistry to interfacial synthesis of TFC-membranes to create chemically robust poly(epoxyether) films</a></em><br />
R. Verbeke, W. Arts, E. Dom, M. Dickmann, W. Egger, G. Koeckelberghs, A. Szymczyk and I.F.J. Vankelecom; Journal of Membrane Science
<b> 582</b>

 (2019)
 442 - 453.
<p class="infolinks">
[<a href="javascript:toggleInfo('Verbeke2019b','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Verbeke2019b','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0376738818325948">URL</a>]
[<a href="https://doi.org/10.1016/j.memsci.2019.02.016">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Verbeke2019b.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Verbeke2019b" class="abstract noshow">
	<td><b>Abstract</b>: Membrane technology is currently still excluded from separations in more aggressive feeds due to limited chemical robustness. To extent its applicability, a novel thin-film composite (TFC) membrane was synthesized via the homopolymerization of epoxide monomers, resulting in robust poly(epoxyether) top-layers with >90% rose bengal (MW = 1017 Da) and 70% methyl orange (MW = 327 Da) retention with reasonable water fluxes (>2 L m-2 h−1 bar−1). The superior chemical stability of this novel nanofiltration membrane type was proven via treatments in pH 1 and 500 ppm NaOCl (pH 4) for, respectively, 48 h and 2.5 h, after which an unchanged or even improved membrane performance was observed. Additionally, the synthesis of the thin top-layer occurred via an interfacial initiation of the polymerization (IIP), rather than via state-of-the-art interfacial polymerization (IP). This IIP approach allowed to convert well-known monophasic bulk epoxide polymerization (commonly used in e.g. the automotive and coating industry), into the synthesis of thin, yet cross-linked top-layers.</td>
</tr>
<tr id="bib_Verbeke2019b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Verbeke2019b,
	  author = {Verbeke, Rhea and Arts, Wouter and Dom, Elke and Dickmann, Marcel and Egger, Werner and Koeckelberghs, Guy and Szymczyk, Anthony and Vankelecom, Ivo F. J.},
	  title = {Transferring bulk chemistry to interfacial synthesis of TFC-membranes to create chemically robust poly(epoxyether) films},
	  journal = {Journal of Membrane Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {582},
	  pages = {442 - 453},
	  url = {http://www.sciencedirect.com/science/article/pii/S0376738818325948},
	  doi = {https://doi.org/10.1016/j.memsci.2019.02.016}
	}
	</pre></td>
</tr>






<tr id="Zibrov2019" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1741-4326/ab3c7e">Deuterium trapping by deformation-induced defects in tungsten</a></em><br />
M. Zibrov, M. Balden, M. Dickmann, A. Dubinko, W. Egger, M. Mayer, D. Terentyev and M. Wirtz; Nuclear Fusion
<b> 59</b>
 (10)
 (2019)
 106056.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zibrov2019','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zibrov2019','bibtex')">BibTeX</a>]
[<a href="https://iopscience.iop.org/article/10.1088/1741-4326/ab3c7e">URL</a>]
[<a href="https://doi.org/10.1088/1741-4326/ab3c7e">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zibrov2019.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zibrov2019" class="abstract noshow">
	<td><b>Abstract</b>: The influence of defects induced by plastic deformation of tungsten (W) on deuterium (D) retention has been studied. Recrystallized W samples were subjected to tensile deformations at temperatures of 573 K and 873 K to strains in the range of 3%–38%. The dislocation density measured by transmission electron microscopy increased by about 40 times after deformation to the highest strain. The introduced defects were decorated with D by exposure to a low-flux D plasma at sample temperatures of 370 K and 450 K. D retention in the samples was studied using nuclear reaction analysis and thermal desorption spectroscopy. The trapped D concentrations after the plasma exposures were low (up to a few times 10−4 at. fr.) and increased more slowly with strain than the dislocation density. Small vacancy-like defects and large vacancy clusters were detected in the samples by positron annihilation lifetime spectroscopy. Their concentrations also increased with strain more weakly than the dislocation density. It was concluded that these defects governed the D retention under plasma exposure at 450 K, while dislocations gave only a small contribution. It was also found that deformation already to the lowest strains significantly facilitates the formation of blister-like structures under D plasma exposure at 370 K. The defects associated with blister-like structures presumably gave a substantial contribution to D retention at 370 K.</td>
</tr>
<tr id="bib_Zibrov2019" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zibrov2019,
	  author = {M. Zibrov and M. Balden and M. Dickmann and A. Dubinko and W. Egger and M. Mayer and D. Terentyev and M. Wirtz},
	  title = {Deuterium trapping by deformation-induced defects in tungsten},
	  journal = {Nuclear Fusion},
	  publisher = {IOP Publishing},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {59},
	  number = {10},
	  pages = {106056},
	  url = {https://iopscience.iop.org/article/10.1088/1741-4326/ab3c7e},
	  doi = {https://doi.org/10.1088/1741-4326/ab3c7e}
	}
	</pre></td>
</tr>






<tr id="Zibrov2019a" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1741-4326/ab472b">Erratum: Deuterium trapping by deformation-induced defects in tungsten (2019 Nucl. Fusion 59 106056)</a></em><br />
M. Zibrov, M. Balden, M. Dickmann, A. Dubinko, W. Egger, M. Mayer, D. Terentyev and M. Wirtz; Nuclear Fusion
<b> 59</b>
 (12)
 (2019)
 129601.
<p class="infolinks">


[<a href="javascript:toggleInfo('Zibrov2019a','bibtex')">BibTeX</a>]
[<a href="https://iopscience.iop.org/article/10.1088/1741-4326/ab472b">URL</a>]
[<a href="https://doi.org/10.1088/1741-4326/ab472b">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zibrov2019a.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Zibrov2019a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zibrov2019a,
	  author = {M. Zibrov and M. Balden and M. Dickmann and A. Dubinko and W. Egger and M. Mayer and D. Terentyev and M. Wirtz},
	  title = {Erratum: Deuterium trapping by deformation-induced defects in tungsten (2019 Nucl. Fusion 59 106056)},
	  journal = {Nuclear Fusion},
	  publisher = {IOP Publishing},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2019},
	  volume = {59},
	  number = {12},
	  pages = {129601},
	  url = {https://iopscience.iop.org/article/10.1088/1741-4326/ab472b},
	  doi = {https://doi.org/10.1088/1741-4326/ab472b}
	}
	</pre></td>
</tr>




<tr id="2018" class="entry"><td><h1>2018</h1></td></tr>

<tr id="Hensling2018" class="entry">

<td>
<em> <a href="https://doi.org/10.1038/s41598-018-27207-5">UV radiation enhanced oxygen vacancy formation caused by the PLD plasma plume</a></em><br />
F.V.E. Hensling, D.J. Keeble, J. Zhu, S. Brose, C. Xu, F. Gunkel, S. Danylyuk, S.S. Nonnenmann, W. Egger and R. Dittmann; Scientific Reports
<b> 8</b>
 (1)
 (2018)
 8846.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hensling2018','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hensling2018','bibtex')">BibTeX</a>]
[<a href="https://www.nature.com/articles/s41598-018-27207-5">URL</a>]
[<a href="https://doi.org/10.1038/s41598-018-27207-5">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hensling2018.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hensling2018" class="abstract noshow">
	<td><b>Abstract</b>: Pulsed Laser Deposition is a commonly used non-equilibrium physical deposition technique for the growth of complex oxide thin films. A wide range of parameters is known to influence the properties of the used samples and thin films, especially the oxygen-vacancy concentration. One parameter has up to this point been neglected due to the challenges of separating its influence from the influence of the impinging species during growth: the UV-radiation of the plasma plume. We here present experiments enabled by a specially designed holder to allow a separation of these two influences. The influence of the UV-irradiation during pulsed laser deposition on the formation of oxygen-vacancies is investigated for the perovskite model material SrTiO3. The carrier concentration of UV-irradiated samples is nearly constant with depth and time. By contrast samples not exposed to the radiation of the plume show a depth dependence and a decrease in concentration over time. We reveal an increase in Ti-vacancy–oxygen-vacancy-complexes for UV irradiated samples, consistent with the different carrier concentrations. We find a UV enhanced oxygen-vacancy incorporation rate as responsible mechanism. We provide a complete picture of another influence parameter to be considered during pulsed laser depositions and unravel the mechanism behind persistent-photo-conductivity in SrTiO3.</td>
</tr>
<tr id="bib_Hensling2018" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hensling2018,
	  author = {Hensling, Felix V. E. and Keeble, David J. and Zhu, Jiaxin and Brose, Sascha and Xu, Chencheng and Gunkel, Felix and Danylyuk, Serhiy and Nonnenmann, Stephen S. and Egger, Werner and Dittmann, Regina},
	  title = {UV radiation enhanced oxygen vacancy formation caused by the PLD plasma plume},
	  journal = {Scientific Reports},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2018},
	  volume = {8},
	  number = {1},
	  pages = {8846},
	  url = {https://www.nature.com/articles/s41598-018-27207-5},
	  doi = {https://doi.org/10.1038/s41598-018-27207-5}
	}
	</pre></td>
</tr>






<tr id="Shi2018" class="entry">

<td>
<em> <a href="https://doi.org/10.1109/JPHOTOV.2018.2863788">Positron Annihilation Studies on the Damp Heat Degradation of ZnO : Al Transparent Conductive Oxide Layers for CIGS Solar Cells</a></em><br />
W. Shi, M.J. Theelen, V.S. Gevaerts, A. Illiberi, N. Barreau, M. Butterling, H. Schut, W. Egger, M. Dickmann, C.P. Hugenschmidt, M. Zeman, E. Brück and S.W.H. Eijt; IEEE Journal of Photovoltaics
<b> 8</b>
 (6)
 (2018)
 1847 - 1851.
<p class="infolinks">
[<a href="javascript:toggleInfo('Shi2018','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Shi2018','bibtex')">BibTeX</a>]
[<a href="https://ieeexplore.ieee.org/document/8437251">URL</a>]
[<a href="https://doi.org/10.1109/JPHOTOV.2018.2863788">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Shi2018.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Shi2018" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation depth-profiling is used as an innovative tool to monitor the evolution of vacancy defects in two series of ZnO:Al transparent conductive oxide (TCO) layers for Cu(In,Ga)Se2 (CIGS) solar cells under accelerated degradation at 85 °C/85% relative humidity. The first series of ZnO:Al layers are deposited directly on flat glass substrates, leading to low densities of (extended) grain boundaries in the ZnO:Al. These ZnO:Al layers only show an increase in open volume upon degradation in the near-surface range. The second series of ZnO:Al layers are deposited on the more corrugated surface of CdS/CIGS/Mo solar cells, and show, on the other hand, a pronounced formation of open volume throughout the layer. Its depth-dependence is consistent with in-diffusion of molecules such as H2O and CO2 into the ZnO:Al layer via the grain boundaries, as primary driver for the degradation. The detected time-dependence of the growth of open volume at the grain boundaries in the ZnO:Al TCO layer matches the time scale of the observed reduction in solar cell efficiency and series resistance, suggesting that the generated open volume induces a significant barrier against charge carrier transport.</td>
</tr>
<tr id="bib_Shi2018" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Shi2018,
	  author = {Shi, Wenqin and Theelen, Mirjam J. and Gevaerts, Veronique S. and Illiberi, Andrea and Barreau, Nicolas and Butterling, Maik and Schut, Henk and Egger, Werner and Dickmann, Marcel and Hugenschmidt, Christoph P. and Zeman, Miro and Brück, Ekkes and Eijt, Stephan W. H.},
	  title = {Positron Annihilation Studies on the Damp Heat Degradation of ZnO : Al Transparent Conductive Oxide Layers for CIGS Solar Cells},
	  journal = {IEEE Journal of Photovoltaics},
	  publisher = {IEEE},
	  type = {OpenAccess},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2018},
	  volume = {8},
	  number = {6},
	  pages = {1847 - 1851},
	  url = {https://ieeexplore.ieee.org/document/8437251},
	  doi = {https://doi.org/10.1109/JPHOTOV.2018.2863788}
	}
	</pre></td>
</tr>






<tr id="Uedono2018" class="entry">

<td>
<em> <a href="https://iopscience.iop.org/article/10.1149/08610.0149ecst">Vacancy-Type Defects and Their Carrier Trapping Properties in GaN Studied by Monoenergetic Positron Beams</a></em><br />
A. Uedono, T. Tanaka, N. Ito, K. Nakahara, W. Egger, C. Hugenschmidt, S. Ishibashi and M. Sumiya;
In: , E. Simoen, O. Kononchuk, O. Nakatsuka and C. Claeys (Eds.),
<em>  High Purity and High Mobility Semiconductors 15</em>
, ECS Transactions
 <b>86</b>
 (2018)
 149-160
, The Electrochemical Society.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uedono2018','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uedono2018','bibtex')">BibTeX</a>]
[<a href="https://iopscience.iop.org/article/10.1149/08610.0149ecst">URL</a>]
[<a href="https://doi.org/10.1149/08610.0149ecst">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2018.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uedono2018" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation is a powerful technique for evaluating point defects in semiconductors. Using this technique, one can detect vacancy-type defects in subsurface regions with high-sensitivity. We have used monoenergetic positron beams to probe native vacancies in GaN grown on Si substrate by metalorganic vapor phase epitaxy. Measurements of Doppler broadening spectra and positron lifetimes indicated that the major defect species in the GaN layers was a Ga vacancy coupled with nitrogen vacancies. The positron trapping rate of the defects decreased with increasing [C], which was attributed to the downward shift of the Fermi level position and the resultant change in the defect charge state. Under illumination, the defect charge state was changed from positive to neutral, which was attributed to the trapping of the excited electrons by the defects. The effect of illumination was suppressed for the GaN layer with [C] = 1018 cm−3, which was ascribed to an excellent electron trapping property of C in GaN.</td>
</tr>
<tr id="bib_Uedono2018" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Uedono2018,
	  author = {Uedono, Akira and Tanaka, Taketoshi and Ito, Norikazu and Nakahara, Ken and Egger, Werner and Hugenschmidt, Christoph and Ishibashi, Shoji and Sumiya, Masatomo},
	  title = {Vacancy-Type Defects and Their Carrier Trapping Properties in GaN Studied by Monoenergetic Positron Beams},
	  booktitle = {High Purity and High Mobility Semiconductors 15},
	  journal = {ECS Transactions},
	  publisher = {The Electrochemical Society},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2018},
	  volume = {86},
	  number = {10},
	  pages = {149--160},
	  editor = {Simoen, E. and Kononchuk, O. and Nakatsuka, O. and Claeys, C.},
	  note = {AiMES 2018 Meetings, Cancun, Mexico, September 30, 2018 – October 4, 2018, Number 10, 2018},
	  url = {https://iopscience.iop.org/article/10.1149/08610.0149ecst},
	  doi = {https://doi.org/10.1149/08610.0149ecst}
	}
	</pre></td>
</tr>






<tr id="VanGoethem2018" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/acs.macromol.8b01635">Increasing Membrane Permeability by Increasing the Polymer Crystallinity: The Unique Case of Polythiophenes</a></em><br />
C. Van Goethem, M. Mulunda, R. Verbeke, T. Koschine, M. Wübbenhorst, Z. Zhang, E. Nies, M. Dickmann, W. Egger, I. Vankelecom and G. Koeckelberghs; Macromolecules
<b> 51</b>
 (23)
 (2018)
 9943-9950.
<p class="infolinks">
[<a href="javascript:toggleInfo('VanGoethem2018','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('VanGoethem2018','bibtex')">BibTeX</a>]
[<a href="https://pubs.acs.org/doi/abs/10.1021/acs.macromol.8b01635">URL</a>]
[<a href="https://doi.org/10.1021/acs.macromol.8b01635">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/VanGoethem2018.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_VanGoethem2018" class="abstract noshow">
	<td><b>Abstract</b>: It is generally accepted in membrane technology that crystalline zones in polymeric membranes do not contribute to transport of liquids or gases. In the current study, poly(3-alkylthiophene)s (P3ATs), i.e., homopolymers and random copolymers, were synthesized to study the influence of the supramolecular organization on membrane gas separations. The monomers were polymerized via KCTCP, and GPC analysis shows that the polymers have a narrow dispersity. DSC analysis of the polymers reveals that the homopolymers, in contrast to the copolymers, crystallized, confirming their higher degree of supramolecular organization. This was supported by UV-vis absorption spectra of the polymer films, where a red-shift and a characteristic shoulder absorption peak around 600 nm were observed for the homopolymers, while absent for the copolymers. More surprisingly, the homopolymers were found to be 2 orders of magnitude more permeable to CO2 than the copolymers and also more selective.</td>
</tr>
<tr id="bib_VanGoethem2018" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{VanGoethem2018,
	  author = {Van Goethem, C. and Mulunda, M.M. and Verbeke, R. and Koschine, T. and Wübbenhorst, M. and Zhang, Z. and Nies, E. and Dickmann, M. and Egger, W. and Vankelecom, I.F.J. and Koeckelberghs, G.},
	  title = {Increasing Membrane Permeability by Increasing the Polymer Crystallinity: The Unique Case of Polythiophenes},
	  journal = {Macromolecules},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2018},
	  volume = {51},
	  number = {23},
	  pages = {9943-9950},
	  note = {cited By 0},
	  url = {https://pubs.acs.org/doi/abs/10.1021/acs.macromol.8b01635},
	  doi = {https://doi.org/10.1021/acs.macromol.8b01635}
	}
	</pre></td>
</tr>






<tr id="VanGoethem2018a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.memsci.2018.06.040">The role of MOFs in Thin-Film Nanocomposite (TFN) membranes</a></em><br />
C. Van Goethem, R. Verbeke, M. Pfanmöller, T. Koschine, M. Dickmann, T. Timpel-Lindner, W. Egger, S. Bals and I. Vankelecom; Journal of Membrane Science
<b> 563</b>

 (2018)
 938-948.
<p class="infolinks">
[<a href="javascript:toggleInfo('VanGoethem2018a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('VanGoethem2018a','bibtex')">BibTeX</a>]
[<a href="https://www.sciencedirect.com/science/article/pii/S0376738818306239">URL</a>]
[<a href="https://doi.org/10.1016/j.memsci.2018.06.040">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/VanGoethem2018a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_VanGoethem2018a" class="abstract noshow">
	<td><b>Abstract</b>: Incorporation of MOFs in interfacially polymerized Thin-Film Nanocomposite (TFN) membranes has widely been shown to result in increased membrane performance. However, the exact functioning of these membranes is poorly understood as large variability in permeance increase, filler incorporation and rejection changes can be observed in literature. The synthesis and functioning of TFN membranes (herein exemplified by ZIF-8 filled polyamide (PA) membranes prepared via the EFP method) was investigated via targeted membrane synthesis and thorough characterization via STEM-EDX, XRD and PALS. It is hypothesized that the acid generated during the interfacial polymerization (IP) at least partially degrades the crystalline, acid-sensitive ZIF-8 and that this influences the membrane formation (through so-called secondary effects, i.e. not strictly linked to the pore morphology of the MOF). Nanoscale HAADF-STEM imaging and STEM-EDX Zn-mapping revealed no ZIF-8 particles but rather the presence of randomly shaped regions with elevated Zn-content. Also XRD failed to show the presence of crystalline areas in the composite PA films. As the addition of the acid-quenching TEA led to an increase in the diffraction signal observed in XRD, the role of the acid was confirmed. The separate addition of dissolved Zn2+ to the synthesis of regular TFC membranes showed an increase in permeance while losing some salt retention, similar to observations regularly made for TFN membranes. While the addition of a porous material to a TFC membrane is a straightforward concept, all obtained results indicate that the synthesis and performance of such composite membranes is often more complex than commonly accepted. © 2018 Elsevier B.V.</td>
</tr>
<tr id="bib_VanGoethem2018a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{VanGoethem2018a,
	  author = {Van Goethem, C. and Verbeke, R. and Pfanmöller, M. and Koschine, T. and Dickmann, M. and Timpel-Lindner, T. and Egger, W. and Bals, S. and Vankelecom, I.F.J.},
	  title = {The role of MOFs in Thin-Film Nanocomposite (TFN) membranes},
	  journal = {Journal of Membrane Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2018},
	  volume = {563},
	  pages = {938-948},
	  note = {cited By 3},
	  url = {https://www.sciencedirect.com/science/article/pii/S0376738818306239},
	  doi = {https://doi.org/10.1016/j.memsci.2018.06.040}
	}
	</pre></td>
</tr>






<tr id="Verbeke2018" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.memsci.2018.01.019">Real-scale chlorination at pH4 of BW30 TFC membranes and their physicochemical characterization</a></em><br />
R. Verbeke, V. Gómez, T. Koschine, S. Eyley, A. Szymczyk, M. Dickmann, T. Stimpel-Lindner, W. Egger, W. Thielemans and I. Vankelecom; Journal of Membrane Science
<b> 551</b>

 (2018)
 123-135.
<p class="infolinks">
[<a href="javascript:toggleInfo('Verbeke2018','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Verbeke2018','bibtex')">BibTeX</a>]
[<a href="https://www.sciencedirect.com/science/article/pii/S0376738817327813">URL</a>]
[<a href="https://doi.org/10.1016/j.memsci.2018.01.019">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Verbeke2018.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Verbeke2018" class="abstract noshow">
	<td><b>Abstract</b>: Chlorination remains a big hurdle in membrane technology as the most commonly used membranes for water purification consist of a polyamide top-layer, which is not fully resistant towards chlorine-induced oxidation. In this work, DOW FILMTEC™ BW30 membrane elements were systematically chlorinated with NaOCl at pilot-scale under acidic conditions (pH4) at 10 bar for 2.5 h. Variations in membrane performance and their physicochemical properties were determined by ATR-FTIR, XPS, WD-XRF, SEM, AFM and zeta-potential measurements. With increasing bleaching concentration, both membrane roughness and chlorine incorporation via N- and ring-chlorination increased, while surface charge remained quasi unaltered. Both water flux and salt passage decreased proportionally over the whole concentration range. Accordingly, positron annihilation lifetime spectroscopy (PALS) revealed a decrease in the size of the top-layer free-volume elements as chlorine concentration increased, confirming, for the first time in a quantitative manner, the so-called tightening effect. The obtained results also show that thin-film composite (TFC) membranes are altered differently when chlorinated under pressure than via simple immersion, as conventionally performed in literature.</td>
</tr>
<tr id="bib_Verbeke2018" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Verbeke2018,
	  author = {Verbeke, R. and Gómez, V. and Koschine, T. and Eyley, S. and Szymczyk, A. and Dickmann, M. and Stimpel-Lindner, T. and Egger, W. and Thielemans, W. and Vankelecom, I.F.J.},
	  title = {Real-scale chlorination at pH4 of BW30 TFC membranes and their physicochemical characterization},
	  journal = {Journal of Membrane Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2018},
	  volume = {551},
	  pages = {123-135},
	  note = {cited By 4},
	  url = {https://www.sciencedirect.com/science/article/pii/S0376738817327813},
	  doi = {https://doi.org/10.1016/j.memsci.2018.01.019}
	}
	</pre></td>
</tr>




<tr id="2017" class="entry"><td><h1>2017</h1></td></tr>

<tr id="Ackermann2017diss" class="entry">

<td>
<em> <a href="http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-5196">Ein Szintillationsdetektor für die Positronenannihilation zur Korrelation von Lebensdauer und 3D-Impuls</a></em><br />
Ulrich Ackermann; Dissertation, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2017.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ackermann2017diss','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ackermann2017diss','bibtex')">BibTeX</a>]
[<a href="http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-5196">URL</a>]

[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Ackermann2017diss.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ackermann2017diss" class="abstract noshow">
	<td><b>Abstract</b>: In dieser Arbeit wurde ein orts- und zeitauflösender Szintillationsdetektor für Four-Dimensional Age Momentum Correlation (4D-AMOC) Messungen für die Positronenannihilation entwickelt. Mit dem Szintillationsdetektor und einem gepixelten Ge-Detektor wurden die weltweit ersten 4D-AMOC-Messungen am Scanning Positron Microscope (SPM) Interface an der Positronenquelle Neutron Induced Positron Source Munich (NEPOMUC) am Forschungsreaktor FRM II durchgeführt. Bei 4D-AMOC-Messungen wird der dreidimensionale Impuls des mit einem Positron annihilierenden Elektrons in Koinzidenz mit der Positronenlebensdauer ermittelt. Somit können Aussagen über Defekttypen im Festkörper und deren jeweilige chemische Umgebung gemacht werden. Der dreidimensionale Elektronenimpuls wird aus der Messung der Energie eines der beiden Annihilationsquanten, sowie aus der Winkelkorrelation beider Annihilationsquanten bestimmt. Die Positronenlebensdauer erhält man aus der zeitlichen Differenz zwischen der Implantation und Annihilation des Positrons in der Probe. Für 4D-AMOC-Messungen wird ein schneller ortssensitiver Szintillationsdetektor (Zeit und Ort) in Koinzidenz mit einem ortsensitiven Ge-Detektor (Energie und Ort) benötigt. Der in dieser Arbeit entwickelte orts- und zeitauflösende Szintillationsdetektor bestand aus einem Microchannel Plate Image Intensifier (MCPII) mit 40 mm aktivem Durchmesser und einer externen 2D-Backgammon Anode, sowie einem CeBr3-Pixelarray (Pixelgröße: 2,5 &sdot; 2,5 &sdot; 8 mm<sup>3</sup>; Pixelpitch 3,3 mm). Bei einer Gammaenergie von 511 keV wurde eine Eigenzeitauflösung im Bereich des Zentrums des Szintillationsdetektors von 320 ps (FWHM) erreicht. Die Ortsauflösung war bei einer Gammaenergie von 511 keV nur durch den Pixelquerschnitt von 2,5 &sdot; 2,5 mm<sup>2</sup> bestimmt. Mit dem orts- und zeitauflösenden Szintillationsdetektor und einem gepixelten Ge-Detektor wurden 4D-AMOC-Messungen am SPM Interface durchgeführt. Die untersuchten Proben waren eine Goldfolie und eine Kohlenstofffolie. Die Instrumentenfunktion (Strahlpulsung und Szintilltionsdetektor) am SPM Interface betrug 540 ps (FWHM), die transversale Elektronenimpulsauflösung  17&sdot;10<sup>-3</sup> m<sub>0</sub>c (FWHM) und die longitudinale Elektronenimpulsauflösung 5&sdot;10<sup>-3</sup> m<sub>0</sub>c (FWHM). Aus den gemessenen 4D-AMOC-Spektren, in denen der Betrag des dreidimensionalen Elektronenimpulses in Abhängigkeit der Zeit aufgetragen ist, konnten die Positronenlebensdauern sowie deren zugehörigen diskreten Impulszustände ermittelt werden.</td>
</tr>
<tr id="bib_Ackermann2017diss" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@phdthesis{Ackermann2017diss,
	  author = {Ulrich Ackermann},
	  title = {Ein Szintillationsdetektor für die Positronenannihilation zur Korrelation von Lebensdauer und 3D-Impuls},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017},
	  url = {http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-5196}
	}
	</pre></td>
</tr>






<tr id="Cizek2017" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/791/1/012017">Point defects in ZnO crystals grown by various techniques</a></em><br />
J. Čížek, M. Vlček, P. Hruška, F. Lukáč, O. Melikhova, W. Anwand, F. Selim, C. Hugenschmidt and W. Egger; Journal of Physics: Conference Series
<b> 791</b>
 (1)
 (2017)
 012017.
<p class="infolinks">
[<a href="javascript:toggleInfo('Cizek2017','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Cizek2017','bibtex')">BibTeX</a>]
[<a href="http://stacks.iop.org/1742-6596/791/i=1/a=012017">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/791/1/012017">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Cizek2017.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Cizek2017" class="abstract noshow">
	<td><b>Abstract</b>: In the present work point defects in ZnO crystals were characterized by positron lifetime spectroscopy combined with back-diffusion measurement of slow positrons. Defects in ZnO crystals grown by various techniques were compared. Hydrothermally grown ZnO crystals contain defects characterized by lifetime of ≈181 ps. These defects were attributed to Zn vacancies associated with hydrogen. ZnO crystals prepared by other techniques (Bridgman, pressurized melt growth, and seeded chemical vapour transport) exhibit shorter lifetime of ≈165 ps. Positron back-diffusion studies revealed that hydrothermally grown ZnO crystals contain higher density of defects than the crystals grown by other techniques. The lowest concentration of defects was detected in the crystal grown by seeded chemical vapor transport.</td>
</tr>
<tr id="bib_Cizek2017" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Cizek2017,
	  author = {J Čížek and M Vlček and P Hruška and F Lukáč and O Melikhova and W Anwand and F Selim and Ch Hugenschmidt and W Egger},
	  title = {Point defects in ZnO crystals grown by various techniques},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017},
	  volume = {791},
	  number = {1},
	  pages = {012017},
	  url = {http://stacks.iop.org/1742-6596/791/i=1/a=012017},
	  doi = {https://doi.org/10.1088/1742-6596/791/1/012017}
	}
	</pre></td>
</tr>






<tr id="Dickmann2017diss" class="entry">

<td>
<em> <a href="http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-5478">Radio Frequency Energy Elevation and Characterization of a Pulsed Positron Microbeam</a></em><br />
Marcel Dickmann; Dissertation, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2017.
<p class="infolinks">
[<a href="javascript:toggleInfo('Dickmann2017diss','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Dickmann2017diss','bibtex')">BibTeX</a>]
[<a href="http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-5478">URL</a>]

[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Dickmann2017diss.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Dickmann2017diss" class="abstract noshow">
	<td><b>Abstract</b>: This thesis concerns the implementation of the renewed Scanning Positron Microscope (SPM) interface, including the positron elevator, at the high intensity positron source NEPOMUC at the Munich research reactor FRM II. The interface transfers the NEPOMUC beam into a pulsed microbeam of high brightness in order to reach the stringent requirements of the microscope. With the SPM itself it is possible to measure spatially resolved positron annihilation lifetime spectra in order to investigate defects for material science.<p>The in-pile positron source NEPOMUC provides a once-re-moderated positron beam of 3.0&sdot;10<sup>7</sup> e<sup>+</sup>/s , 20 eV kinetic energy, about 2 mm diameter and a transverse phase space volume in the range of 4.2 mm<sup>2</sup>eV·m<sub>e</sub>. To generate a beam spot of  &le; 2 &mu;m on the sample, the SPM requires a phase space of less than 0.7 mm<sup>2</sup>eV·m<sub>e</sub>. For this reason, the interface is equipped with an additional re-moderation stage, which enhances the beam brightness. With every additional component, however, the manual beam alignment becomes more delicate and time consuming. Therefore, devices for beam characterization and automated beam alignment have been developed and applied with great success. Furthermore, a serious problem is that every re-moderation step leads to a loss of several keV total beam energy. Limitations, which issue from the low beam energy and the restricted space between microscope and interface, prevent an increase of the kinetic beam energy by a conventional radio frequency accelerator. Thus, we developed a new device, which increases the potential beam energy without altering any other beam parameters. To stress the differences we call the setup elevator. This final device is indispensable to operate the SPM at NEPOMUC. To verify that the high beam quality, which is achieved by the SPM interface, gets not lost as a result of the energy elevation, we determined the transverse phase space as 0.012 mm<sup>2</sup>eV·m<sub>e</sub> for an 1-keV-elevated beam. The results show that the elevator concept and design work. In addition, the elevator is also of advantage for other positron beam facilities, since it offers the possibility to bias source and sample on the same potential.</td>
</tr>
<tr id="bib_Dickmann2017diss" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@phdthesis{Dickmann2017diss,
	  author = {Marcel Dickmann},
	  title = {Radio Frequency Energy Elevation and Characterization of a Pulsed Positron Microbeam},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017},
	  url = {http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-5478}
	}
	</pre></td>
</tr>






<tr id="Eijt2017" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/791/1/012021">New insights into the nanostructure of innovative thin film solar cells gained by positron annihilation spectroscopy</a></em><br />
S.W.H. Eijt, W. Shi, A. Mannheim, M. Butterling, H. Schut, W. Egger, M. Dickmann, C. Hugenschmidt, B. Shakeri, R.W. Meulenberg, V. Callewaert, R. Saniz, B. Partoens, B. Barbiellini, A. Bansil, J. Melskens, M. Zeman, A.H.M. Smets, M. Kulbak, G. Hodes, D. Cahen and E. Brück; Journal of Physics: Conference Series
<b> 791</b>
 (1)
 (2017)
 012021.
<p class="infolinks">
[<a href="javascript:toggleInfo('Eijt2017','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Eijt2017','bibtex')">BibTeX</a>]
[<a href="http://stacks.iop.org/1742-6596/791/i=1/a=012021">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/791/1/012021">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Eijt2017.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Eijt2017" class="abstract noshow">
	<td><b>Abstract</b>: Recent studies showed that positron annihilation methods can provide key insights into the nanostructure and electronic structure of thin film solar cells. In this study, positron annihilation lifetime spectroscopy (PALS) is applied to investigate CdSe quantum dot (QD) light absorbing layers, providing evidence of positron trapping at the surfaces of the QDs. This enables one to monitor their surface composition and electronic structure. Further, 2D-Angular Correlation of Annihilation Radiation (2D-ACAR) is used to investigate the nanostructure of divacancies in photovoltaic-high-quality a-Si:H films. The collected momentum distributions were converted by Fourier transformation to the direct space representation of the electron-positron autocorrelation function. The evolution of the size of the divacancies as a function of hydrogen dilution during deposition of a-Si:H thin films was examined. Finally, we present a first positron Doppler Broadening of Annihilation Radiation (DBAR) study of the emerging class of highly efficient thin film solar cells based on perovskites.</td>
</tr>
<tr id="bib_Eijt2017" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Eijt2017,
	  author = {S W H Eijt and W Shi and A Mannheim and M Butterling and H Schut and W Egger and M Dickmann and C Hugenschmidt and B Shakeri and R W Meulenberg and V Callewaert and R Saniz and B Partoens and B Barbiellini and A Bansil and J Melskens and M Zeman and A H M Smets and M Kulbak and G Hodes and D Cahen and E Brück},
	  title = {New insights into the nanostructure of innovative thin film solar cells gained by positron annihilation spectroscopy},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017},
	  volume = {791},
	  number = {1},
	  pages = {012021},
	  url = {http://stacks.iop.org/1742-6596/791/i=1/a=012021},
	  doi = {https://doi.org/10.1088/1742-6596/791/1/012021}
	}
	</pre></td>
</tr>






<tr id="Mitteneder2017" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/791/1/012006">Micrometer positron beam characterization at the Scanning Positron Microscope Interface</a></em><br />
J. Mitteneder, M. Dickmann, G. Kögel, W. Egger, P. Sperr and G. Dollinger; Journal of Physics: Conference Series
<b> 791</b>
 (1)
 (2017)
 012006.
<p class="infolinks">
[<a href="javascript:toggleInfo('Mitteneder2017','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Mitteneder2017','bibtex')">BibTeX</a>]
[<a href="http://stacks.iop.org/1742-6596/791/i=1/a=012006">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/791/1/012006">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Mitteneder2017.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Mitteneder2017" class="abstract noshow">
	<td><b>Abstract</b>: For the investigation of inhomogeneous defect distributions the Scanning Positron Microscope (SPM) of the Universität der Bundeswehr München provides a pulsed positron beam with a diameter of about 1 µm and a time resolution of 250 ps (FWHM). To increase the count-rate the SPM is currently transferred to the intense positron source NEPOMUC. To connect the SPM to the NEPOMUC source a special interface was build, which transforms the NEPOMUC beam to the requirements of the SPM. In this contribution we will give an overview of the SPM interface, and its performance. The beam is characterized at the finale stage of the interface, the positron elevator, where the potential energy of the beam is increased, without altering other beam parameters. From our measurements we are able to predict the performance of the SPM at NEPOMUC. In future position resolved measurements will be possible with an improved spatial resolution of about 0.3 µm and an event rate of about 3.7 kHz.</td>
</tr>
<tr id="bib_Mitteneder2017" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Mitteneder2017,
	  author = {Johannes Mitteneder and Marcel Dickmann and Gottfried Kögel and Werner Egger and Peter Sperr and Günther Dollinger},
	  title = {Micrometer positron beam characterization at the Scanning Positron Microscope Interface},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017},
	  volume = {791},
	  number = {1},
	  pages = {012006},
	  url = {http://stacks.iop.org/1742-6596/791/i=1/a=012006},
	  doi = {https://doi.org/10.1088/1742-6596/791/1/012006}
	}
	</pre></td>
</tr>






<tr id="Roilo2017" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/acs.jpcc.7b02895">Cellulose Nanofibrils Films: Molecular Diffusion through Elongated Sub-Nano Cavities</a></em><br />
D. Roilo, C.A. Maestri, M. Scarpa, P. Bettotti, W. Egger, T. Koschine, R.S. Brusa and R. Checchetto; The Journal of Physical Chemistry C
<b> 121</b>
 (28)
 (2017)
 15437-15447.
<p class="infolinks">
[<a href="javascript:toggleInfo('Roilo2017','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Roilo2017','bibtex')">BibTeX</a>]
[<a href="https://pubs.acs.org/doi/10.1021/acs.jpcc.7b02895">URL</a>]
[<a href="https://doi.org/10.1021/acs.jpcc.7b02895">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Roilo2017.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Roilo2017" class="abstract noshow">
	<td><b>Abstract</b>: We have studied the kinetics of gas transport through films made of self-assembled cellulose nanofibrils (CNF) by a time-resolved mass spectroscopy technique. Few micrometers thick films deposited on polylactic acid (PLA) substrates act as impermeable barriers for CO<sub>2</sub>, O<sub>2</sub>, and N<sub>2</sub> and reduce the <sup>2</sup>H<sub>2</sub> (deuterium) and He permeation flux by a factor of &nbsp;10<sup>3</sup> with respect to the uncoated substrate. Penetrant transport is controlled by the solution-diffusion mechanism and the coating acts as a diffusive barrier. <sup>2</sup>H<sub>2</sub> and He diffusivity values are in the 10<sup>–10</sup> and 10<sup>–9</sup> cm<sup>2</sup> s<sup>-1</sup> range, respectively, and their migration occurs by thermally activated process with 39 &plusmn; 1 and 33 &plusmn; 2 kJ mol<sup>–1</sup> activation energy. Positron annihilation lifetime spectroscopy analysis indicates that the diffusive path between the packed nanofibrils consists of elongated cavities with cross-sectional size &ap;0.31 nm. Results evidence that the selective transport of the small size penetrants is due to sieving effects and that small penetrant transport occurs in configurational diffusion regime.</td>
</tr>
<tr id="bib_Roilo2017" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Roilo2017,
	  author = {Roilo, David and Maestri, Cecilia Ada and Scarpa, Marina and Bettotti, Paolo and Egger, Werner and Koschine, Tönjes and Brusa, Roberto Sennen and Checchetto, Riccardo},
	  title = {Cellulose Nanofibrils Films: Molecular Diffusion through Elongated Sub-Nano Cavities},
	  journal = {The Journal of Physical Chemistry C},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017},
	  volume = {121},
	  number = {28},
	  pages = {15437-15447},
	  url = {https://pubs.acs.org/doi/10.1021/acs.jpcc.7b02895},
	  doi = {https://doi.org/10.1021/acs.jpcc.7b02895}
	}
	</pre></td>
</tr>






<tr id="Uedono2017" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.tsf.2017.08.021">Electron capture by vacancy-type defects in carbon-doped GaN studied using monoenergetic positron beams</a></em><br />
A. Uedono, T. Tanaka, N. Ito, K. Nakahara, W. Egger, C. Hugenschmidt, S. Ishibashi and M. Sumiya; Thin Solid Films
<b> 639</b>

 (2017)
 78 - 83.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uedono2017','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uedono2017','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0040609017306016">URL</a>]
[<a href="https://doi.org/10.1016/j.tsf.2017.08.021">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uedono2017.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uedono2017" class="abstract noshow">
	<td><b>Abstract</b>: Vacancy-type defects in GaN with different carbon concentrations ([C]=2&times;10<sup>16</sup>−1&times;10<sup>18</sup>cm<sup>−3</sup>) were probed using monoenergetic positron beams. 1.5-&mu;m-thick GaN layers were grown on Si substrates by metalorganic vapor phase epitaxy. Measurements of Doppler broadening spectra and positron lifetimes indicated that the major defect species in the GaN layers was a Ga vacancy coupled with nitrogen vacancies. The positron trapping rate of the defects decreased with increasing [C], which was attributed to the downward shift of the Fermi level position due to C acceptor and the resultant change in the defect charge state (neutral to positive). Under illumination, the defect charge state was changed from positive to neutral, which was attributed to the trapping of the excited electrons by the defects (V<sup>+</sup>+e<sup>−</sup>→V<sup>0</sup>). The effect of illumination was suppressed for the GaN layer with [C]&le;10<sup>18</sup>cm<sup>−3</sup>, which was ascribed to the excellent electron trapping property of C in GaN.</td>
</tr>
<tr id="bib_Uedono2017" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uedono2017,
	  author = {Akira Uedono and Taketoshi Tanaka and Norikazu Ito and Ken Nakahara and Werner Egger and Christoph Hugenschmidt and Shoji Ishibashi and Masatomo Sumiya},
	  title = {Electron capture by vacancy-type defects in carbon-doped GaN studied using monoenergetic positron beams},
	  journal = {Thin Solid Films},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017},
	  volume = {639},
	  pages = {78 - 83},
	  url = {http://www.sciencedirect.com/science/article/pii/S0040609017306016},
	  doi = {https://doi.org/10.1016/j.tsf.2017.08.021}
	}
	</pre></td>
</tr>






<tr id="Wanja2017sa" class="entry">

<td>
<em> <a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Wanja2017sa.pdf">Aufbau und Test eines Lambda-Viertel-Resonators für das Scanning Positron Microscope Interface</a></em><br />
Björn Wanja; Studienarbeit, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2017.
<p class="infolinks">


[<a href="javascript:toggleInfo('Wanja2017sa','bibtex')">BibTeX</a>]


[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Wanja2017sa.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Wanja2017sa" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@thesis{Wanja2017sa,
	  author = {Björn Wanja},
	  title = {Aufbau und Test eines Lambda-Viertel-Resonators für das Scanning Positron Microscope Interface},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2017}
	}
	</pre></td>
</tr>




<tr id="2016" class="entry"><td><h1>2016</h1></td></tr>

<tr id="Ackermann2016" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.nima.2016.03.110">Position and time resolution measurements with a microchannel plate image intensifier: A comparison of monolithic and pixelated CeBr3 scintillators</a></em><br />
U. Ackermann, S. Eschbaumer, A. Bergmaier, W. Egger, P. Sperr, C. Greubel, B. Löwe, P. Schotanus and G. Dollinger; Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment
<b> 823</b>

 (2016)
 56 - 64.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ackermann2016','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ackermann2016','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S016890021630153X">URL</a>]
[<a href="https://doi.org/10.1016/j.nima.2016.03.110">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ackermann2016.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ackermann2016" class="abstract noshow">
	<td><b>Abstract</b>: Abstract To perform Four Dimensional Age Momentum Correlation measurements in the near future, where one obtains the positron lifetime in coincidence with the three dimensional momentum of the electron annihilating with the positron, we have investigated the time and position resolution of two CeBr3 scintillators (monolithic and an array of pixels) using a Photek IPD340/Q/BI/RS microchannel plate image intensifier. The microchannel plate image intensifier has an active diameter of 40 mm and a stack of two microchannel plates in chevron configuration. The monolithic CeBr3 scintillator was cylindrically shaped with a diameter of 40 mm and a height of 5 mm. The pixelated scintillator array covered the whole active area of the microchannel plate image intensifier and the shape of each pixel was 2.5&sdot;2.5&sdot;8 mm<sup>3</sup> with a pixel pitch of 3.3 mm. For the monolithic setup the measured mean single time resolution was 330 ps (FWHM) at a gamma energy of 511 keV. No significant dependence on the position was detected. The position resolution at the center of the monolithic scintillator was about 2.5 mm (FWHM) at a gamma energy of 662 keV. The single time resolution of the pixelated crystal setup reached 320 ps (FWHM) in the region of the center of the active area of the microchannel plate image intensifier. The position resolution was limited by the cross-section of the pixels. The gamma energy for the pixel setup measurements was 511 keV.</td>
</tr>
<tr id="bib_Ackermann2016" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ackermann2016,
	  author = {Ulrich Ackermann and Stephan Eschbaumer and Andreas Bergmaier and Werner Egger and Peter Sperr and Christoph Greubel and Benjamin Löwe and Paul Schotanus and Günther Dollinger},
	  title = {Position and time resolution measurements with a microchannel plate image intensifier: A comparison of monolithic and pixelated CeBr3 scintillators},
	  journal = {Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2016},
	  volume = {823},
	  pages = {56 -- 64},
	  url = {http://www.sciencedirect.com/science/article/pii/S016890021630153X},
	  doi = {https://doi.org/10.1016/j.nima.2016.03.110}
	}
	</pre></td>
</tr>






<tr id="Ackermann2016a" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1367-2630/18/11/113030">Four-dimensional positron age-momentum correlation</a></em><br />
U. Ackermann, B. Löwe, M. Dickmann, J. Mitteneder, P. Sperr, W. Egger, M. Reiner and G. Dollinger; New Journal of Physics
<b> 18</b>
 (11)
 (2016)
 113030.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ackermann2016a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ackermann2016a','bibtex')">BibTeX</a>]
[<a href="http://stacks.iop.org/1367-2630/18/i=11/a=113030">URL</a>]
[<a href="https://doi.org/10.1088/1367-2630/18/11/113030">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ackermann2016a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ackermann2016a" class="abstract noshow">
	<td><b>Abstract</b>: We have performed first four-dimensional age-momentum correlation (4D-AMOC) measurements at a pulsed high intensity positron micro beam and determined the absolute value of the three-dimensional momentum of the electrons annihilating with the positrons in coincidence with the positron age in the sample material. We operated two position sensitive detectors in coincidence to measure the annihilation radiation: a pixelated HPGe-detector and a microchannel plate image intensifier with a CeBr 3 scintillator pixel array. The transversal momentum resolution of the 4D-AMOC setup was measured to be about 17&times;10<sup>-3</sup>  (FWHM) and was circa 3.5 times larger than the longitudinal momentum resolution. The total time resolution was 540 ps (FWHM). We measured two samples: a gold foil and a carbon tape at a positron implantation energy of 2 keV. For each sample discrete electron momentum states and their respective positron lifetimes were extracted.</td>
</tr>
<tr id="bib_Ackermann2016a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ackermann2016a,
	  author = {Ulrich Ackermann and Benjamin Löwe and Marcel Dickmann and Johannes Mitteneder and Peter Sperr and Werner Egger and Markus Reiner and Günther Dollinger},
	  title = {Four-dimensional positron age-momentum correlation},
	  journal = {New Journal of Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2016},
	  volume = {18},
	  number = {11},
	  pages = {113030},
	  url = {http://stacks.iop.org/1367-2630/18/i=11/a=113030},
	  doi = {https://doi.org/10.1088/1367-2630/18/11/113030}
	}
	</pre></td>
</tr>






<tr id="Dickmann2016" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.nima.2016.03.011">Radio frequency elevator for a pulsed positron beam</a></em><br />
M. Dickmann, J. Mitteneder, G. Kögel, W. Egger, P. Sperr, U. Ackermann, C. Piochacz and G. Dollinger; Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment
<b> 821</b>

 (2016)
 40 - 43.
<p class="infolinks">
[<a href="javascript:toggleInfo('Dickmann2016','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Dickmann2016','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168900216300298">URL</a>]
[<a href="https://doi.org/10.1016/j.nima.2016.03.011">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Dickmann2016.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Dickmann2016" class="abstract noshow">
	<td><b>Abstract</b>: Abstract An elevator increases the potential energy of a particle beam with respect to ground potential without any alteration of kinetic energy and other beam parameters. This elevator is necessary for the implementation of the Munich Scanning Positron Microscope (SPM) at the intense positron source NEPOMUC at the research reactor FRM II in Munich. The principles of the rf elevator for pure electrostatically guided positrons are described. Measurements of beam quality behind the elevator are reported, which confirm that after the implementation of elevator and SPM at NEPOMUC the SPM can be operated at a considerably improved resolution (&nbsp; 0.3 &mu;m) and event rate (&nbsp;3.7 kHz) compared to the laboratory based β+-source.</td>
</tr>
<tr id="bib_Dickmann2016" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Dickmann2016,
	  author = {Marcel Dickmann and Johannes Mitteneder and Gottfried Kögel and Werner Egger and Peter Sperr and Ulrich Ackermann and Christian Piochacz and Günther Dollinger},
	  title = {Radio frequency elevator for a pulsed positron beam},
	  journal = {Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2016},
	  volume = {821},
	  pages = {40 -- 43},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168900216300298},
	  doi = {https://doi.org/10.1016/j.nima.2016.03.011}
	}
	</pre></td>
</tr>






<tr id="Kanda2016" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0022-3727/49/2/025305">Positron annihilation lifetime spectroscopy study of Kapton thin foils</a></em><br />
G.S. Kanda, L. Ravelli, B. Löwe, W. Egger and D.J. Keeble; Journal of Physics D: Applied Physics
<b> 49</b>
 (2)
 (2016)
 025305.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kanda2016','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kanda2016','bibtex')">BibTeX</a>]
[<a href="http://stacks.iop.org/0022-3727/49/i=2/a=025305">URL</a>]
[<a href="https://doi.org/10.1088/0022-3727/49/2/025305">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kanda2016.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kanda2016" class="abstract noshow">
	<td><b>Abstract</b>: Variable energy positron annihilation lifetime spectroscopy (VE-PALS) experiments on polyimide material Kapton are reported. Thin Kapton foils are widely used in a variety of mechanical, electronic applications. PALS provides a sensitive probe of vacancy-related defects in a wide range of materials, including open volume in polymers. Varying the positron implantation energy enables direct measurement of thin foils. Thin Kapton foils are also commonly used to enclose the positron source material in conventional PALS measurements performed with unmoderated radionuclide sources. The results of depth-profiled positron lifetime measurements on 7.6 &mu;m and 25 &mu;m Kapton foils are reported and determine a dominant 385(1) ps lifetime component. The absence of significant nanosecond lifetime component due to positronium formation is confirmed.</td>
</tr>
<tr id="bib_Kanda2016" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Kanda2016,
	  author = {Gurmeet S Kanda and Luca Ravelli and Benjamin Löwe and Werner Egger and David J Keeble},
	  title = {Positron annihilation lifetime spectroscopy study of Kapton thin foils},
	  journal = {Journal of Physics D: Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2016},
	  volume = {49},
	  number = {2},
	  pages = {025305},
	  url = {http://stacks.iop.org/0022-3727/49/i=2/a=025305},
	  doi = {https://doi.org/10.1088/0022-3727/49/2/025305}
	}
	</pre></td>
</tr>




<tr id="2015" class="entry"><td><h1>2015</h1></td></tr>

<tr id="Ackermann2015" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.nima.2015.03.016">Time- and energy-resolution measurements of BaF2, BC-418, LYSO and CeBr3 scintillators</a></em><br />
U. Ackermann, W. Egger, P. Sperr and G. Dollinger; Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment
<b> 786</b>
 (0)
 (2015)
 5-11.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ackermann2015','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ackermann2015','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168900215003101">URL</a>]
[<a href="https://doi.org/10.1016/j.nima.2015.03.016">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ackermann2015.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ackermann2015" class="abstract noshow">
	<td><b>Abstract</b>: We have investigated the time and energy resolution (TTiming, ∆E/E) of four different scintillator materials BaF2, BC-418, LYSO and CeBr3 at a gamma energy of 511&amp;#xa0;keV in views of their possible usage for time, energy and position resolution for positron annihilation experiments. The shape of each scintillator was a cylinder with a diameter of 25&amp;#xa0;mm and a height of 10&amp;#xa0;mm readout by a Photonis XP2020/URQ photomultiplier tube. The best single time resolution was determined for each photomultiplier–scintillator setup in a three step optimization process. The optimized single time resolutions (FWHM) for BaF2, BC-418, LYSO and CeBr3 were 119&amp;#xa0;ps, 117&amp;#xa0;ps, 269&amp;#xa0;ps and 127&amp;#xa0;ps, respectively. We measured the energy resolution of the photomultiplier–scintillator setups which show a photopeak in the energy spectrum. The energy resolutions ∆E/E of BaF2, LYSO and CeBr3 were 9.8%, 9.7% and 5.4%, respectively. The overall most promising material for measuring simultaneously time, energy and position resolution for positron annihilation experiments seems to be CeBr3 due to its very good time and energy resolution characteristics.</td>
</tr>
<tr id="bib_Ackermann2015" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ackermann2015,
	  author = {Ackermann, Ulrich and Egger, Werner and Sperr, Peter and Dollinger, Günther},
	  title = {Time- and energy-resolution measurements of BaF2, BC-418, LYSO and CeBr3 scintillators},
	  journal = {Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2015},
	  volume = {786},
	  number = {0},
	  pages = {5--11},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168900215003101},
	  doi = {https://doi.org/10.1016/j.nima.2015.03.016}
	}
	</pre></td>
</tr>






<tr id="Khan2015" class="entry">

<td>
<em> <a href="https://doi.org/10.3390/membranes5020214">Free Volume and Gas Permeation in Anthracene Maleimide-Based Polymers of Intrinsic Microporosity</a></em><br />
M.M. Khan, V. Filiz, T. Emmler, V. Abetz, T. Koschine, K. Rätzke, F. Faupel, W. Egger and L. Ravelli; Membranes
<b> 5</b>
 (2)
 (2015)
 214.
<p class="infolinks">
[<a href="javascript:toggleInfo('Khan2015','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Khan2015','bibtex')">BibTeX</a>]
[<a href="http://www.mdpi.com/2077-0375/5/2/214">URL</a>]
[<a href="https://doi.org/10.3390/membranes5020214">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Khan2015.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Khan2015" class="abstract noshow">
	<td><b>Abstract</b>: High free-volume copolymers were prepared via polycondensation with 2,3,5,6,-tetrafluoroterephthalonitrile (TFTPN) in which a portion of the 3,3,3',3'-tetramethyl- 1,1'-spirobisindane (TTSBI) of PIM-1 was replaced with dibutyl anthracene maleimide (4bIII). An investigation of free volume using positron annihilation lifetime spectroscopy (PALS), and gas permeation measurements was carried out for the thin film composite copolymer membranes and compared to PIM-1. The average free volume hole size and the gas permeance of the copolymer membranes increased with decreasing TTSBI content in the copolymer.</td>
</tr>
<tr id="bib_Khan2015" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Khan2015,
	  author = {Khan, Muntazim Munir and Filiz, Volkan and Emmler, Thomas and Abetz, Volker and Koschine, Toenjes and Rätzke, Klaus and Faupel, Franz and Egger, Werner and Ravelli, Luca},
	  title = {Free Volume and Gas Permeation in Anthracene Maleimide-Based Polymers of Intrinsic Microporosity},
	  journal = {Membranes},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2015},
	  volume = {5},
	  number = {2},
	  pages = {214},
	  url = {http://www.mdpi.com/2077-0375/5/2/214},
	  doi = {https://doi.org/10.3390/membranes5020214}
	}
	</pre></td>
</tr>






<tr id="Koschine2015" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/polb.23616">Correlation of gas permeation and free volume in new and used high free volume thin film composite membranes</a></em><br />
T. Koschine, K. Rätzke, F. Faupel, M. Khan, T. Emmler, V. Filiz, V. Abetz, L. Ravelli and W. Egger; Journal of Polymer Science, Part B: Polymer Physics
<b> 53</b>
 (3)
 (2015)
 213-217.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koschine2015','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koschine2015','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/polb.23616/abstract;jsessionid=794C1386DED7BBED63EA824F50C74C4F.f03t01">URL</a>]
[<a href="https://doi.org/10.1002/polb.23616">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koschine2015.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koschine2015" class="abstract noshow">
	<td><b>Abstract</b>: Polymeric gas separation membranes frequently undergo the phenomenon of aging, that is, performance parameters like permeability decrease with storage or usage time. Here, we report on a new approach of reducing aging by incorporation of functionalized multiwalled carbon nanotubes into a polymer of intrinsic microporosity. Free volume and permeability measurements clearly show a reduced aging with incorporation of the carbon nantubes.</td>
</tr>
<tr id="bib_Koschine2015" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koschine2015,
	  author = {Koschine, T. and Rätzke, K. and Faupel, F. and Khan, M.M. and Emmler, T. and Filiz, V. and Abetz, V. and Ravelli, L. and Egger, W.},
	  title = {Correlation of gas permeation and free volume in new and used high free volume thin film composite membranes},
	  journal = {Journal of Polymer Science, Part B: Polymer Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2015},
	  volume = {53},
	  number = {3},
	  pages = {213--217},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/polb.23616/abstract;jsessionid=794C1386DED7BBED63EA824F50C74C4F.f03t01},
	  doi = {https://doi.org/10.1002/polb.23616}
	}
	</pre></td>
</tr>






<tr id="Mitteneder2015ma" class="entry">

<td>
<em> <a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Mitteneder2015ma.pdf">Erste ortsauflösende Positronen Lebensdauerspektroskopie am Scanning-Positron-Microscope Interface</a></em><br />
Johannes Mitteneder; Masters-Thesis, Hochschule München, 2015.
<p class="infolinks">
[<a href="javascript:toggleInfo('Mitteneder2015ma','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Mitteneder2015ma','bibtex')">BibTeX</a>]


[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Mitteneder2015ma.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Mitteneder2015ma" class="abstract noshow">
	<td><b>Abstract</b>: Das Scanning-Positron-Microscope (SPM) ist ein Instrument zur zerstörungsfreien Materialuntersuchung mittels der Positronen Lebensdauerspektroskopie. Positronen sind sensitiv für Materialdefekte wie Leerstellen, Versetzungen oder Korngrenzen.<br>An Defekten variiert die lokale Elektronendichte und damit die mittlere Lebensdauer der Positronen im Probenmaterial.<br>An der Universität der Bundeswehr wurde das SPM an einer Labor-Positronenquelle betrieben. Für einen höheren Positronenfluss wird das SPM zukünftig durch das SPM-Interface an die Reaktor Positronenquelle NEPOMUC gekoppelt. Durch den höheren Fluss des Positronenstrahls sollen kürzere Messzeiten erreicht werden.<br>Das SPM-Interface verbessert die Strahleigenschaften, indem es die Divergenz und den Strahldurchmesser des Positronenstrahls verkleinert. Zusätzlich formt das SPM-Interface die Positronenpulse aus dem kontinuierlichen Positronenstrahl von NEPOMUC.<br>Die Pulsung des Strahls wird als Startsignal für die Lebensdauermessungen benötigt. Damit passt das SPM-Interface den Positronenstrahl von NEPOMUC an die Bedürfnisse des SPM an.<br>Am SPM sollen ortsauflösende Positronen Lebensdauerspektroskopie Messungen mit einer Ortsauflösung von unter 1 µm und einer Pulsbreite von weniger als 150 ps erreicht werden. Dazu sind mehrere Stufen der Pulsformung und Fokussierung nötig.<br>Um die projektierten Ziele des SPM zu erreichen, muss am Abschluss des SPM-Interfaces ein Strahldurchmesser kleiner 200 µm und eine Pulsbreite von unter 250 ps (FWHM) erreicht werden. Die hohen Ansprüche an die Strahleigenschaften am Abschluss des SPM-Interfaces dienen außerdem dem effizienten Einkoppeln des Positronenstrahls in das SPM.<br>Um die Strahleigenschaften am Abschluss des SPM-Interfaces zu bestimmen, wurden mehrere Messungen durchgeführt. Die Messungen liefern die Grundlage für die Planung des weiteren Aufbaus des SPM an der Quelle NEPOMUC.<br>Für die Vermessungen des Strahlprofils des SPM-Interfaces wurde der Strahl mit einer Micro-Channel-Plate (MCP) direkt beobachtet. Der Bereich der höchsten Intensität des Positronenstrahls ist kreisförmig mit einem Durchmesser von 4mm FWHM. Das Intensitätsprofil ist gaußförmig. Durch eine Abbildung des Strahls mit einer elektrostatischen Linse auf die MCP konnte ein Strahldurchmesser von 2mm FWHM bei einer Brennweite von mm erreicht werden. Mit dieser Messung kann die kinetische Energie der transversalen Bewegung der Positronen auf 70meV abgeschätzt werden.<br>Ein rundes Strahlprofil mit gaußförmiger Intensität ist die Voraussetzung für die weiteren Messungen. In dieser Arbeit wurde eine Probenkammer zur ortsauflösenden Lebensdauerspektroskopie für das SPM-Interface gebaut. Die Probenkammer fokussiert den gepulsten Strahl mit Hilfe einer magnetischen Linse. Der magnetisch fokussierte Strahl kann durch Scannig-Spulen über eine Probe gerastert werden. Mit Hilfe der Probenkammer sind so ortsauflösende Messungen zur Bestimmung des minimal erreichbaren Strahldurchmessers möglich.<br>Als Grundlage für die ortsaufgelösten Messungen muss die erreichbare Zeitauflösung bekannt sein. Die Zeitauflösung ergibt sich durch die totale Zeitauflösung des Detektors und der Pulsbreite der erzeugten Positronenpulse. Für Pulsbreiten von unter 250 ps muss der kontinuierliche Positronenstrahl der Quelle NEPOMUC in mehreren Schritten zu Pulsen geformt werden. Dazu werden am SPM-Interface ein Sägezahn-Vorbuncher und zwei Sinus-Buncher sowie ein Chopper genutzt. Zur Bestimmung der Pulsbreite sind alle Pulsungkomponenten einzeln eingestellt und optimiert worden. Der Zeitfokus kann durch geeignete Einstellungen der Buncher- Amplitude und der Driftgeschwindigkeiten auf den Probenort in der Kammer gelegt werden. Durch die 50MHz Frequenz der Pulsung erreichen die Positronen alle vielfache von 20 ns die Probenposition t_n =n 20 ns (n e N). Liegt der Zeitfokus auf der Probe, ist die zeitliche Verteilung der ankommenden Positronen um t_n minimal. Die FWHM der gemessenen zeitlichen Verteilung (für viele Positronen aus mehreren Pulsen), der im SPM-Interface gepulsten Positronen entspricht der Pulsbreite.<br>Die Pulsbreite T_Puls wurde auf gute (257+/-3) ps bestimmt. Aus dem Vergleich der Zählrate mit und ohne Pulsung an der Probenposition ergibt sich ein Wirkungsgrad der Pulsung von 70%.<br>Am späteren Aufbau des SPM werden die im SPM-Interface erzeugten Pulse noch einmal gebuncht. Damit können aus den im SPM-Interface vorgeformten Pulsen schärfere Pulse im Bereich von 150 ps erzeugt werden.<br>Mit der erreichten Pulsbreite sind die Positronen Lebensdauermessungen mit der für das SPM-Interface gebauten Probenkammer möglich. Die Probenkammer erlaubt durch die im Laufe der Arbeit gebaute Hardware und in LabView programmierte Software vollautomatisierte ortsaufgelöste Positronen Lebensdauermessungen. Um mögliche Einstellungen der elektrischen Potenziale in der Kammer sowie für den Strom der fokussierenden magnetischen Linse für die Messungen zu finden, ist der Strahlverlauf in der Probenkammer mit COMSOL Multiphysics® simuliert worden. Vor den Messungen am SPM-Interface ist die Probenkammer auf Vakuumdichtigkeit und Hochspannungsfestigkeit bis 10 kV getestet worden. Die Tests verliefen problemlos, nach einem längeren Abpumpen wurde ein Druck von 1 10^(-6) mbar erreicht.<br>Aus den Messungen mit der Probenkammer des SPM-Interfaces soll der minimal erreichbare Strahldurchmesser bestimmt werden. Dazu wurden ortsaufgelöste Messungen durchgeführt. Die Probenkammer des SPM-Interfaces erlaubt einen Scan- Bereich von 1,5 x 1,5 mm. Der Scan-Bereich ist dabei weitestgehend frei von Verzeichnungen.<br>Durch die Geometrie der Probenkammer und die Abschirmung des Detektors sind Messungen mit geringem Untergrund möglich. Als Untergrund zählen alle 511 keV-Quanten, die nicht von einer Annihilation im Probenmaterial stammen. Das Peak zu Untergrund Verhältnis beträgt 1000. Damit ist die Aufnahme guter Einzelspektren ausgewählter Orte der Probe möglich. Mit Hilfe von Line-Scans ist die Ortsauflösung in der Probenkammer zu (180+-10) µm bestimmt. Um diesen Strahldurchmesser zu erreichen, wurde der Positronenstrahl in der Probenkammer mit der magnetischen Linse des zweiten Remoderators des SPM fokussiert. Durch die Verwendung dieser Linse ist am weiteren Aufbau des SPM ein vergleichbar kleiner Strahldurchmesser auf dem zweiten Remoderator möglich. Der Remoderator wirkt als gepulste Positronenquelle für die Positronen Lebensdauermessungen in der Probenkammer des SPM. Mit einem Quellendurchmesser von ca. 200 µm und der schmalen Energieverteilung des remoderierten Strahls sind Strahldurchmesser um 1 µm beim finalen Aufbau des SPM möglich.<br>Der Aufbau der Probenkammer des SPM-Interfaces sowie die durchgeführten Messungen waren sehr erfolgreich. Die in dieser Arbeit erreichten Ergebnisse erlauben den finalen Aufbau des SPM. Durch die Kenntnis des Strahldurchmessers kann die Positronen-Strahloptik zum Ankoppeln des SPM an das SPM-Interface effektiv ausgelegt werden. Schon mit dem Aufbau der Probenkammer des SPM-Interfaces sind Positronen Lebensdauerspektroskopie Messungen mit guter Orts- und sehr guter Zeitauflösung möglich.<br>Positronen Lebensdauermessungen mit einer Pulsbreite von 260 ps, einem Strahldurchmesser von 180 µm und mit einr hoher Intensität von 2000 Counts pro Sekunde sind weltweit einzigartig. Sie sind nur am Scanning-Positron-Microscope Interface mit der in dieser Arbeit gebauten Probenkammer des SPM-Interafces der Universität der Bundeswehr an der Positronenquelle NEPOMUC möglich.</td>
</tr>
<tr id="bib_Mitteneder2015ma" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@mastersthesis{Mitteneder2015ma,
	  author = {Mitteneder, Johannes},
	  title = {Erste ortsauflösende Positronen Lebensdauerspektroskopie am Scanning-Positron-Microscope Interface},
	  school = {Hochschule München},
	  year = {2015}
	}
	</pre></td>
</tr>




<tr id="2014" class="entry"><td><h1>2014</h1></td></tr>

<tr id="Butt2014" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/ma501747j">Interphase of a polymer at a solid interface</a></em><br />
H.J. Butt, H. Duran, W. Egger, F. Faupel, V. Harmandaris, S. Harms, K. Johnston, K. Kremer, F.Y. Lin, L. Lue, C. Ohrt, K. Rätzke, L. Ravelli, W. Steffen and S.D.B. Vianna; Macromolecules
<b> 47</b>
 (23)
 (2014)
 8459-8465.
<p class="infolinks">
[<a href="javascript:toggleInfo('Butt2014','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Butt2014','bibtex')">BibTeX</a>]
[<a href="http://pubs.acs.org/doi/abs/10.1021/ma501747j">URL</a>]
[<a href="https://doi.org/10.1021/ma501747j">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Butt2014.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Butt2014" class="abstract noshow">
	<td><b>Abstract</b>: Atomistic molecular dynamics simulations of a chemically realistic model of atactic short-chain polystyrene between gold surfaces (111) and positron annihilation lifetime spectroscopy experiments on similar polystyrene thin films on gold were performed. Results from both approaches show that the free volume voids in the film have a slightly smaller average size than in bulk polystyrene. In agreement to that the existence of an interphase of higher density at the polymer-solid substrate interface is shown both by the simulation as well as in the experiment. The average shape of the voids is similar in the bulk and the film.</td>
</tr>
<tr id="bib_Butt2014" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Butt2014,
	  author = {Butt, H. J. and Duran, H. and Egger, W. and Faupel, F. and Harmandaris, V. and Harms, S. and Johnston, K. and Kremer, K. and Lin, F. Y. and Lue, L. and Ohrt, C. and Rätzke, K. and Ravelli, L. and Steffen, W. and Vianna, S. D. B.},
	  title = {Interphase of a polymer at a solid interface},
	  journal = {Macromolecules},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2014},
	  volume = {47},
	  number = {23},
	  pages = {8459-8465},
	  url = {http://pubs.acs.org/doi/abs/10.1021/ma501747j},
	  doi = {https://doi.org/10.1021/ma501747j}
	}
	</pre></td>
</tr>






<tr id="Ohrt2014" class="entry">

<td>
<em> <a href="https://doi.org/10.1080/1539445X.2014.957835">Interphases in polymer solid-contacts and nanocomposites probed by positron annihilation lifetime spectroscopy</a></em><br />
C. Ohrt, T. Koschine, S. Harms, F. Faupel, K. Rätzke, W. Egger, L. Ravelli, L. Willner and G. Schneider; Soft Materials
<b> 12</b>

 (2014)
 S135-S141.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ohrt2014','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ohrt2014','bibtex')">BibTeX</a>]
[<a href="http://www.tandfonline.com/doi/abs/10.1080/1539445X.2014.957835">URL</a>]
[<a href="https://doi.org/10.1080/1539445X.2014.957835">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ohrt2014.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ohrt2014" class="abstract noshow">
	<td><b>Abstract</b>: At polymer-solid contacts with thermoplastic polymers, the chain characteristics can deviate from the bulk on a length-scale of several nanometer in the so-called interphase. Such an interphase depends on the interaction between respective macromolecule and substrate, and affects the free volume in the polymer. Here, we review our experiments on the characterization of the free volume by positron lifetime spectroscopy at planar and curved interfaces. For Teflon AF on silicon, we identify a layer of increased density, corresponding to an interphase width of some 10 nm. PEP based nanocomposites with functionalized silica show no interphase, whereas for functionalized POSS an interphase is detected.</td>
</tr>
<tr id="bib_Ohrt2014" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ohrt2014,
	  author = {Ohrt, C. and Koschine, T. and Harms, S. and Faupel, F. and Rätzke, K. and Egger, W. and Ravelli, L. and Willner, L. and Schneider, G.J.},
	  title = {Interphases in polymer solid-contacts and nanocomposites probed by positron annihilation lifetime spectroscopy},
	  journal = {Soft Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2014},
	  volume = {12},
	  pages = {S135-S141},
	  url = {http://www.tandfonline.com/doi/abs/10.1080/1539445X.2014.957835},
	  doi = {https://doi.org/10.1080/1539445X.2014.957835}
	}
	</pre></td>
</tr>






<tr id="Ravelli2014diss" class="entry">

<td>
<em> <a href="http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-3513">Improvement of the Pulsed Low Energy Positron System (PLEPS) for complex problems in materials science</a></em><br />
Luca Ravelli; Dissertation, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2014.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ravelli2014diss','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ravelli2014diss','bibtex')">BibTeX</a>]
[<a href="http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-3513">URL</a>]

[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Ravelli2014diss.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ravelli2014diss" class="abstract noshow">
	<td><b>Abstract</b>: This thesis concerns the application and the improvement of the Pulsed Low Energy Positron System (PLEPS) at the high intensity positron source NEPOMUC at the Munich research reactor FRM-II. This system is used for the defect study in complex materials. Positrons are the ideal probe for non-destructive investigations of vacancy-like defects in matter. The combination of positron lifetime spectroscopy with a pulsed, monochromatic positron beam of variable energy conveys information on the type and the concentration of defects down to the sub-ppm range and their depth-profile with nm resolution. Defect structures in two materials were investigated with PLEPS for this thesis. First, we studied strontium titanate (STO), which is a material of great relevance in modern oxide electronics. The cation vacancies (strontium and titanium vacancies, VSr and VTi, respectively) were identified in STO films deposited by Pulsed Laser Deposition (PLD). It was also shown, that in commercially available STO substrates only titanium vacancies with a concentration of (1.26±0.16) ppm could be detected and that upon annealing in the same conditions as for the PLD procedure a 400 nm thick layer of titanium-oxygen divacancies VTi-O was introduced. The second investigation was performed in permanently densified silica glasses. In combination with XRD measurements the structure evolution upon densification was analyzed. In particular, it was demonstrated that the average inter-tetrahedral void radius measured with PLEPS permits to predict the shift of the first sharp diffraction peak of the static structure factor as a function of the density. In the second part of this work, from the experience gained with PLEPS in the course of this thesis, the limits of the apparatus were analyzed, measures to improve the quality of the positron lifetime spectra measured with PLEPS were identified and tested. Comprehensive simulations were performed to understand the structures in the background of the measured lifetime spectra and possible countermeasures were found. Modifications of the pulsing system allowed to a) improve the time resolution of PLEPS to about 250 ps, b) measure precisely positron lifetime longer than 3 ns, which enhances the capabibility of PLEPS for the determination of free volumes in polymer samples and membranes and c) get rid of disturbing structures in the background of the positron lifetime spectra. Thus, PLEPS in combination with the high intensity positron source NEPOMUC can be considered as the most productive pulsed positron beam for defect depth-profiling in materials currently available world-wide.</td>
</tr>
<tr id="bib_Ravelli2014diss" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@phdthesis{Ravelli2014diss,
	  author = {Ravelli, Luca},
	  title = {Improvement of the Pulsed Low Energy Positron System (PLEPS) for complex problems in materials science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2014},
	  url = {http://nbn-resolving.de/urn/resolver.pl?urn:nbn:de:bvb:706-3513}
	}
	</pre></td>
</tr>






<tr id="Schuetze2014ma" class="entry">

<td>
<em> <a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Schuetze2014ma.pdf">Erprobung von Szintillator-Detektoren bei tiefen Temperaturen</a></em><br />
Johannes Schütze; Masters-Thesis, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2014.
<p class="infolinks">


[<a href="javascript:toggleInfo('Schuetze2014ma','bibtex')">BibTeX</a>]


[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Schuetze2014ma.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Schuetze2014ma" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@mastersthesis{Schuetze2014ma,
	  author = {Schütze, Johannes},
	  title = {Erprobung von Szintillator-Detektoren bei tiefen Temperaturen},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2014}
	}
	</pre></td>
</tr>






<tr id="Sojak2014" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/505/1/012016">PLEPS study of ions implanted RAFM steels</a></em><br />
S. Sojak, V. Slugeň, W. Egger, L. Ravelli, M. Petriska, J. Veterníková, M. Stacho and V. Sabelová; Journal of Physics: Conference Series
<b> 505</b>
 (1)
 (2014)
 012016.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sojak2014','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sojak2014','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/1742-6596/505/1/012016/">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/505/1/012016">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sojak2014.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sojak2014" class="abstract noshow">
	<td><b>Abstract</b>: Current nuclear power plants (NPP) require radiation, heat and mechanical resistance of their structural materials with the ability to stay operational during NPP planned lifetime. Radiation damage much higher, than in the current NPP, is expected in new generations of nuclear power plants, such as Generation IV and fusion reactors. Investigation of perspective structural materials for new generations of nuclear power plants is among others focused on study of reduced activation ferritic/martensitic (RAFM) steels. These steels have good characteristics as reduced activation, good resistance to volume swelling, good radiation, and heat resistance. Our experiments were focused on the study of microstructural changes of binary Fe-Cr alloys with different chromium content after irradiation, experimentally simulated by ion implantations. Fe-Cr alloys were examined, by Pulsed Low Energy Positron System (PLEPS) at FRM II reactor in Garching (Munich), after helium ion implantations at the dose of 0.1 C/cm(2). The investigation was focused on the chromium effect and the radiation defects resistivity. In particular, the vacancy type defects (monovacancies, vacancy clusters) have been studied. Based on our previous results achieved by conventional lifetime technique, the decrease of the defects size with increasing content of chromium is expected also for PLEPS measurements.</td>
</tr>
<tr id="bib_Sojak2014" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sojak2014,
	  author = {Sojak, S. and Slugeň, V. and Egger, W. and Ravelli, L. and Petriska, M. and Veterníková, J. and Stacho, M. and Sabelová, V.},
	  title = {PLEPS study of ions implanted RAFM steels},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2014},
	  volume = {505},
	  number = {1},
	  pages = {012016},
	  editor = {Hugenschmidt, C and Piochacz, C},
	  note = {13th International Workshop on Slow Positron Beam Techniques and Applications (SLOPOS), Tech Univ Munchen, Munich, GERMANY, SEP 15-20, 2013},
	  url = {http://iopscience.iop.org/1742-6596/505/1/012016/},
	  doi = {https://doi.org/10.1088/1742-6596/505/1/012016}
	}
	</pre></td>
</tr>






<tr id="Zanatta2014" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevLett.112.045501">Structural evolution and medium range order in permanently densified vitreous SiO2</a></em><br />
M. Zanatta, G. Baldi, R.S. Brusa, W. Egger, A. Fontana, E. Gilioli, S. Mariazzi, G. Monaco, L. Ravelli and F. Sacchetti; Physical Review Letters
<b> 112</b>
 (4)
 (2014)
 045501.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zanatta2014','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zanatta2014','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.112.045501">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevLett.112.045501">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zanatta2014.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zanatta2014" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation lifetime spectroscopy is employed to measure the size of the interstitial void spaces characterizing the structure of a set of permanently densified SiO2 glasses. The average volume of the voids is markedly affected by the densification process and linearly shrinks by almost an order of magnitude after a relative density variation of 22%. In addition, x-ray diffraction shows that this change of density does not modify appreciably the short range order, which remains organized in SiO4 tetrahedra. These results strongly suggest a porous medium description for v-SiO2 glasses where the compressibility and the medium range order are dominated by the density variation of the voids volume up to densities close to that of α-quartz. © 2014 American Physical Society.</td>
</tr>
<tr id="bib_Zanatta2014" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zanatta2014,
	  author = {Zanatta, M. and Baldi, G. and Brusa, R. S. and Egger, W. and Fontana, A. and Gilioli, E. and Mariazzi, S. and Monaco, G. and Ravelli, L. and Sacchetti, F.},
	  title = {Structural evolution and medium range order in permanently densified vitreous SiO2},
	  journal = {Physical Review Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2014},
	  volume = {112},
	  number = {4},
	  pages = {045501},
	  url = {http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.112.045501},
	  doi = {https://doi.org/10.1103/PhysRevLett.112.045501}
	}
	</pre></td>
</tr>




<tr id="2013" class="entry"><td><h1>2013</h1></td></tr>

<tr id="Ackermann2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/443/1/012095">Development of a new time and position resolving detector for the pulsed low energy positron system PLEPS</a></em><br />
U. Ackermann, W. Egger, P. Sperr, B. Löwe, L. Ravelli, G. Kögel, G. Dollinger and O. Jagutzki; Journal of Physics: Conference Series
<b> 443</b>
 (1)
 (2013)
 012095.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ackermann2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ackermann2013','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/1742-6596/443/1/012095/">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/443/1/012095">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ackermann2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ackermann2013" class="abstract noshow">
	<td><b>Abstract</b>: The pulsed low energy positron system PLEPS at the Munich research reactor FRM-II is a user facility for depth resolved positron lifetime measurements. Besides positron lifetime measurements 2D-AMOC (Two Dimensional Age Momentum Correlation) experiments are also possible. 2D-AMOC provides in coincidence the lifetime of the positron and the longitudinal momentum distribution of the annihilated electron. It would be of great scientific concern to measure simultaneously the entire 3D-momentum distribution of the electron annihilating with the positron and the corresponding lifetime of the positron (4D-AMOC). To perform 4D-AMOC measurements a time and position resolving detector is required in coincidence with a pixelated Germanium detector. Therefore a time and spatially resolving detector is currently developed at our institute with envisaged time resolution of 100 ps (FWHM) and a spatial resolution of about 2.6 mm (FWHM) over an area of 12 cm2. First test measurements have been carried out with a 25 mm diameter MCP (Micro Channel Plate) image intensifier and with special delay-line anode readout for the spatial information. Up to now 178 ps (FWHM) time resolution and on average 3.4 mm (FWHM) position resolution have been achieved with BaF2 as scintillator material and a 60Co source.</td>
</tr>
<tr id="bib_Ackermann2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ackermann2013,
	  author = {Ackermann, U. and Egger, W. and Sperr, P. and Löwe, B. and Ravelli, L. and Kögel, G. and Dollinger, G. and Jagutzki, O.},
	  title = {Development of a new time and position resolving detector for the pulsed low energy positron system PLEPS},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {443},
	  number = {1},
	  pages = {012095},
	  url = {http://iopscience.iop.org/1742-6596/443/1/012095/},
	  doi = {https://doi.org/10.1088/1742-6596/443/1/012095}
	}
	</pre></td>
</tr>






<tr id="Chai2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.4818001">Surfaces of colloidal PbSe nanocrystals probed by thin-film positron annihilation spectroscopy</a></em><br />
L. Chai, W. Al-Sawai, Y. Gao, A. Houtepen, P. Mijnarends, B. Barbiellini, H. Schut, L. Van Schaarenburg, M. Van Huis, L. Ravelli, W. Egger, S. Kaprzyk, A. Bansil and S. Eijt; APL Materials
<b> 1</b>
 (2)
 (2013)
 022111.
<p class="infolinks">
[<a href="javascript:toggleInfo('Chai2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Chai2013','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.4818001">URL</a>]
[<a href="https://doi.org/10.1063/1.4818001">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Chai2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Chai2013" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation lifetime spectroscopy and positron-electron momentum density (PEMD) studies on multilayers of PbSe nanocrystals (NCs), supported by transmission electron microscopy, show that positrons are strongly trapped at NC surfaces, where they provide insight into the surface composition and electronic structure of PbSe NCs. Our analysis indicates abundant annihilation of positrons with Se electrons at the NC surfaces and with O electrons of the oleic ligands bound to Pb ad-atoms at the NC surfaces, which demonstrates that positrons can be used as a sensitive probe to investigate the surface physics and chemistry of nanocrystals inside multilayers. Ab initio electronic structure calculations provide detailed insight in the valence and semi-core electron contributions to the positron-electron momentum density of PbSe. Both lifetime and PEMD are found to correlate with changes in the particle morphology characteristic of partial ligand removal.</td>
</tr>
<tr id="bib_Chai2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Chai2013,
	  author = {Chai, L. and Al-Sawai, W. and Gao, Y. and Houtepen, A.J. and Mijnarends, P.E. and Barbiellini, B. and Schut, H. and Van Schaarenburg, L.C. and Van Huis, M.A. and Ravelli, L. and Egger, W. and Kaprzyk, S. and Bansil, A. and Eijt, S.W.H.},
	  title = {Surfaces of colloidal PbSe nanocrystals probed by thin-film positron annihilation spectroscopy},
	  journal = {APL Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {1},
	  number = {2},
	  pages = {022111},
	  url = {http://aip.scitation.org/doi/10.1063/1.4818001},
	  doi = {https://doi.org/10.1063/1.4818001}
	}
	</pre></td>
</tr>






<tr id="Keeble2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.87.195409">Nonstoichiometry accommodation in SrTiO3 thin films studied by positron annihilation and electron microscopy</a></em><br />
D. Keeble, S. Wicklein, L. Jin, C. Jia, W. Egger and R. Dittmann; Physical Review B - Condensed Matter and Materials Physics
<b> 87</b>
 (19)
 (2013)
 195409.
<p class="infolinks">
[<a href="javascript:toggleInfo('Keeble2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Keeble2013','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.87.195409">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.87.195409">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Keeble2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Keeble2013" class="abstract noshow">
	<td><b>Abstract</b>: Accommodation of nonstoichiometry in SrTiO3 pulsed laser deposited (PLD) films was investigated using positron annihilation lifetime spectroscopy and (scanning) transmission electron microscopy. Increasing PLD laser fluence changed the stoichiometry from Ti to Sr deficient. Cation vacancy defects were detected, and the concentration ratio of Sr to Ti vacancies, [VSr]/[VTi], was observed to increase systematically in the Sr-deficient region, although no change in the electron microscopy lattice images was detected. Increasing Ti deficiency resulted in the accommodation of SrO layers in planar defects, and in the formation of vacancy cluster defects. A change from VTi to VSr defect positron trapping was also detected.</td>
</tr>
<tr id="bib_Keeble2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Keeble2013,
	  author = {Keeble, D.J. and Wicklein, S. and Jin, L. and Jia, C.L. and Egger, W. and Dittmann, R.},
	  title = {Nonstoichiometry accommodation in SrTiO3 thin films studied by positron annihilation and electron microscopy},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {87},
	  number = {19},
	  pages = {195409},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.87.195409},
	  doi = {https://doi.org/10.1103/PhysRevB.87.195409}
	}
	</pre></td>
</tr>






<tr id="Loewe2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/443/1/012098">A position sensitive germanium detector for the measurement of angular deviation of annihilation radiation</a></em><br />
B. Löwe, M. Reiner, W. Egger, C. Hugenschmidt and G. Dollinger; Journal of Physics: Conference Series
<b> 443</b>
 (1)
 (2013)
 012098.
<p class="infolinks">
[<a href="javascript:toggleInfo('Loewe2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Loewe2013','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/1742-6596/443/1/012098/">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/443/1/012098">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Loewe2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Loewe2013" class="abstract noshow">
	<td><b>Abstract</b>: To improve electron momentum sensitivity in Coincidence Doppler Broadening Spectroscopy (CDBS) measurements it is envisaged to measure the angular correlation of annihilation radiation along with the energy of both annihilation photons. For this purpose two position sensitive 36-fold pixelated, planar germanium detectors will be utilized. The position sensitivity of one of those detectors has been tested with a collimated gamma source. A data acquisition system consisting of 37 sampling analogue-to-digital converters with PC based online/off-line processing has been installed. A position sensitivity of 1.6 mm has been achieved.</td>
</tr>
<tr id="bib_Loewe2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Loewe2013,
	  author = {Löwe, B. and Reiner, M. and Egger, W. and Hugenschmidt, C. and Dollinger, G.},
	  title = {A position sensitive germanium detector for the measurement of angular deviation of annihilation radiation},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {443},
	  number = {1},
	  pages = {012098},
	  url = {http://iopscience.iop.org/1742-6596/443/1/012098/},
	  doi = {https://doi.org/10.1088/1742-6596/443/1/012098}
	}
	</pre></td>
</tr>






<tr id="Mariazzi2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/443/1/012061">Study of Positronium formation in nano-channelled silicon as a function of sample temperature</a></em><br />
S. Mariazzi, L. Dinoto, L. Ravelli, W. Egger and R. Brusa; Journal of Physics: Conference Series
<b> 443</b>
 (1)
 (2013)
 012061.
<p class="infolinks">
[<a href="javascript:toggleInfo('Mariazzi2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Mariazzi2013','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/1742-6596/443/1/012061/meta;jsessionid=D1DE141D0665C855F0EED9CB9570D8E4.c1.iopscience.cld.iop.org">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/443/1/012061">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Mariazzi2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Mariazzi2013" class="abstract noshow">
	<td><b>Abstract</b>: Oxidized nanochannel in silicon have been demonstrated to be suitable for positronium (Ps) formation and cooling also at low sample temperature. To investigate the Ps yield and to clarify the Ps formation mechanism we studied, by Positron Annihilation Spectroscopy (PAS), nanochanneled Si p-type samples in the 150-430 K temperature range. Ps yield was found to be constant in the 150-300 K temperature range, then it increases up to ∼50% of its value from 350-400 K. This effect is associated to a decrease of the fraction of positrons annihilating in Si and in the SiO2 layer on the nanochannels surface. This finding is compatible with the thermal decrease of the positive charge distribution at the Si/SiO2 interface limiting e+ reaching the SiO2 layer and to a charge rearrangement at the SiO2 surfaces.</td>
</tr>
<tr id="bib_Mariazzi2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Mariazzi2013,
	  author = {Mariazzi, S. and Dinoto, L. and Ravelli, L. and Egger, W. and Brusa, R.S.},
	  title = {Study of Positronium formation in nano-channelled silicon as a function of sample temperature},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {443},
	  number = {1},
	  pages = {012061},
	  url = {http://iopscience.iop.org/article/10.1088/1742-6596/443/1/012061/meta;jsessionid=D1DE141D0665C855F0EED9CB9570D8E4.c1.iopscience.cld.iop.org},
	  doi = {https://doi.org/10.1088/1742-6596/443/1/012061}
	}
	</pre></td>
</tr>






<tr id="Ravelli2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/443/1/012096">Geant4 simulation of the effect of backscattered positrons on the lifetime spectra of PLEPS</a></em><br />
L. Ravelli, B. Löwe, W. Egger, G. Kögel, P. Sperr and G. Dollinger; Journal of Physics: Conference Series
<b> 443</b>
 (1)
 (2013)
 012096.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ravelli2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ravelli2013','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/1742-6596/443/1/012096/">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/443/1/012096">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ravelli2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ravelli2013" class="abstract noshow">
	<td><b>Abstract</b>: The Pulsed Low Energy Positron System (PLEPS) allows the measurement of positron lifetime spectra of very high quality with peak-to-background ratios up to 3 · 104. At those peak-to-background ratios small structures appear in the lifetime spectra due to backscattered positrons. Despite their small overall contribution-less than 2 % of the total events in the spectrum even with backscattering coefficient as high as 40 %-those satellite structures can render the data analysis difficult. To understand the origin of those satellite structures and to further improve the performance of the system, comprehensive simulations of the target chamber of PLEPS have been undertaken. The results reproduce fairly well the background of the lifetime spectrum. It is now possible to identify the origin of the background structures and also plan some additional countermeasures.</td>
</tr>
<tr id="bib_Ravelli2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ravelli2013,
	  author = {Ravelli, L. and Löwe, B. and Egger, W. and Kögel, G. and Sperr, P. and Dollinger, G.},
	  title = {Geant4 simulation of the effect of backscattered positrons on the lifetime spectra of PLEPS},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {443},
	  number = {1},
	  pages = {012096},
	  url = {http://iopscience.iop.org/1742-6596/443/1/012096/},
	  doi = {https://doi.org/10.1088/1742-6596/443/1/012096}
	}
	</pre></td>
</tr>






<tr id="Schuetze2013ba" class="entry">

<td>
<em> <a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Schuetze2013ba.pdf">Untersuchung des zeitlichen Verhaltens von Siliziumphotomultipliern</a></em><br />
Johannes Schütze; Bachelors-Thesis, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2013.
<p class="infolinks">
[<a href="javascript:toggleInfo('Schuetze2013ba','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Schuetze2013ba','bibtex')">BibTeX</a>]


[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Schuetze2013ba.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Schuetze2013ba" class="abstract noshow">
	<td><b>Abstract</b>: Diese Bachelorarbeit beschäftigt sich mit der Untersuchung des zeitlichen Verhaltens von Siliziumphotomultipliern (SiPMs). Dazu werden die Zeitauflösungen verschiedener SiPMs der Firma Ketek ermittelt. Der Schwerpunkt liegt dabei auf der Untersuchung des Zeitverhaltens bei unterschiedlichen Versorgungsspannungen. Im Folgenden wird zunächst die Funktionsweise von SiPMs, sowie die Funktionsweise der verwendeten Messelektronik erklärt. Anschließend wird der Ablauf der einzelnen Messmethoden erläutert. Zum Abschluss werden die Ergebnisse dargestellt und es wird auf Besonderheiten, die während der Messungen aufgetreten sind, eingegangen.</td>
</tr>
<tr id="bib_Schuetze2013ba" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@mastersthesis{Schuetze2013ba,
	  author = {Schütze, Johannes},
	  title = {Untersuchung des zeitlichen Verhaltens von Siliziumphotomultipliern},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013}
	}
	</pre></td>
</tr>






<tr id="Slugen2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.pnucene.2012.08.002">Microstructural examination of reactor pressure vessel steels by positron annihilation point of view</a></em><br />
V. Slugeň, H. Hein, S. Sojak, W. Egger, M. Pavúk, J. Veterníková, M. Petriska, V. Sabelová and R. Hinca; Progress in Nuclear Energy
<b> 62</b>

 (2013)
 1-7.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2013','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0149197012001023">URL</a>]
[<a href="https://doi.org/10.1016/j.pnucene.2012.08.002">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2013" class="abstract noshow">
	<td><b>Abstract</b>: This paper presents a comparison of commercially used German and Russian reactor pressure vessel steels from the positron annihilation spectroscopy (PAS) point of view, having in mind knowledge obtained also from other techniques from the last decades. The second generations of Russian RPV steels seems to be fully comparable with German steels and their quality enables prolongation of NPP operating lifetime over projected 40 years. The embrittlement of CrMoV steel is very low due to the dynamic recovery of radiation-induced defects at reactor operating temperatures. © 2012 Elsevier Ltd. All rights reserved.</td>
</tr>
<tr id="bib_Slugen2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2013,
	  author = {Slugeň, V. and Hein, H. and Sojak, S. and Egger, W. and Pavúk, M. and Veterníková, J. and Petriska, M. and Sabelová, V. and Hinca, R.},
	  title = {Microstructural examination of reactor pressure vessel steels by positron annihilation point of view},
	  journal = {Progress in Nuclear Energy},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {62},
	  pages = {1--7},
	  url = {http://www.sciencedirect.com/science/article/pii/S0149197012001023},
	  doi = {https://doi.org/10.1016/j.pnucene.2012.08.002}
	}
	</pre></td>
</tr>






<tr id="Sojak2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/443/1/012036">PLEPS study of ion implanted and annealed Fe-11.62&#37; Cr alloys</a></em><br />
S. Sojak, V. Sluge, W. Egger, L. Ravelli, M. Petriska, S. Stanek, M. Sahul, M. Skarba, P. Priputen, M. Stacho, J. Veterníková, R. Hinca and V. Sabelová; Journal of Physics: Conference Series
<b> 443</b>
 (1)
 (2013)
 012036.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sojak2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sojak2013','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/1742-6596/443/1/012036/meta">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/443/1/012036">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sojak2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sojak2013" class="abstract noshow">
	<td><b>Abstract</b>: Reduced activation ferritic/martensitic (RAFM) steels are one of the candidate structural materials for application in future nuclear facilities. These steels fulfill demands on radiation, thermal, and mechanical resistance during their operational lifetime. Our experiments were focused on study of microstructural changes of binary Fe-Cr alloys after annealing and irradiation, experimentally simulated by ion implantations. Alloys with 11.62% Cr were examined after helium ion implantations at different doses (0.1; 0.3; 0.5 C/cm2). Thermal annealing, motivated by literature and our previous work in the field of reactor steels [1,2], was performed at temperatures of 400, 475, 525 and 600 °C after implantations with aim to study changes of the defect size/amount. The Pulsed Low Energy Positron System (PLEPS) at FRM II reactor in Garching (Munich) was applied for lifetime studies [3]. Damage introduced into the microstructure caused problems with defect interpretations by the PLEPS technique and therefore SEM was applied as well. Positron lifetimes measured at annealing temperatures in range of 400-525 °C did not show an expected decrease. Only in the case of temperature of 600 °C the mean lifetime (MLT) decreased significantly and assumptions about the defect size decrease were made according to the literature [2].</td>
</tr>
<tr id="bib_Sojak2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sojak2013,
	  author = {Sojak, S. and Sluge, V. and Egger, W. and Ravelli, L. and Petriska, M. and Stanek, S. and Sahul, M. and Skarba, M. and Priputen, P. and Stacho, M. and Veterníková, J. and Hinca, R. and Sabelová, V.},
	  title = {PLEPS study of ion implanted and annealed Fe-11.62&#37; Cr alloys},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {443},
	  number = {1},
	  pages = {012036},
	  url = {http://iopscience.iop.org/article/10.1088/1742-6596/443/1/012036/meta},
	  doi = {https://doi.org/10.1088/1742-6596/443/1/012036}
	}
	</pre></td>
</tr>






<tr id="Sojak2013a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.733.274">Thermal annealing influence on ions implanted Fe-Cr model alloys</a></em><br />
S. Sojak, V. Slugeň, V. Kršjak, W. Egger, L. Ravelli, M. Petriska, S. Stanček, M. Skarba, P. Priputen, K. Vitázek, M. Stacho, J. Veterníková and V. Sabelová; Materials Science Forum
<b> 733</b>

 (2013)
 274-277.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sojak2013a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sojak2013a','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.733.274">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.733.274">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sojak2013a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sojak2013a" class="abstract noshow">
	<td><b>Abstract</b>: Binary Fe-11.62wt%Cr alloys were investigated in as-received state as well as after a two step helium ion implantation at different energies (100 keV and 250 keV) with doses up to 3.12×1018 cm-2. In order to study changes in alloys in dependence on the temperature, thermal annealing was performed at temperatures of 400, 475, 525 and 600 oC and specimens were afterwards measured by a pulsed low energy positron system (PLEPS). Annealing out of defects at lower temperatures was not as significant as expected, and we also encountered difficulties with defect identification. However, an apparent decrease of defect size was observed in the specimen annealed at a temperature of 600 oC. © (2013) Trans Tech Publications, Switzerland.</td>
</tr>
<tr id="bib_Sojak2013a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sojak2013a,
	  author = {Sojak, S. and Slugeň, V. and Kršjak, V. and Egger, W. and Ravelli, L. and Petriska, M. and Stanček, S. and Skarba, M. and Priputen, P. and Vitázek, K. and Stacho, M. and Veterníková, J. and Sabelová, V.},
	  title = {Thermal annealing influence on ions implanted Fe-Cr model alloys},
	  booktitle = {POSITRON AND POSITRONIUM CHEMISTRY X},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {733},
	  pages = {274--277},
	  editor = {Kristiak, J and Kuriplach, J and Pujari, PK},
	  note = {10th International Workshop on Positron and Positronium Chemistry (PPC-10), Smolenice, SLOVAKIA, SEP 05-09, 2011},
	  url = {http://www.scientific.net/MSF.733.274},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.733.274}
	}
	</pre></td>
</tr>






<tr id="Zubiaga2013" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.4775396">On the interplay of point defects and Cd in non-polar ZnCdO films</a></em><br />
A. Zubiaga, F. Reurings, F. Tuomisto, F. Plazaola, J. García, A. Kuznetsov, W. Egger, J. Zúñiga-Pérez and V. Muñoz-Sanjosé; Journal of Applied Physics
<b> 113</b>
 (2)
 (2013)
 023512.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zubiaga2013','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zubiaga2013','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.4775396">URL</a>]
[<a href="https://doi.org/10.1063/1.4775396">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zubiaga2013.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zubiaga2013" class="abstract noshow">
	<td><b>Abstract</b>: Non-polar ZnCdO films, grown over m- and r-sapphire with a Cd concentration ranging between 0.8% and 5%, have been studied by means of slow positron annihilation spectroscopy (PAS) combined with chemical depth profiling by secondary ion mass spectroscopy and Rutherford back-scattering. Vacancy clusters and Zn vacancies with concentrations up to 1017 cm-3 and 1018 cm-3, respectively, have been measured inside the films. Secondary ion mass spectroscopy results show that most Cd stays inside the ZnCdO film but the diffused atoms can penetrate up to 1.3 μm inside the ZnO buffer. PAS results give an insight to the structure of the meta-stable ZnCdO above the thermodynamical solubility limit of 2%. A correlation between the concentration of vacancy clusters and Cd has been measured. The concentration of Zn vacancies is one order of magnitude larger than in as-grown non-polar ZnO films and the vacancy cluster are, at least partly, created by the aggregation of smaller Zn vacancy related defects. The Zn vacancy related defects and the vacancy clusters accumulate around the Cd atoms as a way to release the strain induced by the substitutional CdZn in the ZnO crystal.</td>
</tr>
<tr id="bib_Zubiaga2013" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zubiaga2013,
	  author = {Zubiaga, A. and Reurings, F. and Tuomisto, F. and Plazaola, F. and García, J.A. and Kuznetsov, A.Yu. and Egger, W. and Zúñiga-Pérez, J. and Muñoz-Sanjosé, V.},
	  title = {On the interplay of point defects and Cd in non-polar ZnCdO films},
	  journal = {Journal of Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2013},
	  volume = {113},
	  number = {2},
	  pages = {023512},
	  url = {http://aip.scitation.org/doi/10.1063/1.4775396},
	  doi = {https://doi.org/10.1063/1.4775396}
	}
	</pre></td>
</tr>




<tr id="2012" class="entry"><td><h1>2012</h1></td></tr>

<tr id="Calloni2012" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.4737402">Characterization of vacancy-type defects in heteroepitaxial GaN grown by low-energy plasma-enhanced vapor phase epitaxy</a></em><br />
A. Calloni, R. Ferragut, A. Dupasquier, H. von Känel, A. Guiller, A. Rutz, L. Ravelli and W. Egger; Journal of Applied Physics
<b> 112</b>
 (2)
 (2012)
 024510.
<p class="infolinks">
[<a href="javascript:toggleInfo('Calloni2012','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Calloni2012','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.4737402">URL</a>]
[<a href="https://doi.org/10.1063/1.4737402">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Calloni2012.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Calloni2012" class="abstract noshow">
	<td><b>Abstract</b>: The defect concentration in thin GaN layers was estimated by means of positron annihilation spectroscopy. Positron lifetime and Doppler broadening of the annihilation radiation were used. A comparative study of GaN films grown with different techniques was performed. Specific attention has been given to the new low energy plasma enhanced vapor phase epitaxy (LEPEVPE) growth technique. A very high Ga vacancy density (10 19 cm -3) was found in a thin GaN layer directly grown by LEPEVPE on a sapphire substrate. However, when a GaN substrate (commercial sample grown by Metal Organic Vapor Phase Epitaxy) is used as a template for LEPEVPE deposition, the vacancy density of the film is low (about 10 16 cm -3). This fact provides evidences that the LEPEVPE technique is able to produce high quality GaN layers.</td>
</tr>
<tr id="bib_Calloni2012" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Calloni2012,
	  author = {Calloni, A. and Ferragut, R. and Dupasquier, A. and von Känel, H. and Guiller, A. and Rutz, A. and Ravelli, L. and Egger, W.},
	  title = {Characterization of vacancy-type defects in heteroepitaxial GaN grown by low-energy plasma-enhanced vapor phase epitaxy},
	  journal = {Journal of Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2012},
	  volume = {112},
	  number = {2},
	  pages = {024510},
	  url = {http://aip.scitation.org/doi/10.1063/1.4737402},
	  doi = {https://doi.org/10.1063/1.4737402}
	}
	</pre></td>
</tr>






<tr id="Harms2012" class="entry">

<td>
<em> <a href="https://doi.org/10.1080/00218464.2012.682902">Aging and free volume in a polymer of intrinsic microporosity (PIM-1)</a></em><br />
S. Harms, K. Rätzke, F. Faupel, N. Chaukura, P. Budd, W. Egger and L. Ravelli; Journal of Adhesion
<b> 88</b>
 (7)
 (2012)
 608-619.
<p class="infolinks">
[<a href="javascript:toggleInfo('Harms2012','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Harms2012','bibtex')">BibTeX</a>]
[<a href="http://www.tandfonline.com/doi/abs/10.1080/00218464.2012.682902">URL</a>]
[<a href="https://doi.org/10.1080/00218464.2012.682902">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Harms2012.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Harms2012" class="abstract noshow">
	<td><b>Abstract</b>: There is a growing market for polymeric gas separation membranes for applications such as air separation and carbon dioxide capture. One of the key properties dominating transport is the free volume between atoms, allowing gas diffusion. However, thin films, in particular, undergo aging, decreasing free volume, and, hence, performance with time. We have measured the change in free volume during aging of thin films of a polymer of intrinsic microporosity (PIM-1) by depth-resolved positron annihilation lifetime spectroscopy. For films with thickness, d, smaller than 1m, aging is nearly complete after 3 months, whereas for films with d>1 μm aging continues even after several months. Aging is thickness-and time-dependent and the free volume diffuses through the film to the free surface.</td>
</tr>
<tr id="bib_Harms2012" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Harms2012,
	  author = {Harms, S. and Rätzke, K. and Faupel, F. and Chaukura, N. and Budd, P.M. and Egger, W. and Ravelli, L.},
	  title = {Aging and free volume in a polymer of intrinsic microporosity (PIM-1)},
	  journal = {Journal of Adhesion},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2012},
	  volume = {88},
	  number = {7},
	  pages = {608--619},
	  url = {http://www.tandfonline.com/doi/abs/10.1080/00218464.2012.682902},
	  doi = {https://doi.org/10.1080/00218464.2012.682902}
	}
	</pre></td>
</tr>






<tr id="Macchi2012" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.85.214117">Niobium aggregation and vacancylike defect evolution in nanostructured Nb-doped Mg: Their role in the kinetics of the hydride-to-metal phase transformation</a></em><br />
C. Macchi, C. Maurizio, R. Checchetto, S. Mariazzi, L. Ravelli, W. Egger, P. Mengucci, N. Bazzanella, A. Miotello, A. Somoza and R. Brusa; Physical Review B - Condensed Matter and Materials Physics
<b> 85</b>
 (21)
 (2012)
 214117.
<p class="infolinks">
[<a href="javascript:toggleInfo('Macchi2012','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Macchi2012','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.85.214117">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.85.214117">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Macchi2012.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Macchi2012" class="abstract noshow">
	<td><b>Abstract</b>: The structural evolution of nanostructured Nb-doped magnesium film samples and its correlation with the change of the H 2 desorption kinetics after successive H 2 sorption cycles at 623 K was investigated by different techniques. The variation of the dispersed Nb fraction and the Nb clusterization was followed by extended x-ray absorption fine structure (EXAFS), while the progressive Mg nanostructuring was monitored by x-ray diffraction. The presence of vacancylike defects and their evolution was studied using positron annihilation lifetime spectroscopy and Doppler broadening spectroscopies. It was found that, with successive H 2 sorption cycles: (i) the H 2 desorption kinetics progressively becomes slower until stationary conditions are reached and (ii) the Nb dopant atoms, dispersed in the nanocrystalline Mg layers, aggregate, forming nanoclusters. Our results show that the progressive Nb aggregation drives the H 2 desorption kinetics. EXAFS analysis show that fast desorption kinetics is due to the presence of small (∼1 nm) Nb aggregates rather than Nb atoms dispersed into the Mg matrix. With cycling, the Nb aggregates progressively grow, forming larger bcc Nb nanoclusters and the H 2 desorption kinetics becomes slower. In the as-deposited Nb-doped Mg samples, analysis of the positron data reveals the presence of intragranular vacancylike defects and of vacancy clusters which are inferred to be mainly located at the grain boundaries of the nanocrystalline Mg layers. With H 2 cycling: (i) a decrease of the atomic fraction of the intragranular vacancylike defects after the first two sorption cycles was observed, and (ii) an increase of the atomic fraction of vacancy clusters at grain boundaries and the appearance of vacancylike defects located at the interface between the Nb aggregates and the Mg matrix was probed. It was also found that the kinetics follows a nucleation and growth mechanism and, under stationary conditions, the Mg nucleation is controlled by vacancy-decorated bcc Nb nanoclusters rather than by vacancy clusters, as in undoped Mg samples.</td>
</tr>
<tr id="bib_Macchi2012" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Macchi2012,
	  author = {Macchi, C. and Maurizio, C. and Checchetto, R. and Mariazzi, S. and Ravelli, L. and Egger, W. and Mengucci, P. and Bazzanella, N. and Miotello, A. and Somoza, A. and Brusa, R.S.},
	  title = {Niobium aggregation and vacancylike defect evolution in nanostructured Nb-doped Mg: Their role in the kinetics of the hydride-to-metal phase transformation},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2012},
	  volume = {85},
	  number = {21},
	  pages = {214117},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.85.214117},
	  doi = {https://doi.org/10.1103/PhysRevB.85.214117}
	}
	</pre></td>
</tr>






<tr id="SchuetzeHager2012sa" class="entry">

<td>
<em> <a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/SchuetzeHager2012sa.pdf">Charakterisierung von Siliziumphotomultipliern</a></em><br />
Johannes Schütze and Christoph Hager; Studienarbeit, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2012.
<p class="infolinks">


[<a href="javascript:toggleInfo('SchuetzeHager2012sa','bibtex')">BibTeX</a>]


[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/SchuetzeHager2012sa.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_SchuetzeHager2012sa" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@thesis{SchuetzeHager2012sa,
	  author = {Schütze, Johannes and Hager, Christoph},
	  title = {Charakterisierung von Siliziumphotomultipliern},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2012}
	}
	</pre></td>
</tr>






<tr id="Sojak2012" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.phpro.2012.06.015">Different Chromium Content and Thermal Annealing Influence on Ions Implanted Fe-Cr Model Alloys</a></em><br />
S. Sojak, V. Slugeň, V. Kršjak, W. Egger, L. Ravelli, M. Petriska, S. Stanček, M. Skarba, P. Priputen, K. Vitázek, M. Stacho, J. Veterníková and V. Sabelová; Physics Procedia
<b> 35</b>

 (2012)
 80–85.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sojak2012','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sojak2012','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S1875389212019529">URL</a>]
[<a href="https://doi.org/10.1016/j.phpro.2012.06.015">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sojak2012.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sojak2012" class="abstract noshow">
	<td><b>Abstract</b>: Reduced activation ferritic/martensitic steels (RAFM) represented by binary Fe-Cr alloys, with different chromium content, were studied in as-received state as well as after helium ions implantation. In order to study changes in dependence on the temperature, thermal annealing of He ions implanted Fe-11.62%Cr specimens was performed. Measurements by Pulsed Low Energy Positron System (PLEPS) in Garching, Germany were performed afterwards. Annealing out of defects at lower temperatures was  not significant as was expected and some uncertainties are present. Extensive decrease of positron lifetime of defects was observed in specimens annealed at temperature 600 degrees C.</td>
</tr>
<tr id="bib_Sojak2012" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sojak2012,
	  author = {Sojak, S. and Slugeň, V. and Kršjak, V. and Egger, W. and Ravelli, L. and Petriska, M. and Stanček, S. and Skarba, M. and Priputen, P. and Vitázek, K. and Stacho, M. and Veterníková, J. and Sabelová, V.},
	  title = {Different Chromium Content and Thermal Annealing Influence on Ions Implanted Fe-Cr Model Alloys},
	  booktitle = {POSITRON STUDIES OF DEFECTS 2011},
	  journal = {Physics Procedia},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2012},
	  volume = {35},
	  pages = {80–85},
	  editor = {Eijt, S and Schut, H},
	  note = {7th International Workshop on Positron Studies of Defects (PSD), Delft Univ Technol, Delft, NETHERLANDS, AUG 28-SEP 02, 2011},
	  url = {http://www.sciencedirect.com/science/article/pii/S1875389212019529},
	  doi = {https://doi.org/10.1016/j.phpro.2012.06.015}
	}
	</pre></td>
</tr>




<tr id="2011" class="entry"><td><h1>2011</h1></td></tr>

<tr id="Checchetto2011" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.84.054115">Enhanced kinetics of hydride-metal phase transition in magnesium by vacancy clustering</a></em><br />
R. Checchetto, N. Bazzanella, A. Kale, A. Miotello, S. Mariazzi, R. Brusa, P. Mengucci, C. Macchi, A. Somoza, W. Egger and L. Ravelli; Physical Review B - Condensed Matter and Materials Physics
<b> 84</b>
 (5)
 (2011)
 054115.
<p class="infolinks">
[<a href="javascript:toggleInfo('Checchetto2011','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Checchetto2011','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.84.054115">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.84.054115">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Checchetto2011.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Checchetto2011" class="abstract noshow">
	<td><b>Abstract</b>: The relation between vacancies and vacancy clusters evolution and the H2 desorption kinetics was studied in nanocrystalline Mg samples submitted to successive H2 sorption cycles. Vacancy defects were detected by positron annihilation lifetime spectroscopy while the desorption process was monitored measuring the H2 desorption flux. During H 2 sorption cycles, vacancies disappear, the number of vacancy clusters increases, and the crystalline quality of the Mg grains increases. The disappearance of intragranular vacancies is followed by an acceleration of the H2 desorption process. This is attributed to the increase of vacancy clusters at grain boundaries which assist the Mg nucleation in the hydride to metal phase transition. For H2 sorption cycles, the values of vacancy and vacancy cluster concentrations were obtained into the frame of the positron diffusion trapping model and the size of the involved vacancy clusters was evaluated by ab initio calculations of positron annihilation rates in Mg.</td>
</tr>
<tr id="bib_Checchetto2011" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Checchetto2011,
	  author = {Checchetto, R. and Bazzanella, N. and Kale, A. and Miotello, A. and Mariazzi, S. and Brusa, R.S. and Mengucci, P. and Macchi, C. and Somoza, A. and Egger, W. and Ravelli, L.},
	  title = {Enhanced kinetics of hydride-metal phase transition in magnesium by vacancy clustering},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {84},
	  number = {5},
	  pages = {054115},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.84.054115},
	  doi = {https://doi.org/10.1103/PhysRevB.84.054115}
	}
	</pre></td>
</tr>






<tr id="Eijt2011" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.jallcom.2010.09.157">Layer-resolved study of the Mg to MgH2 transformation in Mg-Ti films with short-range chemical order</a></em><br />
S. Eijt, H. Leegwater, H. Schut, A. Anastasopol, W. Egger, L. Ravelli, C. Hugenschmidt and B. Dam; Journal of Alloys and Compounds
<b> 509</b>
 (SUPPL. 2)
 (2011)
 S567-S571.
<p class="infolinks">
[<a href="javascript:toggleInfo('Eijt2011','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Eijt2011','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0925838810023911">URL</a>]
[<a href="https://doi.org/10.1016/j.jallcom.2010.09.157">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Eijt2011.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Eijt2011" class="abstract noshow">
	<td><b>Abstract</b>: Positron depth-profiling was applied to monitor the effects of hydrogenation on Mg1-yTiy thin films. S-W diagrams and VEPFIT analysis of the depth-profiles demonstrated the homogeneity of most metal and metal hydride films. In contrast, Mg0.90Ti0.10H x films consisted of a double layer, with a thin unloaded Mg 0.90Ti0.10 or Mg-Ti-Pd alloy layer on top of a hydrogenated bottom layer. The metal-to-metal-hydride transformation of Mg domains in the nanoscale phase-segregated Mg-Ti films was monitored exclusively, enabled by the large difference in positron affinity for Mg and Ti. The changes in the Doppler broadening parameters revealed that the metal-insulator transition for fluorite MgH2 is similar to that for rutile MgH 2. Positron lifetime spectroscopy showed the presence of di-vacancies in the metal sub-lattice of as-deposited and hydrogenated Mg-Ti metal films, which may induce the fast hydrogen sorption kinetics of the fluorite MgH 2 phase.</td>
</tr>
<tr id="bib_Eijt2011" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Eijt2011,
	  author = {Eijt, S.W.H. and Leegwater, H. and Schut, H. and Anastasopol, A. and Egger, W. and Ravelli, L. and Hugenschmidt, C. and Dam, B.},
	  title = {Layer-resolved study of the Mg to MgH2 transformation in Mg-Ti films with short-range chemical order},
	  journal = {Journal of Alloys and Compounds},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {509},
	  number = {SUPPL. 2},
	  pages = {S567-S571},
	  url = {http://www.sciencedirect.com/science/article/pii/S0925838810023911},
	  doi = {https://doi.org/10.1016/j.jallcom.2010.09.157}
	}
	</pre></td>
</tr>






<tr id="Ferragut2011" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.3631825">Study of defects in an electroresistive Au/La2/3Sr 1/3MnO3/SrTiO3(001) heterostructure by positron annihilation</a></em><br />
R. Ferragut, A. Dupaquier, S. Brivio, R. Bertacco and W. Egger; Journal of Applied Physics
<b> 110</b>
 (5)
 (2011)
 053511.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ferragut2011','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ferragut2011','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.3631825">URL</a>]
[<a href="https://doi.org/10.1063/1.3631825">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ferragut2011.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ferragut2011" class="abstract noshow">
	<td><b>Abstract</b>: Defects in an ultrathin Au/La2/3Sr1/3MnO 3/SrTiO3 (Au/LSMO/STO) heterostructure displaying electroresistive behavior were studied using variable energy positron annihilation spectroscopy. Vacancy-like defects were found to be the dominant positron traps in the LSMO and STO thin perovskite oxides with a number density &amp;gt;1017 cm-3 and 2 × 1017 cm -3 in the STO substrate. High defect density was revealed by strong positron trapping at the Au/LSMO interface. Oxygen deficiency in LSMO would be the main source of these traps. Besides, a low density of sub-nano voids of ∼6Å was found in the substrate and in the thin LSMO/STO films. © 2011 American Institute of Physics.</td>
</tr>
<tr id="bib_Ferragut2011" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ferragut2011,
	  author = {Ferragut, R. and Dupaquier, A. and Brivio, S. and Bertacco, R. and Egger, W.},
	  title = {Study of defects in an electroresistive Au/La2/3Sr 1/3MnO3/SrTiO3(001) heterostructure by positron annihilation},
	  journal = {Journal of Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {110},
	  number = {5},
	  pages = {053511},
	  url = {http://aip.scitation.org/doi/10.1063/1.3631825},
	  doi = {https://doi.org/10.1063/1.3631825}
	}
	</pre></td>
</tr>






<tr id="Harms2011" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/polb.22201">Free volume changes on optical switching in azobenzene- polymethylmethacrylate blends studied by a pulsed low-energy positron beam</a></em><br />
S. Harms, K. Rätzke, C. Pakula, V. Zaporojtchenko, T. Strunskus, W. Egger, P. Sperr and F. Faupel; Journal of Polymer Science, Part B: Polymer Physics
<b> 49</b>
 (6)
 (2011)
 404-408.
<p class="infolinks">
[<a href="javascript:toggleInfo('Harms2011','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Harms2011','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/polb.22201/abstract;jsessionid=4D54F7AB4F5618E0910C9AE9CE32EE19.f04t03">URL</a>]
[<a href="https://doi.org/10.1002/polb.22201">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Harms2011.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Harms2011" class="abstract noshow">
	<td><b>Abstract</b>: Polymers including chromophores, which can be switched by light, have been studied extensively during the last years due to a host of potential applications which arise from the marked changes in physical properties on switching. Even though there is clear evidence that the free volume has a significant influence on the isomerization kinetics, the question of free volume changes on switching was only addressed recently. Using a pulsed low-energy positron beam the ortho-positronium lifetime τ3 was taken as a very sensitive free volume probe, and no change in free volume was detected on isomerization in an azobenzene-polymethylmethacrylate (PMMA) copolymer containing about 8 wt % of the azobenzene moiety. Here, we report for the first time on free volume changes in an azobenzene-PMMA blend with an azobenzene moiety concentration as high as 40 wt %. Using the same pulsed low-energy positron beam, small but significant changes of τ3 were observed between the structurally relaxed dark and the UV-illuminated states suggesting a decrease in free volume of the order of 10%.</td>
</tr>
<tr id="bib_Harms2011" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Harms2011,
	  author = {Harms, S. and Rätzke, K. and Pakula, C. and Zaporojtchenko, V. and Strunskus, T. and Egger, W. and Sperr, P. and Faupel, F.},
	  title = {Free volume changes on optical switching in azobenzene- polymethylmethacrylate blends studied by a pulsed low-energy positron beam},
	  journal = {Journal of Polymer Science, Part B: Polymer Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {49},
	  number = {6},
	  pages = {404--408},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/polb.22201/abstract;jsessionid=4D54F7AB4F5618E0910C9AE9CE32EE19.f04t03},
	  doi = {https://doi.org/10.1002/polb.22201}
	}
	</pre></td>
</tr>






<tr id="Harms2011a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.polymer.2010.11.039">Free volume distribution at the Teflon AF®/silicon interfaces probed by a slow positron beam</a></em><br />
S. Harms, K. Rätzke, V. Zaporojtchenko, F. Faupel, W. Egger and L. Ravelli; Polymer
<b> 52</b>
 (2)
 (2011)
 505-509.
<p class="infolinks">
[<a href="javascript:toggleInfo('Harms2011a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Harms2011a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0032386110010347">URL</a>]
[<a href="https://doi.org/10.1016/j.polymer.2010.11.039">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Harms2011a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Harms2011a" class="abstract noshow">
	<td><b>Abstract</b>: We performed positron annihilation lifetime spectroscopy experiments at Teflon AF®/silicon interfaces as function of the positron implantation energy to determine the free volume hole size distribution in the interfacial region and to investigate the width of the interphase. While no interphase was detected in very short chained solvent-free, thermally evaporated Teflon AF®, an interphase of some tens of nm in extension was observed for high molecular weight spin-coated Teflon AF® films. Influences of the native oxide layer on the data evaluation could be ruled out.</td>
</tr>
<tr id="bib_Harms2011a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Harms2011a,
	  author = {Harms, S. and Rätzke, K. and Zaporojtchenko, V. and Faupel, F. and Egger, W. and Ravelli, L.},
	  title = {Free volume distribution at the Teflon AF®/silicon interfaces probed by a slow positron beam},
	  journal = {Polymer},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {52},
	  number = {2},
	  pages = {505--509},
	  url = {http://www.sciencedirect.com/science/article/pii/S0032386110010347},
	  doi = {https://doi.org/10.1016/j.polymer.2010.11.039}
	}
	</pre></td>
</tr>






<tr id="Keeble2011" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.84.174122">Vacancy defects in CdTe thin films</a></em><br />
D. Keeble, J. Major, L. Ravelli, W. Egger and K. Durose; Physical Review B - Condensed Matter and Materials Physics
<b> 84</b>
 (17)
 (2011)
 174122.
<p class="infolinks">
[<a href="javascript:toggleInfo('Keeble2011','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Keeble2011','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.84.174122">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.84.174122">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Keeble2011.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Keeble2011" class="abstract noshow">
	<td><b>Abstract</b>: Vacancy defects have been investigated in a series of CdTe thin films grown by close-space sublimation. Variable-energy positron annihilation lifetime spectroscopy measurements, performed with a high-intensity positron beam, were used to profile polycrystalline films with varying grain size. These were obtained by changing the nitrogen pressure used during deposition. Two vacancy defects were detected, with positron lifetimes of 321(7)ps and 450(30) ps, respectively. Density functional theory calculations support the assignment of the first to the Cd vacancy and provide evidence that the second is the divacancy defect.</td>
</tr>
<tr id="bib_Keeble2011" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Keeble2011,
	  author = {Keeble, D.J. and Major, J.D. and Ravelli, L. and Egger, W. and Durose, K.},
	  title = {Vacancy defects in CdTe thin films},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {84},
	  number = {17},
	  pages = {174122},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.84.174122},
	  doi = {https://doi.org/10.1103/PhysRevB.84.174122}
	}
	</pre></td>
</tr>






<tr id="Keeble2011a" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.3664398">Suppression of vacancy defects in epitaxial La-doped SrTiO 3 films</a></em><br />
D. Keeble, B. Jalan, L. Ravelli, W. Egger, G. Kanda and S. Stemmer; Applied Physics Letters
<b> 99</b>
 (23)
 (2011)
 232905.
<p class="infolinks">
[<a href="javascript:toggleInfo('Keeble2011a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Keeble2011a','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.3664398">URL</a>]
[<a href="https://doi.org/10.1063/1.3664398">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Keeble2011a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Keeble2011a" class="abstract noshow">
	<td><b>Abstract</b>: Variable energy positron annihilation lifetime spectroscopy of high-mobility La-doped SrTiO 3 grown by molecular beam epitaxy found that the films contained sufficiently low concentrations of Sr vacancies and vacancy cluster defects to allow the observation of positron annihilation events from the perfect lattice. This enabled the concentrations of charged cation vacancies to be estimated, and these were found to be at least an order of magnitude below the La-dopant concentrations.</td>
</tr>
<tr id="bib_Keeble2011a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Keeble2011a,
	  author = {Keeble, D.J. and Jalan, B. and Ravelli, L. and Egger, W. and Kanda, G. and Stemmer, S.},
	  title = {Suppression of vacancy defects in epitaxial La-doped SrTiO 3 films},
	  journal = {Applied Physics Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {99},
	  number = {23},
	  pages = {232905},
	  url = {http://aip.scitation.org/doi/10.1063/1.3664398},
	  doi = {https://doi.org/10.1063/1.3664398}
	}
	</pre></td>
</tr>






<tr id="Riedel2011sa" class="entry">

<td>
<em> Konstruktion und Aufbau einer positionierbaren, kollimierten Gammaquelle zur Kalibrierung eines gepixelten Germaniumdetektors für die Positronenannihilation</a></em><br />
Ricardo Riedel; Studienarbeit, Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther, 2011.
<p class="infolinks">


[<a href="javascript:toggleInfo('Riedel2011sa','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Riedel2011sa" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@thesis{Riedel2011sa,
	  author = {Ricardo Riedel},
	  title = {Konstruktion und Aufbau einer positionierbaren, kollimierten Gammaquelle zur Kalibrierung eines gepixelten Germaniumdetektors für die Positronenannihilation},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011}
	}
	</pre></td>
</tr>






<tr id="Slugen2011" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.jnucmat.2010.09.023">Fe-Cr alloys behavior after helium implantation</a></em><br />
V. Slugen, V. Krsjak, W. Egger, M. Petriska, S. Sojak and J. Veternikova; Journal of Nuclear Materials
<b> 409</b>
 (2)
 (2011)
 163-166.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2011','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2011','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S002231151000499X">URL</a>]
[<a href="https://doi.org/10.1016/j.jnucmat.2010.09.023">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2011.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2011" class="abstract noshow">
	<td><b>Abstract</b>: The paper discusses our recent experiments focused on the chromium influence on the microstructural changes of iron based alloys under radiation treatment. Our experimental method - the positron annihilation lifetime spectroscopy (PALS) enables an observation of size and density changes of the vacancy type defects in the material microstructure. These defects have been created by implantation of charged particles (He2+). The cascade collisions in the crystal lattice and following Frenkel pair creation have been considered as possible approximation of the neutron flux damage up to 100 DPA in the region up to 1 μm from the surface.</td>
</tr>
<tr id="bib_Slugen2011" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2011,
	  author = {Slugen, V. and Krsjak, V. and Egger, W. and Petriska, M. and Sojak, S. and Veternikova, J.},
	  title = {Fe-Cr alloys behavior after helium implantation},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2011},
	  volume = {409},
	  number = {2},
	  pages = {163--166},
	  url = {http://www.sciencedirect.com/science/article/pii/S002231151000499X},
	  doi = {https://doi.org/10.1016/j.jnucmat.2010.09.023}
	}
	</pre></td>
</tr>




<tr id="2010" class="entry"><td><h1>2010</h1></td></tr>

<tr id="Anwand2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssa.200925609">Structural characterization of H plasma-doped ZnO single crystals by positron annihilation spectroscopies</a></em><br />
W. Anwand, G. Brauer, T. Cowan, D. Grambole, W. Skorupa, J. Čižek, J. Kuriplach, I. Procházka, W. Egger and P. Sperr; Physica Status Solidi (A) Applications and Materials Science
<b> 207</b>
 (11)
 (2010)
 2415-2425.
<p class="infolinks">
[<a href="javascript:toggleInfo('Anwand2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Anwand2010','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssa.200925609/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssa.200925609">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Anwand2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Anwand2010" class="abstract noshow">
	<td><b>Abstract</b>: Nominally undoped, hydrothermally grown ZnO single crystals have been investigated before and after exposure to remote H plasma. Structural characterizations have been made by various positron annihilation spectroscopies (continuous and pulsed slow positron beams, conventional lifetime). The content of bound hydrogen (H-b) before and after the remote H plasma treatment at the polished side of the crystals was determined at depths of 100 and 600 nm, respectively, using nuclear reaction analysis. At a depth of 100 nm, H-b increased from (11.8 ± 2.5) to (48.7 ± 7.6) × 10 19 cm -3 after remote H plasma treatment, whereas at 600 nm no change in H-b was observed. © 2010 WILEY-VCH Verlag GmbH &amp;amp; Co. KGaA, Weinheim.</td>
</tr>
<tr id="bib_Anwand2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Anwand2010,
	  author = {Anwand, W. and Brauer, G. and Cowan, T.E. and Grambole, D. and Skorupa, W. and Čižek, J. and Kuriplach, J. and Procházka, I. and Egger, W. and Sperr, P.},
	  title = {Structural characterization of H plasma-doped ZnO single crystals by positron annihilation spectroscopies},
	  journal = {Physica Status Solidi (A) Applications and Materials Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {207},
	  number = {11},
	  pages = {2415-2425},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssa.200925609/abstract},
	  doi = {https://doi.org/10.1002/pssa.200925609}
	}
	</pre></td>
</tr>






<tr id="Brusa2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.nimb.2010.05.084">Study of defects in implanted silica glass by depth profiling Positron Annihilation Spectroscopy</a></em><br />
R. Brusa, S. Mariazzi, L. Ravelli, P. Mazzoldi, G. Mattei, W. Egger, C. Hugenschmidt, B. Löwe, P. Pikart, C. Macchi and A. Somoza; Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms
<b> 268</b>
 (19)
 (2010)
 3186-3190.
<p class="infolinks">
[<a href="javascript:toggleInfo('Brusa2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Brusa2010','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168583X10005343">URL</a>]
[<a href="https://doi.org/10.1016/j.nimb.2010.05.084">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Brusa2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Brusa2010" class="abstract noshow">
	<td><b>Abstract</b>: Positron Annihilation Spectroscopy (PAS) performed with continuous and pulsed positron beams allows to characterize the size of the intrinsic nano-voids in silica glass, their in depth modification after ion implantation and their decoration by implanted ions. Three complementary PAS techniques, lifetime spectroscopy (LS), Doppler broadening spectroscopy (DBS) and coincidence Doppler broadening spectroscopy (CDBS) will be illustrated by presenting, as a case study, measurements obtained on virgin and gold implanted silica glass. © 2010 Elsevier B.V. All rights reserved.</td>
</tr>
<tr id="bib_Brusa2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Brusa2010,
	  author = {Brusa, R.S. and Mariazzi, S. and Ravelli, L. and Mazzoldi, P. and Mattei, G. and Egger, W. and Hugenschmidt, C. and Löwe, B. and Pikart, P. and Macchi, C. and Somoza, A.},
	  title = {Study of defects in implanted silica glass by depth profiling Positron Annihilation Spectroscopy},
	  journal = {Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {268},
	  number = {19},
	  pages = {3186-3190},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168583X10005343},
	  doi = {https://doi.org/10.1016/j.nimb.2010.05.084}
	}
	</pre></td>
</tr>






<tr id="Cano-Odena2010" class="entry">

<td>
<em> Positron annihilation spectroscopy: A technique to probe the molecular level of nanofiltration membranes</a></em><br />
A. Cano-Odena, P. Vandezande, K. Hendrix, R. Zaman, K. Mostafa, W. Egger, P. Sperr, J. De Baerdemaeker and I. Vankelecom;
In: 
<em>  20th Annual Meeting of the North American Membrane Society and 11th International Conference on Inorganic Membranes 2010, NAMS/ICIM 2010</em>


 (2010)
 320-322
, North American Membrane Society ( NAMS ).
<p class="infolinks">


[<a href="javascript:toggleInfo('Cano-Odena2010','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Cano-Odena2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@conference{Cano-Odena2010,
	  author = {Cano-Odena, A. and Vandezande, P. and Hendrix, K. and Zaman, R. and Mostafa, K. and Egger, W. and Sperr, P. and De Baerdemaeker, J. and Vankelecom, I.F.J.},
	  title = {Positron annihilation spectroscopy: A technique to probe the molecular level of nanofiltration membranes},
	  booktitle = {20th Annual Meeting of the North American Membrane Society and 11th International Conference on Inorganic Membranes 2010, NAMS/ICIM 2010},
	  publisher = {North American Membrane Society ( NAMS )},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  pages = {320--322}
	}
	</pre></td>
</tr>






<tr id="Egger2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/240/1/012164">Pulsed low-energy positron beams: A useful tool to investigate defect structures in deformed metals and alloys</a></em><br />
W. Egger, P. Sperr, G. Kögel and H.-J. Gudladt; Journal of Physics: Conference Series
<b> 240</b>

 (2010)
 012164.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2010','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/1742-6596/240/1/012164/meta;jsessionid=43E8EFB1F3F805A71643DA6B40BEEFE9.ip-10-40-1-105">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/240/1/012164">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2010" class="abstract noshow">
	<td><b>Abstract</b>: To understand in more detail the behaviour of deformed metallic materials, the knowledge of defects and defect distributions at an atomistic level is important. To investigate the plastic zone in front of a crack tip, the positron annihilation lifetime spectroscopy with a pulsed monoenergetic positron beam of variable energy allows the detection of vacancies, dislocations, vacancy clusters and micro voids in the crack surface near region. Moreover, for a given defect type it is possible to determine its concentration. The positron lifetime measurements in samples of different materials (aluminium, copper) showed different defect profiles for crack surfaces produced by monotonic and cyclic deformation. In addition, this technique was able to characterize the kind of damage (monotonic or cyclic) by analysing the different positron lifetimes. © 2010 IOP Publishing Ltd.</td>
</tr>
<tr id="bib_Egger2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2010,
	  author = {Egger, W. and Sperr, P. and Kögel, G. and Gudladt, H.-J.},
	  title = {Pulsed low-energy positron beams: A useful tool to investigate defect structures in deformed metals and alloys},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {240},
	  pages = {012164},
	  url = {http://iopscience.iop.org/article/10.1088/1742-6596/240/1/012164/meta;jsessionid=43E8EFB1F3F805A71643DA6B40BEEFE9.ip-10-40-1-105},
	  doi = {https://doi.org/10.1088/1742-6596/240/1/012164}
	}
	</pre></td>
</tr>






<tr id="Egger2010a" class="entry">

<td>
<em> <a href="http://ebooks.iospress.nl/publication/26841">Pulsed low-energy positron beams in materials sciences</a></em><br />
W. Egger;
In: R. Brusa, A. Dupasquier and A.P. Mills jr. (Eds.),
<em> Physics with many Positrons</em>
, Vol. 174

, p. 419-449
, IOS Press
, 2010.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2010a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2010a','bibtex')">BibTeX</a>]
[<a href="http://ebooks.iospress.nl/publication/26841">URL</a>]
[<a href="https://doi.org/10.3254/978-1-60750-647-8-419">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2010a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2010a" class="abstract noshow">
	<td><b>Abstract</b>: Pulsed low-energy positron beams of variable energy are powerful tools for defect profiling in materials. In this lecture we will at first describe two pulsed-beam systems developed over the last two decades: The Pulsed Low Energy Positron System (PLEPS) for depth-resolved defect profiling and the Scanning Positron Microscope (SPM), which in addition offers lateral resolution. We then consider some examples of applications of those pulsed beams to condensed matter problems. Next, the limits of those systems are discussed. Finally, we will give an outlook how pulsing with many positrons may be achieved and used for the purposes of materials sciences by combining existing experimental equipment with a strong positron source. © 2010 by Società Italiana di Fisica.</td>
</tr>
<tr id="bib_Egger2010a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@incollection{Egger2010a,
	  author = {Egger, Werner},
	  title = {Pulsed low-energy positron beams in materials sciences},
	  booktitle = {Physics with many Positrons},
	  publisher = {IOS Press},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {174},
	  pages = {419--449},
	  editor = {Brusa, R. and Dupasquier, A. and Mills jr., A. P.},
	  url = {http://ebooks.iospress.nl/publication/26841},
	  doi = {https://doi.org/10.3254/978-1-60750-647-8-419}
	}
	</pre></td>
</tr>






<tr id="Ferragut2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1742-6596/225/1/012007">Positronium formation in porous materials for antihydrogen production</a></em><br />
R. Ferragut, A. Calloni, A. Dupasquier, G. Consolati, F. Quasso, M. Giammarchi, D. Trezzi, W. Egger, L. Ravelli, M. Petkov, S. Jones, B. Wang, O. Yaghi, B. Jasinska, N. Chiodini and A. Paleari; Journal of Physics: Conference Series
<b> 225</b>

 (2010)
 012007.
<p class="infolinks">
[<a href="javascript:toggleInfo('Ferragut2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Ferragut2010','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/1742-6596/225/1/012007/meta">URL</a>]
[<a href="https://doi.org/10.1088/1742-6596/225/1/012007">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Ferragut2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Ferragut2010" class="abstract noshow">
	<td><b>Abstract</b>: Positronium (Ps) formation measurements in several porous materials as: Vycor, germanate Xerogel, Metal-Organic Frameworks MOF-177 and Aerogel with two densities (20 and 150 mg/cm3), were performed by means of a variable energy positron beam provided with a Ge detector and a positron lifetime spectrometer. An efficient formation of cooled Ps atoms is a requisite for the production of antihydrogen, with the aim of a direct measurement of the Earth gravitational acceleration g of antimatter, which is a primary scientific goal of AEGIS (Antimatter Experiment: Gravity, Interferometry, Spectroscopy). Porous materials are necessary to form a high yield of Ps atoms as well as to cool Ps through collisions with the inner walls of the pores. The different materials were characterized and produce Ps into the pores. Lifetime measurements give an estimation of the typical pores dimension of the substances. A comparative study of the positron lifetime and the Ps fraction values in the above mentioned materials indicates that silica Aerogel, with the appropriate density, is an excellent candidate for an efficient formation of cold Ps atoms for the AEGIS project. © 2010 IOP Publishing Ltd.</td>
</tr>
<tr id="bib_Ferragut2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Ferragut2010,
	  author = {Ferragut, R. and Calloni, A. and Dupasquier, A. and Consolati, G. and Quasso, F. and Giammarchi, M.G. and Trezzi, D. and Egger, W. and Ravelli, L. and Petkov, M.P. and Jones, S.M. and Wang, B. and Yaghi, O.M. and Jasinska, B. and Chiodini, N. and Paleari, A.},
	  title = {Positronium formation in porous materials for antihydrogen production},
	  journal = {Journal of Physics: Conference Series},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {225},
	  pages = {012007},
	  url = {http://iopscience.iop.org/article/10.1088/1742-6596/225/1/012007/meta},
	  doi = {https://doi.org/10.1088/1742-6596/225/1/012007}
	}
	</pre></td>
</tr>






<tr id="Harms2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/marc.201000067">Free volume and swelling in thin films of poly(N-isopropylacrylamide) end-capped with N-butyltrithiocarbonate</a></em><br />
S. Harms, K. Rätzke, F. Faupel, W. Egger, L. Ravello, A. Laschewsky, W. Wang and P. Müller-Buschbaum; Macromolecular Rapid Communications
<b> 31</b>
 (15)
 (2010)
 1364-1367.
<p class="infolinks">
[<a href="javascript:toggleInfo('Harms2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Harms2010','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/marc.201000067/abstract">URL</a>]
[<a href="https://doi.org/10.1002/marc.201000067">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Harms2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Harms2010" class="abstract noshow">
	<td><b>Abstract</b>: The free volume in thin films of poly(N-isopropylacrylamid) end-capped with n-butyltriocarbonate (nbc-PNIPAM) is probed with positron annihilation lifetime spectroscopy (PALS). The PALS measurements are performed as function of energy to obtain depth profiles of the free volume of nbc-PNIPAM films. The range of nbc-PNIPAM films with thicknesses from 40 to 200 nm is focused. With decreasing film thickness the free volume increases in good agreement with an increase in the maximum swelling capability of the nbc-PNIPAM films. Thus in thin hydrogel films the sorption and swelling behavior is governed by free volume. (Figure Presented) © 2010 WILEY-VCH Verlag GmbH &amp; Co. KGaA, Weinheim.</td>
</tr>
<tr id="bib_Harms2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Harms2010,
	  author = {Harms, S. and Rätzke, K. and Faupel, F. and Egger, W. and Ravello, L. and Laschewsky, A. and Wang, W. and Müller-Buschbaum, P.},
	  title = {Free volume and swelling in thin films of poly(N-isopropylacrylamide) end-capped with N-butyltrithiocarbonate},
	  journal = {Macromolecular Rapid Communications},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {31},
	  number = {15},
	  pages = {1364-1367},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/marc.201000067/abstract},
	  doi = {https://doi.org/10.1002/marc.201000067}
	}
	</pre></td>
</tr>






<tr id="Keeble2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.81.064102">Identification of vacancy defects in a thin film perovskite oxide</a></em><br />
D. Keeble, R. MacKie, W. Egger, B. Löwe, P. Pikart, C. Hugenschmidt and T. Jackson; Physical Review B - Condensed Matter and Materials Physics
<b> 81</b>
 (6)
 (2010)
 064102.
<p class="infolinks">
[<a href="javascript:toggleInfo('Keeble2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Keeble2010','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.81.064102">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.81.064102">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Keeble2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Keeble2010" class="abstract noshow">
	<td><b>Abstract</b>: Vacancies are the dominant point defects in perovskite oxides, however, detecting and identifying the nature of vacancy defects in thin films remains challenging. This can be achieved using electron-beam methods but concentrations of several percent are required. Here we use a high-flux positron beam, providing high statistics positron lifetime measurements, to identify vacancies in laser ablated SrTiO3 on SrTiO3. The method is capable of subparts per million sensitivity and when combined with density-functional theory provides local structure information. The positron lifetime spectrum depth profile detects the presence of large vacancy clusters in a surface layer, a uniform distribution of Sr vacancies through the bulk of the film and resolves the interface with the substrate. © 2010 The American Physical Society.</td>
</tr>
<tr id="bib_Keeble2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Keeble2010,
	  author = {Keeble, D.J. and MacKie, R.A. and Egger, W. and Löwe, B. and Pikart, P. and Hugenschmidt, C. and Jackson, T.J.},
	  title = {Identification of vacancy defects in a thin film perovskite oxide},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {81},
	  number = {6},
	  pages = {064102},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.81.064102},
	  doi = {https://doi.org/10.1103/PhysRevB.81.064102}
	}
	</pre></td>
</tr>






<tr id="Keeble2010a" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevLett.105.226102">Identification of A- and B-site cation vacancy defects in perovskite oxide thin films</a></em><br />
D. Keeble, S. Wicklein, R. Dittmann, L. Ravelli, R. MacKie and W. Egger; Physical Review Letters
<b> 105</b>
 (22)
 (2010)
 226102.
<p class="infolinks">
[<a href="javascript:toggleInfo('Keeble2010a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Keeble2010a','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.105.226102">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevLett.105.226102">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Keeble2010a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Keeble2010a" class="abstract noshow">
	<td><b>Abstract</b>: Cation vacancies on both sublattices (VTi, VSr) have been identified in homoepitaxial pulsed laser deposited SrTiO3 films using high intensity variable energy positron annihilation lifetime spectroscopy (PALS) measurements. Film nonstoichiometry was varied by varying laser fluence. PALS showed that on increasing the fluence above the Ti/Sr∼1 value, the concentration ratio [VSr]/[VTi] systematically increased. Reducing the fluence into the Ti-poor region below resulted in additional vacancy cluster defect formation. Vacancy concentrations greater than ∼50ppm were observed in all films. © 2010 The American Physical Society.</td>
</tr>
<tr id="bib_Keeble2010a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Keeble2010a,
	  author = {Keeble, D.J. and Wicklein, S. and Dittmann, R. and Ravelli, L. and MacKie, R.A. and Egger, W.},
	  title = {Identification of A- and B-site cation vacancy defects in perovskite oxide thin films},
	  journal = {Physical Review Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {105},
	  number = {22},
	  pages = {226102},
	  url = {http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.105.226102},
	  doi = {https://doi.org/10.1103/PhysRevLett.105.226102}
	}
	</pre></td>
</tr>






<tr id="Leegwater2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.3368698">Divacancies and the hydrogenation of Mg-Ti films with short range chemical order</a></em><br />
H. Leegwater, H. Schut, W. Egger, A. Baldi, B. Dam and S. Eijt; Applied Physics Letters
<b> 96</b>
 (12)
 (2010)
 121902.
<p class="infolinks">
[<a href="javascript:toggleInfo('Leegwater2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Leegwater2010','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.3368698">URL</a>]
[<a href="https://doi.org/10.1063/1.3368698">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Leegwater2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Leegwater2010" class="abstract noshow">
	<td><b>Abstract</b>: We obtained evidence for the partial chemical segregation of as-deposited and hydrogenated Mg1-yTiy films (0≤y≤0.30) into nanoscale Ti and Mg domains using positron Doppler-broadening. We exclusively monitor the hydrogenation of Mg domains, owing to the large difference in positron affinity for Mg and Ti. The electron momentum distribution broadens significantly upon transformation to the MgH2 phase over the whole compositional range. This reveals the similarity of the metal-insulator transition for rutile and fluorite MgH2. Positron lifetime studies show the presence of divacancies in the as-deposited and hydrogenated Mg-Ti metal films. In conjunction with the relatively large local lattice relaxations we deduce to be present in fluorite MgH2, these may be responsible for the fast hydrogen sorption kinetics in this MgH2 phase. © 2010 American Institute of Physics.</td>
</tr>
<tr id="bib_Leegwater2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Leegwater2010,
	  author = {Leegwater, H. and Schut, H. and Egger, W. and Baldi, A. and Dam, B. and Eijt, S.W.H.},
	  title = {Divacancies and the hydrogenation of Mg-Ti films with short range chemical order},
	  journal = {Applied Physics Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {96},
	  number = {12},
	  pages = {121902},
	  url = {http://aip.scitation.org/doi/10.1063/1.3368698},
	  doi = {https://doi.org/10.1063/1.3368698}
	}
	</pre></td>
</tr>






<tr id="Li2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1039/b926774c">Ordered nanoporous membranes based on diblock copolymers with high chemical stability and tunable separation properties</a></em><br />
X. Li, C.-A. Fustin, N. Lefèvre, J.-F. Gohy, S. Feyter, J. Baerdemaeker, W. Egger and I. Vankelecom; Journal of Materials Chemistry
<b> 20</b>
 (21)
 (2010)
 4333-4339.
<p class="infolinks">
[<a href="javascript:toggleInfo('Li2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Li2010','bibtex')">BibTeX</a>]
[<a href="http://pubs.rsc.org/en/Content/ArticleLanding/2010/JM/b926774c#!divAbstract">URL</a>]
[<a href="https://doi.org/10.1039/b926774c">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Li2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Li2010" class="abstract noshow">
	<td><b>Abstract</b>: Block copolymers, having the ability to self-assemble into arrays of well-defined nanostructures, can be turned into thin films. Their application as membrane was so far strongly limited by the fact that these thin films have to be transferred manually onto a porous membrane support, or because of the very strict preparation conditions. A simple method is reported here to directly produce ordered nanoporous membranes on porous supports. Well-ordered membrane structures were prepared via a simple strategy exploiting blending of a block copolymer (PS-b-PEO) with a homopolymer (PAA), involving no thermal or solvent treatment. The membranes could be directly introduced on several types of porous membrane supports via straightforward spin or dip coating of very small amounts of polymer. Moreover, the permeability of the membranes could be readily tuned by removal of the PAA without changing membrane morphology. While already inherently stable in e.g. sodium hypochlorite solutions, the chemical stability of the membranes could be further enhanced via simple UV-radiation, clearly widening their potential application field. © The Royal Society of Chemistry 2010.</td>
</tr>
<tr id="bib_Li2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Li2010,
	  author = {Li, X. and Fustin, C.-A. and Lefèvre, N. and Gohy, J.-F. and Feyter, S.D. and Baerdemaeker, J.D. and Egger, W. and Vankelecom, I.F.J.},
	  title = {Ordered nanoporous membranes based on diblock copolymers with high chemical stability and tunable separation properties},
	  journal = {Journal of Materials Chemistry},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {20},
	  number = {21},
	  pages = {4333-4339},
	  url = {http://pubs.rsc.org/en/Content/ArticleLanding/2010/JM/b926774c#!divAbstract},
	  doi = {https://doi.org/10.1039/b926774c}
	}
	</pre></td>
</tr>






<tr id="Moutanabbir2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.81.115205">Experimental elucidation of vacancy complexes associated with hydrogen ion-induced splitting of bulk GaN</a></em><br />
O. Moutanabbir, R. Scholz, U. Gösele, A. Guittoum, M. Jungmann, M. Butterling, R. Krause-Rehberg, W. Anwand, W. Egger and P. Sperr; Physical Review B - Condensed Matter and Materials Physics
<b> 81</b>
 (11)
 (2010)
 115205.
<p class="infolinks">
[<a href="javascript:toggleInfo('Moutanabbir2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Moutanabbir2010','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.81.115205">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.81.115205">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Moutanabbir2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Moutanabbir2010" class="abstract noshow">
	<td><b>Abstract</b>: We present a detailed study of the thermal evolution of H ion-induced vacancy related complexes and voids in bulk GaN implanted under ion-cut conditions. By using transmission electron microscopy, we found that the damage band in as-implanted GaN is decorated with a high density of nanobubbles of ∼1-2nm in diameter. Variable energy Doppler broadening spectroscopy showed that this band contains vacancy clusters and voids. In addition to vacancy clusters, the presence of VGa, VGa -H2, and VGaVN complexes was evidenced by pulsed low-energy positron lifetime spectroscopy. Subtle changes upon annealing in these vacancy complexes were also investigated. As a general trend, a growth in open-volume defects is detected in parallel to an increase in both size and density of nanobubbles. The observed vacancy complexes appear to be stable during annealing. However, for temperatures above 450°C, unusually large lifetimes were measured. These lifetimes are attributed to the formation of positronium in GaN. Since the formation of positronium is not possible in a dense semiconductor, our finding demonstrates the presence of sufficiently large open-volume defects in this temperature range. Based on the Tao-Eldrup model, the average lattice opening during thermal annealing was quantified. We found that a void diameter of 0.4 nm is induced by annealing at 600°C. The role of these complexes in the subsurface microcracking is discussed. © 2010 The American Physical Society.</td>
</tr>
<tr id="bib_Moutanabbir2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Moutanabbir2010,
	  author = {Moutanabbir, O. and Scholz, R. and Gösele, U. and Guittoum, A. and Jungmann, M. and Butterling, M. and Krause-Rehberg, R. and Anwand, W. and Egger, W. and Sperr, P.},
	  title = {Experimental elucidation of vacancy complexes associated with hydrogen ion-induced splitting of bulk GaN},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {81},
	  number = {11},
	  pages = {115205},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.81.115205},
	  doi = {https://doi.org/10.1103/PhysRevB.81.115205}
	}
	</pre></td>
</tr>






<tr id="Raetzke2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.actbio.2009.12.039">Open volume in bioadhesive detected by positron annihilation lifetime spectroscopy</a></em><br />
K. Rätzke, M. Wiegemann, M. Shaikh, S. Harms, R. Adelung, W. Egger and P. Sperr; Acta Biomaterialia
<b> 6</b>
 (7)
 (2010)
 2690-2694.
<p class="infolinks">
[<a href="javascript:toggleInfo('Raetzke2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Raetzke2010','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S1742706109005807">URL</a>]
[<a href="https://doi.org/10.1016/j.actbio.2009.12.039">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Raetzke2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Raetzke2010" class="abstract noshow">
	<td><b>Abstract</b>: Barnacles attach to a wide variety of surfaces underwater and show substrate-specific adhesion mechanisms. Investigating and understanding these mechanisms is a key for developing new technical adhesives. We expected open volume (porosity) at the sub-nanometre scale to occur in barnacle adhesive. With positron annihilation lifetime spectroscopy (PALS) it is possible to detect porosity at the nanometre scale by determining the lifetime of positrons. This method has not been applied to bioadhesives so far. We showed that PALS is a suitable technique for the investigation of the barnacle base and its adhesive with respect to open volume. The results were interpreted using a standard model adapted from polymers. We thereby estimated pore sizes of 0.5 nm. © 2009 Acta Materialia Inc. Published by Elsevier Ltd. All rights reserved.</td>
</tr>
<tr id="bib_Raetzke2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Raetzke2010,
	  author = {Rätzke, K. and Wiegemann, M. and Shaikh, M.Q. and Harms, S. and Adelung, R. and Egger, W. and Sperr, P.},
	  title = {Open volume in bioadhesive detected by positron annihilation lifetime spectroscopy},
	  journal = {Acta Biomaterialia},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {6},
	  number = {7},
	  pages = {2690-2694},
	  url = {http://www.sciencedirect.com/science/article/pii/S1742706109005807},
	  doi = {https://doi.org/10.1016/j.actbio.2009.12.039}
	}
	</pre></td>
</tr>






<tr id="Rauch2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssa.200983120">In-vacancies in Si-doped InN</a></em><br />
C. Rauch, F. Reurings, F. Tuomisto, T. Veal, C. McConville, H. Lu, W. Schaff, C. Gallinat, G. Koblmüller, J. Speck, W. Egger, B. Löwe, L. Ravelli and S. Sojak; Physica Status Solidi (A) Applications and Materials Science
<b> 207</b>
 (5)
 (2010)
 1083-1086.
<p class="infolinks">
[<a href="javascript:toggleInfo('Rauch2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Rauch2010','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssa.200983120/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssa.200983120">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Rauch2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Rauch2010" class="abstract noshow">
	<td><b>Abstract</b>: The introduction of vacancy type point defects by Si doping in InN grown by plasma-assisted molecular beam epitaxy was studied using a monoenergetic positron beam. With the combination of positron lifetime and Doppler broadening measurements, compensating In-vacancy (V In) acceptors were identified in the material. For increasing Si doping an enhanced formation of VIn defects was observed, up to a concentration of c V = 7 × 10 17 cm -3 in the highest doped sample (ne = 6:6 × 10 20 cm -3). A strong inhomogeneity of the defect profile with a significant increase of the V In concentration toward the layer/substrate interface could be detected. Additionally, larger vacancy clusters containing several V In are formed in the proximity of the interface. Copyright © 2010 WILEY-VCH Verlag GmbH &amp;amp; Co. KGaA, Weinheim.</td>
</tr>
<tr id="bib_Rauch2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Rauch2010,
	  author = {Rauch, C. and Reurings, F. and Tuomisto, F. and Veal, T.D. and McConville, C.F. and Lu, H. and Schaff, W.J. and Gallinat, C.S. and Koblmüller, G. and Speck, J.S. and Egger, W. and Löwe, B. and Ravelli, L. and Sojak, S.},
	  title = {In-vacancies in Si-doped InN},
	  journal = {Physica Status Solidi (A) Applications and Materials Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {207},
	  number = {5},
	  pages = {1083-1086},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssa.200983120/abstract},
	  doi = {https://doi.org/10.1002/pssa.200983120}
	}
	</pre></td>
</tr>






<tr id="Reurings2010" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssa.200983111">Irradiation-induced defects in InN and GaN studied with positron annihilation</a></em><br />
F. Reurings, F. Tuomisto, W. Egger, B. Löwe, L. Ravelli, S. Sojak, Z. Liliental-Weber, R. Jones, K. Yu, W. Walukiewicz and W. Schaff; Physica Status Solidi (A) Applications and Materials Science
<b> 207</b>
 (5)
 (2010)
 1087-1090.
<p class="infolinks">
[<a href="javascript:toggleInfo('Reurings2010','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Reurings2010','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssa.200983111/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssa.200983111">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Reurings2010.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Reurings2010" class="abstract noshow">
	<td><b>Abstract</b>: We use positron annihilation to study 2-MeV 4He + irradiated and subsequently rapid-thermal-annealed InN grown by molecular-beam epitaxy and GaN grown by metal-organic chemical-vapour deposition. The irradiation fluences were in the range 5×10 14-2×10 16 cm -2. In vacancies are introduced in the irradiation at a low rate of 100 cm -1, with their concentration saturating in the mid-1017 cm -3 range at an irradiation fluence of 2×10 15 cm -2. The annealing, performed at temperatures between 425 and 475 °C, is observed to result in an inhomogeneous redistribution of the In vacancies. The behaviour is opposite to GaN, where Ga vacancies are introduced at a much higher rate of 3600 cm -1 showing no detectable saturation. About half of the Ga vacancies are found to recover in the annealing, in agreement with previous studies, while the remaining Ga vacancies undergo no spatial redistribution. Copyright © 2010 WILEY-VCH Verlag GmbH &amp;amp; Co. KGaA, Weinheim.</td>
</tr>
<tr id="bib_Reurings2010" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Reurings2010,
	  author = {Reurings, F. and Tuomisto, F. and Egger, W. and Löwe, B. and Ravelli, L. and Sojak, S. and Liliental-Weber, Z. and Jones, R.E. and Yu, K.M. and Walukiewicz, W. and Schaff, W.J.},
	  title = {Irradiation-induced defects in InN and GaN studied with positron annihilation},
	  journal = {Physica Status Solidi (A) Applications and Materials Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2010},
	  volume = {207},
	  number = {5},
	  pages = {1087-1090},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssa.200983111/abstract},
	  doi = {https://doi.org/10.1002/pssa.200983111}
	}
	</pre></td>
</tr>




<tr id="2009" class="entry"><td><h1>2009</h1></td></tr>

<tr id="Brauer2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssc.200982081">Characterization of ZnO nanostructures: A challenge to positron annihilation spectroscopy and other methods</a></em><br />
G. Brauer, W. Anwand, D. Grambole, W. Egger, P. Sperr, I. Beinik, L. Wang, C. Teichert, J. Kuriplach, J. Lang, S. Zviagins, E. Cizmar, C.C. Ling, Y.F. Hsu, Y.Y. Xi, X. Chen, A.B. Djurisic and W. Skorupa; Physica Status Solidi (C) Current Topics in Solid State Physics
<b> 6</b>
 (11)
 (2009)
 2556-2560.
<p class="infolinks">
[<a href="javascript:toggleInfo('Brauer2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Brauer2009','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982081/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssc.200982081">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Brauer2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Brauer2009" class="abstract noshow">
	<td><b>Abstract</b>: ZnO nanostructures are of special interest for device applications. However, their structural characterization remains an ongoing challenge. This paper reviews recent efforts and latest achievements in this direction. Results comprise PAS in the form of Slow Positron Implantation Spectroscopy (SPIS) and Pulsed Low Energy Positron Lifetime Spectroscopy (PLEPS), Nuclear Reaction Analysis (NRA), Atomic Force Microscopy (AFM), conductive AFM (C-AFM), Nuclear Magnetic Resonance (NMR), Electron Spin Resonance (ESR), Photoluminescence (PL) spectroscopy, and latest theoretical investigations of structure-related and positron properties of selected defects. The fundamental importance of a relationship between fabrication conditions, native defect formation, and resulting optical and electronic properties is demonstrated by getting either inferior (nanorods) or significantly improved (tetrapods) optical properties compared to single crystal samples, depending on the nanostructure fabrication method.</td>
</tr>
<tr id="bib_Brauer2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Brauer2009,
	  author = {Brauer, Gerhard and Anwand, Wolfgang and Grambole, Dieter and Egger, Werner and Sperr, Peter and Beinik, Igor and Wang, Lin and Teichert, Christian and Kuriplach, Jan and Lang, Jan and Zviagins, Sergei and Cizmar, Erik and Ling, Chi Chung and Hsu, Yuk Fan and Xi, Yan Yan and Chen, Xinyi and Djurisic, Aleksandra B. and Skorupa, Wolfgang},
	  title = {Characterization of ZnO nanostructures: A challenge to positron annihilation spectroscopy and other methods},
	  journal = {Physica Status Solidi (C) Current Topics in Solid State Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {6},
	  number = {11},
	  pages = {2556-2560},
	  note = {ICPA 15},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982081/abstract},
	  doi = {https://doi.org/10.1002/pssc.200982081}
	}
	</pre></td>
</tr>






<tr id="Cano-Odena2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/jp9012653">Probing the Molecular Level of Polyimide-Based Solvent Resistant Nanofiltration Membranes with Positron Annihilation Spectroscopy</a></em><br />
A. Cano-Odena, P. Vandezande, K. Hendrix, R. Zaman, K. Mostafa, W. Egger, P. Sperr, J. De Baerdemaeker and I.F.J. Vankelecom; Journal of Physical Chemistry B
<b> 113</b>
 (30)
 (2009)
 10170–10176.
<p class="infolinks">
[<a href="javascript:toggleInfo('Cano-Odena2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Cano-Odena2009','bibtex')">BibTeX</a>]
[<a href="http://pubs.acs.org/doi/abs/10.1021/jp9012653">URL</a>]
[<a href="https://doi.org/10.1021/jp9012653">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Cano-Odena2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Cano-Odena2009" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation spectroscopy (PAS) has been performed to link fundamental polymer properties to membrane performance, more specifically for polyimide (PI)-based solvent-resistant nanofiltration membranes. Laboratory-made membranes with well-known properties were applied first to define proper pretreatment conditions for the membrane to allow PAS-analysis and to allow more correct linking of PAS results to membrane properties. This knowledge was then applied to probe the structure of commercial PI-based Starmem membranes.</td>
</tr>
<tr id="bib_Cano-Odena2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Cano-Odena2009,
	  author = {Cano-Odena, Angels and Vandezande, Pieter and Hendrix, Katrien and Zaman, Rolph and Mostafa, Khaled and Egger, Werner and Sperr, Peter and De Baerdemaeker, Jeremie and Vankelecom, Ivo F. J.},
	  title = {Probing the Molecular Level of Polyimide-Based Solvent Resistant Nanofiltration Membranes with Positron Annihilation Spectroscopy},
	  journal = {Journal of Physical Chemistry B},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {113},
	  number = {30},
	  pages = {10170–10176},
	  url = {http://pubs.acs.org/doi/abs/10.1021/jp9012653},
	  doi = {https://doi.org/10.1021/jp9012653}
	}
	</pre></td>
</tr>






<tr id="Cizek2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssc.200982064">Hydrogen-induced defects in Pd films</a></em><br />
J. Cizek, I. Prochazka, O. Melikhova, M. Vlach, N. Zaludova, G. Brauer, W. Anwand, W. Egger, P. Sperr, C. Hugenschmidt, R. Gemma, A. Pundt and R. Kirchheim; Physica Status Solidi (C) Current Topics in Solid State Physics
<b> 6</b>
 (11)
 (2009)
 2364-2366.
<p class="infolinks">
[<a href="javascript:toggleInfo('Cizek2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Cizek2009','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982064/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssc.200982064">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Cizek2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Cizek2009" class="abstract noshow">
	<td><b>Abstract</b>: Hydrogen absorbed in crystalline solids causes a lattice expansion and the formation of hydride phases. Contrary to free standing bulk samples, thin films are fixed at substrates, which prevent their in-plane expansion. This makes hydrogen-induced expansion of thin films highly anisotropic and leads to the formation of high stresses in hydrogen loaded thin films. As a consequence, lattice defects may be created in thin films loaded with hydrogen. This work reports about defects created by hydrogen loading in epitaxial Pd films deposited on Al(2)O(3) substrates by cold cathode beam sputtering. Hydrogen-induced defects are characterized by positron annihilation spectroscopy performed with variable energy slow positron beams. Extended studies of defect depth profile and its development with increasing concentration of hydrogen are performed by measurement of Doppler broadening of annihilation profile using a continuous positron beam. Selected states are investigated also by positron lifetime spectroscopy on an intense pulsed positron beam. Firstly, the microstructure of virgin films is characterized. Subsequently, the hydrogen concentration in the films is increased step-by-step by electrochemical charging. The development of the film microstructure and the evolution of defects are investigated.</td>
</tr>
<tr id="bib_Cizek2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Cizek2009,
	  author = {Cizek, Jakub and Prochazka, Ivan and Melikhova, Oksana and Vlach, Martin and Zaludova, Nada and Brauer, Gerhard and Anwand, Wolfgang and Egger, Werner and Sperr, Peter and Hugenschmidt, Christoph and Gemma, Ryota and Pundt, Astrid and Kirchheim, Reiner},
	  title = {Hydrogen-induced defects in Pd films},
	  journal = {Physica Status Solidi (C) Current Topics in Solid State Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {6},
	  number = {11},
	  pages = {2364-2366},
	  note = {ICPA 15},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982064/abstract},
	  doi = {https://doi.org/10.1002/pssc.200982064}
	}
	</pre></td>
</tr>






<tr id="Gentils2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.3120183">Nature of defects induced by Au implantation in hexagonal silicon carbide single crystals</a></em><br />
A. Gentils, M.-F. Barthe, W. Egger and P. Sperr; AIP Conference Proceedings
<b> 1099</b>

 (2009)
 891-895.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gentils2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gentils2009','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/abs/10.1063/1.3120183">URL</a>]
[<a href="https://doi.org/10.1063/1.3120183">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gentils2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gentils2009" class="abstract noshow">
	<td><b>Abstract</b>: Pulsed-slow-positron-beam-based positron lifetime spectroscopy was used to investigate the nature of vacancy defects induced by 20 MeV An implantation in single crystals 6H-SiC. Preliminary analysis of the data shows that at lower fluence, below 10(14) cm(-2), a positron lifetime of 220 ps has been obtained: it could be associated with the divacancy V(Si)-V(C) in comparison with the literature. At higher fluence, above 10(15) cm(-2), a positron lifetime of 260-270 ps, increasing with the incident positron energy, has been observed after decomposition of the lifetime spectra. By comparison with lifetime calculations, open-volumes such as quadrivacancy (V(Si)-V(C))(2) clusters could be associated with this value.</td>
</tr>
<tr id="bib_Gentils2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gentils2009,
	  author = {Gentils, Aurelie and Barthe, Marie-France and Egger, Werner and Sperr, Peter},
	  title = {Nature of defects induced by Au implantation in hexagonal silicon carbide single crystals},
	  journal = {AIP Conference Proceedings},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {1099},
	  pages = {891--895},
	  note = {20th International Conference on Application of Accelerators in Research and Industry, Ft Worth, TX, AUG 10-15, 2008},
	  url = {http://aip.scitation.org/doi/abs/10.1063/1.3120183},
	  doi = {https://doi.org/10.1063/1.3120183}
	}
	</pre></td>
</tr>






<tr id="Krsjak2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssc.200982117">Microstructural study of He-implanted Fe-Cr alloys with the use of conventional lifetime technique and pulsed low energy positron beam</a></em><br />
V. Kršjak, V. Slugeň, M. Petriska, S. Sojak and W. Egger; Physica Status Solidi (C) Current Topics in Solid State Physics
<b> 6</b>
 (11)
 (2009)
 2339-2341.
<p class="infolinks">
[<a href="javascript:toggleInfo('Krsjak2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Krsjak2009','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982117/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssc.200982117">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Krsjak2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Krsjak2009" class="abstract noshow">
	<td><b>Abstract</b>: Experimental simulation of the radiation damage using He+ implantation has been performed in research of Fe-Cr model alloys. Different chromium content in the studied materials enables investigations of the effect of this element on the microstructure of radiation treated materials. The damaged region was investigated with the positron lifetime techniques with focus on the size and distribution of the defects. Our measurements show that not only pulsed low energy positron beam spectroscopy (PLEPS) but also conventional lifetime spectroscopy can study the behaviour of vacancy type defects induced by implantation of charged particles. Our results show that initial microstructure of low Cr alloys with significant presence of vacancy type defects is less resistant to creation of defect agglomeration in comparison with higher Cr alloys.</td>
</tr>
<tr id="bib_Krsjak2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Krsjak2009,
	  author = {Kršjak, Vladimir and Slugeň, Vladimir and Petriska, Martin and Sojak, Stanislav and Egger, Werner},
	  title = {Microstructural study of He-implanted Fe-Cr alloys with the use of conventional lifetime technique and pulsed low energy positron beam},
	  journal = {Physica Status Solidi (C) Current Topics in Solid State Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {6},
	  number = {11},
	  pages = {2339-2341},
	  note = {ICPA 15},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982117/abstract},
	  doi = {https://doi.org/10.1002/pssc.200982117}
	}
	</pre></td>
</tr>






<tr id="Krsjak2009a" class="entry">

<td>
<em> Helium implanted FeCr alloys studied by positron annihilation lifetime technique</a></em><br />
V. Kršjak, W. Egger, M. Petriska and S. Sojak; Problems of Atomic Science and Technology
<b> 4</b>
 (1)
 (2009)
 109-115.
<p class="infolinks">
[<a href="javascript:toggleInfo('Krsjak2009a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Krsjak2009a','bibtex')">BibTeX</a>]
[<a href="http://vant.kipt.kharkov.ua/ANNOTAZII_2009/annotazii_2009_4_109.html">URL</a>]

[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Krsjak2009a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Krsjak2009a" class="abstract noshow">
	<td><b>Abstract</b>: The influence of chromium on the radiation damage resistance of iron based alloys has been studied using conventional positron lifetime technique and a pulsed low energy positron beam. To simulate high neutron flux, the helium implantation has been used. Different levels of helium doses ( 6.24.10(17)-3.12.10(18) cm(-2)) corresponding to a local damage of up to 90 dpa were accumulated in a thin <1 mu m region. Four different binary FeCr alloys (2.6; 4.6; 8.4; 11.6 wt.% of Cr) have been used in this study. The obtained results show that chromium has a significant effect on the size and distribution of the created defects. The character of these defects has been determined as large voids (>1 nm) and small vacancy clusters together with the initial dislocations and small point defects.</td>
</tr>
<tr id="bib_Krsjak2009a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Krsjak2009a,
	  author = {Kršjak, Vladimir and Egger, Werner and Petriska, Martin and Sojak, Stanislav},
	  title = {Helium implanted FeCr alloys studied by positron annihilation lifetime technique},
	  journal = {Problems of Atomic Science and Technology},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {4},
	  number = {1},
	  pages = {109--115},
	  note = {IAEA Technical Meeting on Accelerator Simulation and Theoretical Medeling of Radiation Effect, Kharkov Inst Phys &amp; Technol, Natl Res Ctr, Kharkov, UKRAINE, JUN 09-13, 2008},
	  url = {http://vant.kipt.kharkov.ua/ANNOTAZII_2009/annotazii_2009_4_109.html}
	}
	</pre></td>
</tr>






<tr id="Lhuillier2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssc.200982114">Positron annihilation studies on the nature and thermal behaviour of irradiation induced defects in tungsten</a></em><br />
P.E. Lhuillier, M.F. Barthe, P. Desgardin, W. Egger and P. Sperr; Physica Status Solidi (C) Current Topics in Solid State Physics
<b> 6</b>
 (11)
 (2009)
 2329-2332.
<p class="infolinks">
[<a href="javascript:toggleInfo('Lhuillier2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Lhuillier2009','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982114/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssc.200982114">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Lhuillier2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Lhuillier2009" class="abstract noshow">
	<td><b>Abstract</b>: Positron Annihilation Lifetime Spectroscopy has been performed with a pulsed positron beam to investigate the nature and evolution of implantation-induced defects created in the track region (TR) of 800 keV (3)He ions at different fluences. At high fluence - 5x10(16) cm(-2) - lifetime decomposition exhibits a predominant (98%) positron lifetime of 200 ps which is attributed to irradiation induced monovacancy. The increasing average lifetime as a function of the post-implantation annealing temperature has allowed to identify vacancy clustering due to vacancy migration (that occurs from 473 K).</td>
</tr>
<tr id="bib_Lhuillier2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Lhuillier2009,
	  author = {Lhuillier, P. E. and Barthe, M. F. and Desgardin, P. and Egger, W. and Sperr, P.},
	  title = {Positron annihilation studies on the nature and thermal behaviour of irradiation induced defects in tungsten},
	  journal = {Physica Status Solidi (C) Current Topics in Solid State Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {6},
	  number = {11},
	  pages = {2329-2332},
	  note = {ICPA 15},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssc.200982114/abstract},
	  doi = {https://doi.org/10.1002/pssc.200982114}
	}
	</pre></td>
</tr>






<tr id="Mazzoldi2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0022-3727/42/11/115418">Direct evidence by positron annihilation spectroscopy of defect distributions deeper than Rp in Ar+ implanted silica glass</a></em><br />
P. Mazzoldi, G. Mattei, L. Ravelli, W. Egger, S. Mariazzi and R.S. Brusa; Journal of Physics D: Applied Physics
<b> 42</b>
 (11)
 (2009)
 115418.
<p class="infolinks">
[<a href="javascript:toggleInfo('Mazzoldi2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Mazzoldi2009','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/0022-3727/42/11/115418/">URL</a>]
[<a href="https://doi.org/10.1088/0022-3727/42/11/115418">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Mazzoldi2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Mazzoldi2009" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation spectroscopy was used to depth profile the modification of intrinsic structural nanovoids in silica glass implanted with Ar+ ions at different fluences and implantation energies. Beyond an expected defect distribution below the ion projected range R-p, a second defect distribution extending more than two times deeper than R-p was revealed. This second defective layer was found to be related to recoiled oxygen atoms whose diffusion is probably increased by the stress gradient induced by the compaction of the first layer.</td>
</tr>
<tr id="bib_Mazzoldi2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Mazzoldi2009,
	  author = {Mazzoldi, P. and Mattei, G. and Ravelli, L. and Egger, W. and Mariazzi, S. and Brusa, R. S.},
	  title = {Direct evidence by positron annihilation spectroscopy of defect distributions deeper than Rp in Ar+ implanted silica glass},
	  journal = {Journal of Physics D: Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {42},
	  number = {11},
	  pages = {115418},
	  url = {http://iopscience.iop.org/0022-3727/42/11/115418/},
	  doi = {https://doi.org/10.1088/0022-3727/42/11/115418}
	}
	</pre></td>
</tr>






<tr id="Sojak2009" class="entry">

<td>
<em> <a href="https://doi.org/10.1115/PVP2009-77537">Advanced Fe-Cr alloys studied by pulsed low energy positron system before and after helium ions implantation</a></em><br />
S. Sojak, V. Kršjak and W. Egger; American Society of Mechanical Engineers, Pressure Vessels and Piping Division (Publication) PVP
<b> 5</b>

 (2009)
 469-472.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sojak2009','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sojak2009','bibtex')">BibTeX</a>]
[<a href="http://proceedings.asmedigitalcollection.asme.org/proceeding.aspx?articleid=1635396">URL</a>]
[<a href="https://doi.org/10.1115/PVP2009-77537">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sojak2009.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sojak2009" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation spectroscopy (PAS) is a non-destructive technique which provides information about microstructural damage of structural materials. In this paper, the Pulsed Low Energy Positron System (PLEPS) at the research reactor FRM-II at TU Munich was used to study depth profiling of binary Fe-Cr alloys. Fe-Cr model alloys with different chromium content were investigated in the as-received state as well as after helium ion implantation (dose up to 6.24x1017 ions/cm-2). Measured results show changes in the size of defects after implantation and also in non-implanted specimens depending on the Cr content.</td>
</tr>
<tr id="bib_Sojak2009" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sojak2009,
	  author = {Sojak, S. and Kršjak, V. and Egger, W.},
	  title = {Advanced Fe-Cr alloys studied by pulsed low energy positron system before and after helium ions implantation},
	  journal = {American Society of Mechanical Engineers, Pressure Vessels and Piping Division (Publication) PVP},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2009},
	  volume = {5},
	  pages = {469--472},
	  url = {http://proceedings.asmedigitalcollection.asme.org/proceeding.aspx?articleid=1635396},
	  doi = {https://doi.org/10.1115/PVP2009-77537}
	}
	</pre></td>
</tr>




<tr id="2008" class="entry"><td><h1>2008</h1></td></tr>

<tr id="Egger2008" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2008.05.205">Investigations of epoxy-based adhesives with PLEPS</a></em><br />
W. Egger, P. Sperr, G. Kögel, M. Wetzel and H.-J. Gudladt; Applied Surface Science
<b> 255</b>
 (1)
 (2008)
 209-212.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2008','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2008','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433208012257">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2008.05.205">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2008.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2008" class="abstract noshow">
	<td><b>Abstract</b>: Contamination-tolerant adhesives are of ever increasing importance in industrial applications. The possible failure mechanisms of adhesive bonds in these adhesives are however still poorly understood. Results of a series of investigations with our pulsed low energy positron beam system (PLEPS) in an epoxy-based contamination-tolerant adhesive are presented.</td>
</tr>
<tr id="bib_Egger2008" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2008,
	  author = {Egger, W. and Sperr, P. and Kögel, G. and Wetzel, M. and Gudladt, H.-J.},
	  title = {Investigations of epoxy-based adhesives with PLEPS},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2008},
	  volume = {255},
	  number = {1},
	  pages = {209--212},
	  note = {SLOPOS 11},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433208012257},
	  doi = {https://doi.org/10.1016/j.apsusc.2008.05.205}
	}
	</pre></td>
</tr>






<tr id="Gordo2008" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2008.05.185">On the defect pattern evolution in sapphire irradiated by swift ions in a broad fluence range</a></em><br />
P.M. Gordo, L. Liszkay, Z. Kajcsos, K. Havancsák, V.A. Skuratov, G. Kögel, P. Sperr, W. Egger, A.P. de Lima and M.F.F. Marques; Applied Surface Science
<b> 255</b>
 (1)
 (2008)
 254-256.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gordo2008','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gordo2008','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.93">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2008.05.185">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gordo2008.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gordo2008" class="abstract noshow">
	<td><b>Abstract</b>: Sapphire samples, irradiated with swift Kr (245 MeV) ions at room temperature in a broad fluence range, were investigated using a continuous and a pulsed positron beam to study the defect structure created by the passage of the ions in depths of a few micrometers. At small doses, monovacancies were identified as dominant defects and positron trapping centres. These monovacancies are assumed to be highly concentrated inside a cylindrical volume around the ion path with an estimated radius of similar to 1.5 nm. For higher doses a second type of trapping centre emerges. This second class of structural imperfection was associated with the overlap of the individual ion tracks leading to the formation of larger vacancy clusters or voids.</td>
</tr>
<tr id="bib_Gordo2008" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gordo2008,
	  author = {Gordo, P. M. and Liszkay, L. and Kajcsos, Zs. and Havancsák, K. and Skuratov, V. A. and Kögel, G. and Sperr, P. and Egger, W. and de Lima, A. P. and Marques, M. F. Ferreira},
	  title = {On the defect pattern evolution in sapphire irradiated by swift ions in a broad fluence range},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2008},
	  volume = {255},
	  number = {1},
	  pages = {254--256},
	  note = {SLOPOS 11},
	  url = {http://www.scientific.net/MSF.445-446.93},
	  doi = {https://doi.org/10.1016/j.apsusc.2008.05.185}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2008" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2008.05.304">Surface and bulk investigations at the high intensity positron beam facility NEPOMUC</a></em><br />
C. Hugenschmidt, G. Dollinger, W. Egger, G. Kögel, B. Löwe, J. Mayer, P. Pikart, C. Piochacz, R. Repper, K. Schreckenbach, P. Sperr and M. Stadlbauer; Applied Surface Science
<b> 255</b>
 (1)
 (2008)
 29-32.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2008','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2008','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433208012269">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2008.05.304">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2008.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2008" class="abstract noshow">
	<td><b>Abstract</b>: The NEutron-induced POsitron source MUniCh (NEPOMUC) at the research reactor FRM II delivers a low-energy positron beam (E = 15-1000 eV) of high intensity in the range between 4 × 107 and 5 × 108 moderated positrons per second. At present four experimental facilities are in operation at NEPOMUC: a coincident Doppler-broadening spectrometer (CDBS) for defect spectroscopy and investigations of the chemical vicinity of defects, a positron annihilation-induced Auger-electron spectrometer (PAES) for surface studies and an apparatus for the production of the negatively charged positronium ion Ps-. Recently, the pulsed low-energy positron system (PLEPS) has been connected to the NEPOMUC beam line, and first positron lifetime spectra were recorded within short measurement times. A positron remoderation unit which is operated with a tungsten single crystal in back reflection geometry has been implemented in order to improve the beam brilliance. An overview of NEPOMUC's status, experimental results and recent developments at the running spectrometers are presented.</td>
</tr>
<tr id="bib_Hugenschmidt2008" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2008,
	  author = {Hugenschmidt, C. and Dollinger, G. and Egger, W. and Kögel, G. and Löwe, B. and Mayer, J. and Pikart, P. and Piochacz, C. and Repper, R. and Schreckenbach, K. and Sperr, P. and Stadlbauer, M.},
	  title = {Surface and bulk investigations at the high intensity positron beam facility NEPOMUC},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2008},
	  volume = {255},
	  number = {1},
	  pages = {29--32},
	  note = {SLOPOS 11},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433208012269},
	  doi = {https://doi.org/10.1016/j.apsusc.2008.05.304}
	}
	</pre></td>
</tr>






<tr id="Piochacz2008" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2008.05.286">A positron remoderator for the high intensity positron source NEPOMUC</a></em><br />
C. Piochacz, G. Kögel, W. Egger, C. Hugenschmidt, J. Mayer, K. Schreckenbach, P. Sperr, M. Stadlbauer and G. Dollinger; Applied Surface Science
<b> 255</b>
 (1)
 (2008)
 98-100.
<p class="infolinks">
[<a href="javascript:toggleInfo('Piochacz2008','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Piochacz2008','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433208011975">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2008.05.286">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Piochacz2008.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Piochacz2008" class="abstract noshow">
	<td><b>Abstract</b>: A remoderator for the high intensity positron source NEPOMUC was developed and installed at the beam facility. A beam of remoderated positrons could be produced with different energies and a diameter of less than 2 mm was obtained. The efficiency of the remoderation setup was determined to be 5%. Due to the brilliance of the remoderated beam, the measurements at the coincidence Doppler broadening spectrometer (CDBS) and at the positron annihilation induced Auger electron spectrometer (PAES) could be improved. The setup and functionality of the remoderation device is presented as well as the first measurements at the remoderator, CDBS and PAES.</td>
</tr>
<tr id="bib_Piochacz2008" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Piochacz2008,
	  author = {Piochacz, C. and Kögel, G. and Egger, W. and Hugenschmidt, C. and Mayer, J. and Schreckenbach, K. and Sperr, P. and Stadlbauer, M. and Dollinger, G.},
	  title = {A positron remoderator for the high intensity positron source NEPOMUC},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2008},
	  volume = {255},
	  number = {1},
	  pages = {98--100},
	  note = {SLOPOS 11},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433208011975},
	  doi = {https://doi.org/10.1016/j.apsusc.2008.05.286}
	}
	</pre></td>
</tr>






<tr id="Sperr2008" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2008.05.307">Status of the pulsed low energy positron beam system (PLEPS) at the Munich Research Reactor FRM-II</a></em><br />
P. Sperr, W. Egger, G. Kögel, G. Dollinger, C. Hugenschmidt, R. Repper and C. Piochacz; Applied Surface Science
<b> 255</b>
 (1)
 (2008)
 35-38.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sperr2008','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sperr2008','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S016943320801218X">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2008.05.307">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sperr2008.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sperr2008" class="abstract noshow">
	<td><b>Abstract</b>: The Munich pulsed low energy positron beam system (PLEPS) is now installed at the high intensity positron source (NEPOMUC) at the Munich Research Reactor FRM-II. In order to enhance the performance of the system several improvements have been implemented: two additional collinear detector ports have been installed. Therefore in addition to the normal lifetime measurements it is now possible to simultaneously perform Doppler-broadening, coincident Doppler-broadening and age momentum correlation experiments. An additional chopper was included to periodically suppress pulses and therefore to extend the standard time window of 20 ns for precise measurements of longer lifetimes. First test-experiments have been performed in May and July 2007. With all pulsing components in operation we achieved a count-rate of 1.4 × 104 counts per second. The total time resolution (pulsing and detector) was about 240 ps (FWHM) with a peak to background ratio up to 6 × 103:1.</td>
</tr>
<tr id="bib_Sperr2008" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sperr2008,
	  author = {Sperr, P. and Egger, W. and Kögel, G. and Dollinger, G. and Hugenschmidt, C. and Repper, R. and Piochacz, C.},
	  title = {Status of the pulsed low energy positron beam system (PLEPS) at the Munich Research Reactor FRM-II},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2008},
	  volume = {255},
	  number = {1},
	  pages = {35--38},
	  note = {SLOPOS 11},
	  url = {http://www.sciencedirect.com/science/article/pii/S016943320801218X},
	  doi = {https://doi.org/10.1016/j.apsusc.2008.05.307}
	}
	</pre></td>
</tr>




<tr id="2007" class="entry"><td><h1>2007</h1></td></tr>

<tr id="Egger2007" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssc.200675812">Pulsed low energy positron system (PLEPS) at the Munich research reactor FRMII</a></em><br />
W. Egger, P. Sperr, G. Kögel and G. Dollinger; Physica Status Solidi (C) Current Topics in Solid State Physics
<b> 4</b>
 (10)
 (2007)
 3969-3972.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2007','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2007','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssc.200675812/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssc.200675812">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2007.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2007" class="abstract noshow">
	<td><b>Abstract</b>: Currently, the Munich pulsed low energy positron beam-system (PLEPS) is transferred to the high-intensity positron source (NEPOMUC) at the Munich research Reactor FRM II. We expect count-rates up to 106 cps. Several improvements to enhance the performance of the system have been implemented. Until now, PLEPS was employed exclusively for lifetime measurements. To enable also Doppler-broadening, coincident Doppler-broadening and AMOC experiments, two additional detector ports have been installed. An additional chopper allows to suppress pulses and, therefore, to extend the standard time window of 20 ns for precise measurements of longer lifetimes. The high event-rate supports the use of smaller scintillators. Consequently an improvement in time resolution is expected. Also envisaged is the use of new detector materials. Various measures to further reduce background from back-scattered positrons and a reduction of the beam diameter down to 1 mm will improve the overall performance of the system.</td>
</tr>
<tr id="bib_Egger2007" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2007,
	  author = {Egger, W. and Sperr, P. and Kögel, G. and Dollinger, G.},
	  title = {Pulsed low energy positron system (PLEPS) at the Munich research reactor FRMII},
	  journal = {Physica Status Solidi (C) Current Topics in Solid State Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2007},
	  volume = {4},
	  number = {10},
	  pages = {3969--3972},
	  note = {ICPA 14},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssc.200675812/abstract},
	  doi = {https://doi.org/10.1002/pssc.200675812}
	}
	</pre></td>
</tr>






<tr id="Haerting2007" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.surfcoat.2006.02.072">Near surface stress determination in Kr-implanted polycrystalline titanium by the X-ray sin2Ψ-method</a></em><br />
M. Härting, S. Nsengiyumva, A. Raji, G. Dollinger, P. Sperr, S. Naidoo, T. Derry, C. Comrie and D. Britton; Surface and Coatings Technology
<b> 201</b>
 (19-20 SPEC. ISS.)
 (2007)
 8237-8241.
<p class="infolinks">
[<a href="javascript:toggleInfo('Haerting2007','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Haerting2007','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0257897207002587">URL</a>]
[<a href="https://doi.org/10.1016/j.surfcoat.2006.02.072">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Haerting2007.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Haerting2007" class="abstract noshow">
	<td><b>Abstract</b>: Ion implantation has been performed on polycrystalline titanium samples with 180 keV Kr+ ions at various doses from 1 × 1015 to 5 × 1016 ions cm- 2 at room temperature. The samples where characterised by Rutherford backscattering spectrometry, positron annihilation lifetime spectroscopy and X-ray diffraction. By means of the sin2Ψ technique the near surface stress has been determined for both unimplanted and implanted samples. The initial stress state has been shown to be strongly tensile in the first 75 nm below the surface, and weakly compressive deeper inside. The main effect of the implantation process was to relax the pre-existing tensile stress in the track region. An additional compressive stress was introduced deeper in the sample and could be attributed to the presence of larger defect clusters.</td>
</tr>
<tr id="bib_Haerting2007" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Haerting2007,
	  author = {Härting, M. and Nsengiyumva, S. and Raji, A.T. and Dollinger, G. and Sperr, P. and Naidoo, S.R. and Derry, T.E. and Comrie, C.M. and Britton, D.T.},
	  title = {Near surface stress determination in Kr-implanted polycrystalline titanium by the X-ray sin2Ψ-method},
	  journal = {Surface and Coatings Technology},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2007},
	  volume = {201},
	  number = {19-20 SPEC. ISS.},
	  pages = {8237--8241},
	  note = {14th International Conference on Surface Modification by Ion Beams (SMMIB 05), Kusadasi, TURKEY, SEP 04-09, 2005},
	  url = {http://www.sciencedirect.com/science/article/pii/S0257897207002587},
	  doi = {https://doi.org/10.1016/j.surfcoat.2006.02.072}
	}
	</pre></td>
</tr>






<tr id="Piochacz2007" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssc.200675824">Implementation of the Munich scanning positron microscope at the positron source NEPOMUC</a></em><br />
C. Piochacz, W. Egger, C. Hugenschmidt, G. Kögel, K. Schreckenbach, P. Sperr and G. Dollinger; Physica Status Solidi (C) Current Topics in Solid State Physics
<b> 4</b>
 (10)
 (2007)
 4028-4031.
<p class="infolinks">
[<a href="javascript:toggleInfo('Piochacz2007','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Piochacz2007','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssc.200675824/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssc.200675824">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Piochacz2007.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Piochacz2007" class="abstract noshow">
	<td><b>Abstract</b>: The Munich scanning positron microscope (SPM) permits positron lifetime measurements with a lateral resolution down to 2 um within an energy range of 1-20 keV. One practical limitation of the SPM is set by the long measurement times of several days per a 2D-scan due to the low intensity positron beam produced by standard 22Na sources. This disadvantage will be overcome by installing the SPM at the high intense positron beam facility NEPOMUC at the research reactor FRM II in Garching. Thus the time for one measurement will be shortened by a factor of 60. In addition it is expected to reduce the lateral resolution to about 100 nm. Due to the beam characteristics of the NEPOMUC facility an interface is needed, which enhances the phase space density of the beam. The requirements, which have to be fulfilled by the interface, will be described and an overview of the different components such as bunching units, remoderation stages and rf-elevator will be given.</td>
</tr>
<tr id="bib_Piochacz2007" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Piochacz2007,
	  author = {Piochacz, C. and Egger, W. and Hugenschmidt, C. and Kögel, G. and Schreckenbach, K. and Sperr, P. and Dollinger, G.},
	  title = {Implementation of the Munich scanning positron microscope at the positron source NEPOMUC},
	  journal = {Physica Status Solidi (C) Current Topics in Solid State Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2007},
	  volume = {4},
	  number = {10},
	  pages = {4028--4031},
	  note = {ICPA 14},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssc.200675824/abstract},
	  doi = {https://doi.org/10.1002/pssc.200675824}
	}
	</pre></td>
</tr>




<tr id="2006" class="entry"><td><h1>2006</h1></td></tr>

<tr id="Britton2006" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.tsf.2005.07.111">Microstructural defect characterisation of a-Si:H deposited by low temperature HW-CVD on paper substrates</a></em><br />
D.T. Britton, M. Härting, D. Knoesen, Z. Sigcau, F.P. Nemalili, T.P. Ntsoane, P. Sperr, W. Egger and M. Nippus; Thin Solid Films
<b> 501</b>
 (1-2)
 (2006)
 79-83.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2006','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0040609005009764">URL</a>]
[<a href="https://doi.org/10.1016/j.tsf.2005.07.111">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2006" class="abstract noshow">
	<td><b>Abstract</b>: Hydrogenated amorphous silicon has been deposited on 80 g m(-2) wood-free paper, with and without an intermediate metallic interlayer, using low temperature hot wire chemical vapor deposition (HW-CVD). Electrical measurements show these layers to be of good quality. In this paper we cornpare the differences in microstructural properties of the two types of layer, concentrating on the influence of the substrates, including their effect on the deposition rate of the material and substrate temperature. During the deposition process, the metallized substrates reach a higher temperature than plain paper. Both X-diffiraction and positron annihilation lifetime studies indicate that the growth rate on the uncoated substrate is slightly higher than with prior metallization. There is no evidence of a crystalline phase or voids in the a-Si:H layers, and the internal defect structure is similar, with a dominant dangling-bond complex of similar size.</td>
</tr>
<tr id="bib_Britton2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2006,
	  author = {Britton, D. T. and Härting, M. and Knoesen, D. and Sigcau, Z. and Nemalili, F. P. and Ntsoane, T. P. and Sperr, P. and Egger, W. and Nippus, M.},
	  title = {Microstructural defect characterisation of a-Si:H deposited by low temperature HW-CVD on paper substrates},
	  journal = {Thin Solid Films},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2006},
	  volume = {501},
	  number = {1-2},
	  pages = {79--83},
	  note = {3rd International Conference on Hot-Wire CVD Process, Utrecht Univ, Utrecht, NETHERLANDS, AUG 23-27, 2004},
	  url = {http://www.sciencedirect.com/science/article/pii/S0040609005009764},
	  doi = {https://doi.org/10.1016/j.tsf.2005.07.111}
	}
	</pre></td>
</tr>






<tr id="Brusa2006" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.2162691">Decoration of buried surfaces in Si detected by positron annihilation spectroscopy</a></em><br />
R. Brusa, C. Macchi, S. Mariazzi, G. Karwasz, W. Egger, P. Sperr and G. Kögel; Applied Physics Letters
<b> 88</b>
 (1)
 (2006)
 011920.
<p class="infolinks">
[<a href="javascript:toggleInfo('Brusa2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Brusa2006','bibtex')">BibTeX</a>]
[<a href="http://scitation.aip.org/content/aip/journal/apl/88/1/10.1063/1.2162691">URL</a>]
[<a href="https://doi.org/10.1063/1.2162691">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Brusa2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Brusa2006" class="abstract noshow">
	<td><b>Abstract</b>: The terminations of buried surfaces of two different cavity types (nano- and microcavities) produced in the same He+-H+ co-implanted p-type Si (100) sample annealed at 900 degrees C, are studied and characterized by positron annihilation spectroscopy. The characterization was carried out by means of three complementary positron techniques: Doppler broadening and coincidence-Doppler broadening spectroscopy with a continuous slow positron beam, and lifetime spectroscopy with a pulsed slow positron beam. It was found that the nanocavities have a pristine surface of Si, while the surfaces of the microcavities, formed below protruding blisters, are oxygen decorated. This case study opens the interesting use of the positron spectroscopy tool in the topical subject of empty space for microelectronics applications.</td>
</tr>
<tr id="bib_Brusa2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Brusa2006,
	  author = {Brusa, R.S. and Macchi, C. and Mariazzi, S. and Karwasz, G.P. and Egger, W. and Sperr, P. and Kögel, G.},
	  title = {Decoration of buried surfaces in Si detected by positron annihilation spectroscopy},
	  journal = {Applied Physics Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2006},
	  volume = {88},
	  number = {1},
	  pages = {011920},
	  url = {http://scitation.aip.org/content/aip/journal/apl/88/1/10.1063/1.2162691},
	  doi = {https://doi.org/10.1063/1.2162691}
	}
	</pre></td>
</tr>






<tr id="Egger2006" class="entry">

<td>
<em> <a href="https://doi.org/10.3139/146.101394">Analysis of defect configurations with positron lifetime measurements by pulsed low energy beams</a></em><br />
W. Egger, G. Kögel, P. Sperr and H.-J. Gudladt; International Journal of Materials Research
<b> 97</b>
 (12)
 (2006)
 1633-1641.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2006','bibtex')">BibTeX</a>]
[<a href="http://www.hanser-elibrary.com/doi/abs/10.3139/146.101394">URL</a>]
[<a href="https://doi.org/10.3139/146.101394">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2006" class="abstract noshow">
	<td><b>Abstract</b>: To understand the damage behavior of mechanically deformed metallic materials in more detail, the kind of defect and its concentration have to be known. In addition, the kinetics of decomposition and of precipitation hardening are influenced by the presence of defects and the corresponding concentration. Consequently, an analysis of dominating defects would be helpful. Compared with well known techniques, positron annihilation spectroscopy offers the opportunity for lifetime measurements that are characteristic for special kinds of defects, e. g. dislocations, small vacancy clusters and micro-voids. To detect the spatial distribution and to determine the concentration of defects, the low energy pulsed positron beam technique can be used. This technique, in combination with the scanning positron microscope, opens a broad field of applications for defect analysis in metallic and ceramic materials.</td>
</tr>
<tr id="bib_Egger2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2006,
	  author = {Egger, W. and Kögel, G. and Sperr, P. and Gudladt, H.-J.},
	  title = {Analysis of defect configurations with positron lifetime measurements by pulsed low energy beams},
	  journal = {International Journal of Materials Research},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2006},
	  volume = {97},
	  number = {12},
	  pages = {1633-1641},
	  url = {http://www.hanser-elibrary.com/doi/abs/10.3139/146.101394},
	  doi = {https://doi.org/10.3139/146.101394}
	}
	</pre></td>
</tr>






<tr id="Haerting2006" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2005.08.068">Positron lifetime and microstructural characterisation of a-Si:H deposited by low temperature HW-CVD on paper substrates</a></em><br />
M. Härting, D. Britton, D. Knoesen and W. Egger; Applied Surface Science
<b> 252</b>
 (9)
 (2006)
 3188-3193.
<p class="infolinks">
[<a href="javascript:toggleInfo('Haerting2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Haerting2006','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433205012018">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2005.08.068">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Haerting2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Haerting2006" class="abstract noshow">
	<td><b>Abstract</b>: In thin film electronic applications, the limiting factor, in terms of cost and usability, is generally the substrate material. As a consequence, different materials are being investigated as potential lightweight, inexpensive and flexible substrates. In this respect, we have been the first research collaboration to produce silicon-based electronics on paper substrates. Here we present structural characterisation of hydrogenated amorphous silicon (a-Si:H) layers deposited on 80 g m-2 wood-free paper, with and without an intermediate metallic interlayer, using low temperature hot wire chemical vapour deposition (HW-CVD). Both pulsed positron beam profiling and X-ray diffraction studies indicate that the growth rate on the uncoated substrate is slightly higher than with prior metallization. There is no evidence of a crystalline phase or voids in the a-Si:H layers. The internal defect structure is similar, with a dominant dangling bond complex of similar size, which has a slightly longer lifetime than in layers grown at higher temperatures on conventional substrates.</td>
</tr>
<tr id="bib_Haerting2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Haerting2006,
	  author = {Härting, M. and Britton, D.T. and Knoesen, D. and Egger, W.},
	  title = {Positron lifetime and microstructural characterisation of a-Si:H deposited by low temperature HW-CVD on paper substrates},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2006},
	  volume = {252},
	  number = {9},
	  pages = {3188-3193},
	  note = {SLOPOS 10},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433205012018},
	  doi = {https://doi.org/10.1016/j.apsusc.2005.08.068}
	}
	</pre></td>
</tr>






<tr id="Harmatha2006" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.mejo.2005.04.059">Czochralski-grown nitrogen-doped silicon: Electrical properties of MOS structures; A positron annihilation study</a></em><br />
L. Harmatha, M. Ťapajna, V. Slugeň, P. Ballo, P. Písečný, J. Šik and G. Kögel; Microelectronics Journal
<b> 37</b>
 (4)
 (2006)
 283-289.
<p class="infolinks">
[<a href="javascript:toggleInfo('Harmatha2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Harmatha2006','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0026269205002387">URL</a>]
[<a href="https://doi.org/10.1016/j.mejo.2005.04.059">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/Harmatha2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Harmatha2006" class="abstract noshow">
	<td><b>Abstract</b>: Czochralski-grown nitrogen-doped (NCZ) silicon was studied using different methods. Measurements of interface traps density, effective generation lifetime and effective surface generation velocity were performed on selected Metal-Oxide-Semiconductor (MOS) structures. Application of the positron annihilation technique (PAS) - pulsed low energy positron system (PLEPS) - was focused on the detection of nitrogen-related defects in NCZ silicon in the near surface region. PAS - PLEPS technique gave relevant results on p-type NCZ silicon. Low sensitivity in the application to n-type NCZ silicon discriminates the PAS - PLEPS technique and should be alternated by other experimental technique. On the other hand, more pertinent measurement of generation lifetime was performed on MOS structures with n-type Si. Although the generation lifetime decreases in NCZ silicon, considerable lateral homogenization of the relaxation time was observed on the wafer.</td>
</tr>
<tr id="bib_Harmatha2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Harmatha2006,
	  author = {Harmatha, L. and Ťapajna, M. and Slugeň, V. and Ballo, P. and Písečný, P. and Šik, J. and Kögel, G.},
	  title = {Czochralski-grown nitrogen-doped silicon: Electrical properties of MOS structures; A positron annihilation study},
	  journal = {Microelectronics Journal},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2006},
	  volume = {37},
	  number = {4},
	  pages = {283--289},
	  url = {http://www.sciencedirect.com/science/article/pii/S0026269205002387},
	  doi = {https://doi.org/10.1016/j.mejo.2005.04.059}
	}
	</pre></td>
</tr>






<tr id="Kanzow2006" class="entry">

<td>
<em> <a href="http://onlinelibrary.wiley.com/doi/10.1002/3527607307.ch29/summary">Depth-Resolved Analysis of the Aging Behavior of Epoxy Thin Films by Positron Spectroscopy</a></em><br />
J. Kanzow, F. Faupel, W. Egger, P. Sperr, G. Kögel, C. Wehlack, A. Meiser and W. Possart;
In: W. Possart (Ed.),
<em> Adhesion: Current Research and Applications</em>

, Chapter 29
, p. 465-477
, Wiley-VCH
, 2006.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kanzow2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kanzow2006','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/3527607307.ch29/summary">URL</a>]
[<a href="https://doi.org/10.1002/3527607307.ch29">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kanzow2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kanzow2006" class="abstract noshow">
	<td><b>Abstract</b>: During recent decades positron annihilation spectroscopy has become a very powerful tool for the investigation of polymers. In particular, positron annihilation lifetime spectroscopy (PALS) yields valuable information about free volume and related properties. Moreover, special chemical information can be obtained. Now advances in positron beam technology also allow investigations of thin polymer films and surface regions. In this paper, we report the use, for the first time, of PALS to elucidate aging mechanisms in thin epoxy films, based on depth-resolved investigations of the epoxy films exposed to two different aging conditions. We also consider the results of IR external reflection absorption spectroscopy (IR-ERAS) and X-ray photoelectron spectroscopy (XPS) depth-profiling of the elemental composition. This additional information enables us to clarify structural modifications due to aging. Nitrogen depletion and a decrease in free volume were observed, especially in the near-surface region of the thin epoxy films.</td>
</tr>
<tr id="bib_Kanzow2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@incollection{Kanzow2006,
	  author = {Kanzow, J. and Faupel, F. and Egger, W. and Sperr, P. and Kögel, G. and Wehlack, C. and Meiser, A. and Possart, W.},
	  title = {Depth-Resolved Analysis of the Aging Behavior of Epoxy Thin Films by Positron Spectroscopy},
	  booktitle = {Adhesion: Current Research and Applications},
	  publisher = {Wiley-VCH},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2006},
	  pages = {465--477},
	  editor = {Wulff Possart},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/3527607307.ch29/summary},
	  doi = {https://doi.org/10.1002/3527607307.ch29}
	}
	</pre></td>
</tr>






<tr id="Koegel2006" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2005.08.048">Planned positron experiments at FRM-II</a></em><br />
G. Kögel and G. Dollinger; Applied Surface Science
<b> 252</b>
 (9)
 (2006)
 3111-3120.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel2006','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433205012158">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2005.08.048">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel2006" class="abstract noshow">
	<td><b>Abstract</b>: The new research reactor FRM-II near Munich has a strong positron source, which delivers an intense, nearly monoenergetic positron beam. Our positron systems, the pulsed low energy positron source (PLEPS) and the scanning positron microscope (SPM) will be operated at this beam. Some aspects of matching these systems to the new positron source will be discussed. Considerable improvements are expected, e.g. more than 105 s-1 recorded events at PLEPS and sub-micrometre resolution at SPM. They will enable investigations in so far inaccessible problems like the evaluation of annihilation characteristics and trapping constants of individual defects or studies of fast dynamical processes. In applied materials science complex defect structures will be studied which demand a resolution into many differing lifetimes, e.g. fractured specimens, wear, corrosion, etc. Also large series of measurements at small systematic modifications are planned. There is also the opportunity to analyse in addition the chemical microstructure of the specimens by means of a hydrogen microprobe and other ion beam techniques available close to FRM-II at the Technical University of Munich.</td>
</tr>
<tr id="bib_Koegel2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel2006,
	  author = {Kögel, G. and Dollinger, G.},
	  title = {Planned positron experiments at FRM-II},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Dollinger, Günther},
	  year = {2006},
	  volume = {252},
	  number = {9},
	  pages = {3111-3120},
	  editor = {Al-Qaradawi I.Y., Coleman P.G.},
	  note = {SLOPOS 10},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433205012158},
	  doi = {https://doi.org/10.1016/j.apsusc.2005.08.048}
	}
	</pre></td>
</tr>






<tr id="Slugen2006" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.apsusc.2005.08.071">Electrical properties of MOS structures on nitrogen-doped Czochralski-grown silicon: A positron annihilation study</a></em><br />
V. Slugeň, L. Harmatha, M. Ťapajna, P. Ballo, P. Písečný, J. Šik, G. Kögel and V. Kršjak; Applied Surface Science
<b> 252</b>
 (9)
 (2006)
 3201-3208.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2006','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2006','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433205012031">URL</a>]
[<a href="https://doi.org/10.1016/j.apsusc.2005.08.071">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2006.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2006" class="abstract noshow">
	<td><b>Abstract</b>: Measurements of interface trap density, effective generation lifetime (GL) and effective surface generation velocity have been performed using differen: methods on selected MOS structures prepared on nitrogen-doped Czochralski-grown (NCz) silicon. The application of the positron annihilation technique using a pulsed low energy positron system (PLEPS) focused on the detection of nitrogen-related defects in NCz silicon in the near surface region. In the case of p-type Cz silicon, all the results could be used for the testing of homogeneity. In n-type Cz silicon, positron annihilation was found insensitive to nitrogen doping.</td>
</tr>
<tr id="bib_Slugen2006" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2006,
	  author = {Slugeň, V. and Harmatha, L. and Ťapajna, M. and Ballo, P. and Písečný, P. and Šik, J. and Kögel, G. and Kršjak, V.},
	  title = {Electrical properties of MOS structures on nitrogen-doped Czochralski-grown silicon: A positron annihilation study},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2006},
	  volume = {252},
	  number = {9},
	  pages = {3201-3208},
	  note = {SLOPOS 10},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433205012031},
	  doi = {https://doi.org/10.1016/j.apsusc.2005.08.071}
	}
	</pre></td>
</tr>




<tr id="2005" class="entry"><td><h1>2005</h1></td></tr>

<tr id="Brusa2005" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.71.245320">Absence of positronium formation in clean buried nanocavities in p-type silicon</a></em><br />
R.S. Brusa, C. Macchi, S. Mariazzi, G.P. Karwasz, W. Egger, P. Sperr and G. Kögel; Physical Review B - Condensed Matter and Materials Physics
<b> 71</b>
 (24)
 (2005)
 245320.
<p class="infolinks">
[<a href="javascript:toggleInfo('Brusa2005','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Brusa2005','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.71.245320">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.71.245320">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Brusa2005.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Brusa2005" class="abstract noshow">
	<td><b>Abstract</b>: Buried nanocavities at about 350 nm depth in Si were produced by thermal treatment of He implanted p-type (100) Si. The internal surfaces of the nanocavities were found free of impurity decorations by examining the high-momentum part of the Doppler-broadened positron annihilation spectra. Positron lifetime measurements with a pulsed slow positron beam show neither a short lifetime (125-150 ps) ascribable to parapositronium nor a longer lifetime (2-4 ns) ascribable to pick-off annihilation of orthopositronium. The lifetime of positrons trapped into nanocavities was found to be about 500 ps. The absence of positronium formation could be explained by an insufficient electron density and a lack of electron states in the band gap at the nanocavities internal surfaces produced in the p-type silicon.</td>
</tr>
<tr id="bib_Brusa2005" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Brusa2005,
	  author = {Brusa, R. S. and Macchi, C. and Mariazzi, S. and Karwasz, G. P. and Egger, W. and Sperr, P. and Kögel, G.},
	  title = {Absence of positronium formation in clean buried nanocavities in p-type silicon},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2005},
	  volume = {71},
	  number = {24},
	  pages = {245320},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.71.245320},
	  doi = {https://doi.org/10.1103/PhysRevB.71.245320}
	}
	</pre></td>
</tr>






<tr id="Groeger2005" class="entry">

<td>
<em> Specific defects and thermomechanical properties of electrodeposited Cu foils</a></em><br />
V. Gröger, G. Khatabi, A. Kotas-Betzwar, P. Zimprich, B. Mikulowski, G. Boczkal, W. Egger, H.D. Merchant and B. Weiss; Archives of Metallurgy and Materials
<b> 50</b>
 (1)
 (2005)
 167-174.
<p class="infolinks">
[<a href="javascript:toggleInfo('Groeger2005','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Groeger2005','bibtex')">BibTeX</a>]
[<a href="http://www.imim.pl/archives/volume-50-issue-1-2005">URL</a>]

[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Groeger2005.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Groeger2005" class="abstract noshow">
	<td><b>Abstract</b>: Electrodeposition of copper foils is a commercially widely used technique whose potential for producing functionally graded materials by deliberate time variation of the deposition parameters has been shown. Due to the presence of superabundant vacancies (stabilized by hydrogen) structural instabilities are strongly enhanced. More detailed knowledge of microstructural details (especially defect changes during annealing and stability at elevated temperatures) is needed for a basic understanding. Electrical residual resistivity isochrones, positron annihilation, Young's modulus and linear thermal expansion of copper foils of 35 μm thickness of different grain size electrodeposited at commercially usual rates are investigated. For all samples structural changes have been observed during the measurements, the strongest influence seems to be due to the annealing out of single vacancies (presumably by releasing hydrogen) and to grain coarsening.</td>
</tr>
<tr id="bib_Groeger2005" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Groeger2005,
	  author = {Gröger, V. and Khatabi, G. and Kotas-Betzwar, A. and Zimprich, P. and Mikulowski, B. and Boczkal, G. and Egger, W. and Merchant, H. D. and Weiss, B.},
	  title = {Specific defects and thermomechanical properties of electrodeposited Cu foils},
	  journal = {Archives of Metallurgy and Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2005},
	  volume = {50},
	  number = {1},
	  pages = {167--174},
	  note = {Symposium on Texture and Microstructure Analysis of Functionally Graded Materials, Cracow, POLAND, OCT 03-07, 2004},
	  url = {http://www.imim.pl/archives/volume-50-issue-1-2005}
	}
	</pre></td>
</tr>




<tr id="2004" class="entry"><td><h1>2004</h1></td></tr>

<tr id="Algers2004" class="entry">

<td>
<em> <a href="https://doi.org/10.1021/ma0486086">Free volume determination of azobenzene-PMMA copolymer by a pulsed low-energy positron lifetime beam with in-situ UV illumination</a></em><br />
J. Algers, P. Sperr, W. Egger, L. Liszkay, G. Kögel, J. de Baerdemaeker and F.H.J. Maurer; Macromolecules
<b> 37</b>
 (21)
 (2004)
 8035-8042.
<p class="infolinks">
[<a href="javascript:toggleInfo('Algers2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Algers2004','bibtex')">BibTeX</a>]
[<a href="http://pubs.acs.org/doi/abs/10.1021/ma0486086">URL</a>]
[<a href="https://doi.org/10.1021/ma0486086">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Algers2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Algers2004" class="abstract noshow">
	<td><b>Abstract</b>: The free volume properties of a poly(methyl methacrylate)-azobenzene copolymer were for the first time directly probed by use of a low-energy positron lifetime beam with in-situ excitation capabilities, showing that the free volume cavity size was not appreciably influenced by photoisomerization and thermal isomerization in the temperature range 34-180°C. Isomerization is therefore suggested to occur without any molecular rearrangement of the glassy polymer matrix, which would also account for the lack of any shift to shorter wavelengths for the photoisomerization occurring in a glassy polymer in comparison to a chloroform solution. A decrease in the thermal isomerization rate at room temperature caused by the glassy polymer is explained in terms of a model in which only a fraction of the azobenzene is free to isomerize. The cis-azobenzene was found to be an efficient inhibitor of positronium formation, which enabled measurements of thermal isomerization rates and changes in the steady-state concentration of cis-azobenzene for an illuminated sample as a function of temperature.</td>
</tr>
<tr id="bib_Algers2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Algers2004,
	  author = {Algers, J. and Sperr, P. and Egger, W. and Liszkay, L. and Kögel, G. and de Baerdemaeker, J. and Maurer, F. H. J.},
	  title = {Free volume determination of azobenzene-PMMA copolymer by a pulsed low-energy positron lifetime beam with in-situ UV illumination},
	  journal = {Macromolecules},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {37},
	  number = {21},
	  pages = {8035-8042},
	  url = {http://pubs.acs.org/doi/abs/10.1021/ma0486086},
	  doi = {https://doi.org/10.1021/ma0486086}
	}
	</pre></td>
</tr>






<tr id="Algers2004a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.262">Thermal Isomerization of Azo-Benzene in PMMA Probed by a Pulsed Low-Energy Positron Beam</a></em><br />
J. Algers, V. Skeppstedt, P. Sperr, W. Egger and F.H.J. Maurer; Materials Science Forum
<b> 445-446</b>

 (2004)
 262-264.
<p class="infolinks">
[<a href="javascript:toggleInfo('Algers2004a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Algers2004a','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.445-446.262">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.262">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Algers2004a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Algers2004a" class="abstract noshow">
	<td><b>Abstract</b>: Polymers containing the Azo-benzene group have attracted attention due to anticipated uses such as materials for data storage, membranes with controllable permeability and materials with changeable solubility [1,2]. These expectations are due to the change in shape and dipole moment of the Azo-compound when excited by photo isomerization from the trans-state to the cis-state by UV light of ca 360 nm. Films of copolymers of poly-methyl methacrylate (PMMA) containing 8 wt-% Azo-benzene were photo isomerized with a UV lamp and then measured as a function of time in a low-energy positron beam. The observed changes in the lifetime parameters as a function of time were in agreement with the thermal isomerization (decay) of the cis-isomer as measured by conventional UV spectroscopy, The results show that positron lifetime spectra at low energy are sensitive for the cis-trans isomerization of the Azo-compound, suggesting trapping and annihilation of positrons at free volume sites around the Azo-benzene groups.</td>
</tr>
<tr id="bib_Algers2004a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Algers2004a,
	  author = {Algers, J. and Skeppstedt, V. and Sperr, P. and Egger, W. and Maurer, F. H. J.},
	  title = {Thermal Isomerization of Azo-Benzene in PMMA Probed by a Pulsed Low-Energy Positron Beam},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {262--264},
	  note = {ICPA 13},
	  url = {https://www.scientific.net/MSF.445-446.262},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.262}
	}
	</pre></td>
</tr>






<tr id="DeBaerdemaeker2004" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.69">Defect Characterization of the Structure-Growth Zone-Model for Sputter Deposited Cu Films</a></em><br />
J. De Baerdemaeker, C. Dauwe, D. Segers, C. Detavernier, D. Deduytsche, W. Egger and P. Sperr; Materials Science Forum
<b> 445-446</b>

 (2004)
 69-71.
<p class="infolinks">
[<a href="javascript:toggleInfo('DeBaerdemaeker2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('DeBaerdemaeker2004','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.69">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.69">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/DeBaerdemaeker2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_DeBaerdemaeker2004" class="abstract noshow">
	<td><b>Abstract</b>: The 'zone-model' for sputter deposited Cu films was analyzed by positron annihilation spectroscopy to give a valuable insight in the nature of the defects present in the different zones of the model. Both depth selective Doppler broadening and positron lifetime spectroscopy were applied using slow positron beams. Room temperature grain growth for films sputtered in the zoneT regime was also analyzed for the first time with positron annihilation spectroscopy.</td>
</tr>
<tr id="bib_DeBaerdemaeker2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{DeBaerdemaeker2004,
	  author = {De Baerdemaeker, J. and Dauwe, C. and Segers, D. and Detavernier, C. and Deduytsche, D. and Egger, W. and Sperr, P.},
	  title = {Defect Characterization of the Structure-Growth Zone-Model for Sputter Deposited Cu Films},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {69--71},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.69},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.69}
	}
	</pre></td>
</tr>






<tr id="Dupasquier2004" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.actamat.2004.07.004">Studies of light alloys by positron annihilation techniques</a></em><br />
A. Dupasquier, G. Kögel and A. Somoza; Acta Materialia
<b> 52</b>
 (16)
 (2004)
 4707-4726.
<p class="infolinks">
[<a href="javascript:toggleInfo('Dupasquier2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Dupasquier2004','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S1359645404004033">URL</a>]
[<a href="https://doi.org/10.1016/j.actamat.2004.07.004">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Dupasquier2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Dupasquier2004" class="abstract noshow">
	<td><b>Abstract</b>: The potential of positron annihilation spectroscopy (PAS) in the study of light alloys is illustrated with special regards to age-hardening, severe plastic deformation, fatigue and fracture in aluminium- and magnesium-based alloys. First, the physical grounds of PAS sensitivity to open-volume defects are explained. Then the main conventional variants of PAS, lifetime spectroscopy and Doppler-broadening spectroscopy, are introduced. State-of-the-art equipment, based on intense positron sources and energy-controlled beams, is also described, in view of applications where microscopic spatial resolution and sub-nanosecond time resolution are combined. Various examples of PAS studies in the field of light alloys, mainly based on the latest experience of the authors, are presented. It is shown how PAS detects structural changes in age-hardenable alloys, helps to describe the solute aggregation kinetics and gives information on vacancy-solute interactions. PAS characterisation of internal surfaces (misfit interfaces and grain boundaries) in terms of local structure (degree of disorder, chemistry) is also discussed. Lastly, recent advances in the study of fatigue by positron microscopy are reported.</td>
</tr>
<tr id="bib_Dupasquier2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Dupasquier2004,
	  author = {Dupasquier, A and Kögel, G and Somoza, A},
	  title = {Studies of light alloys by positron annihilation techniques},
	  journal = {Acta Materialia},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {52},
	  number = {16},
	  pages = {4707-4726},
	  url = {http://www.sciencedirect.com/science/article/pii/S1359645404004033},
	  doi = {https://doi.org/10.1016/j.actamat.2004.07.004}
	}
	</pre></td>
</tr>






<tr id="Egger2004" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.msea.2004.02.070">Measurements of defect structures of a cyclically deformed Al-Mg-Si alloy by positron annihilation techniques</a></em><br />
W. Egger, G. Kögel, P. Sperr, W. Triftshäuser, J. Bär, S. Rödling and H.-J. Gudladt; Materials Science and Engineering A
<b> 387-389</b>
 (1-2 SPEC. ISS.)
 (2004)
 317-320.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2004','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0921509304004563">URL</a>]
[<a href="https://doi.org/10.1016/j.msea.2004.02.070">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2004" class="abstract noshow">
	<td><b>Abstract</b>: Defect distributions close to cracks created by monotonic and fatigue tests in the Al-Mg-Si alloy Al 6013 have been investigated by positron lifetime studies. The defect structure close to the crack surface was studied at sub-mum resolution with a pulsed positron beam, whereas the lateral defect distribution in the crack-tip near region was determined using a scanning positron microscope with a few mum resolution. A high concentration of large vacancy clusters of up to 30 vacancies and voids close to the fatigue crack, as well as a high dislocation density in a region with an extension of similar to100 mum around the crack tip, were detected in the fatigued samples. Moreover, the generation of vacancy clusters found in the fatigued samples seems to be independent of the loading history. In monotonically fractured samples, no vacancy clusters have been found. If this difference holds as a general rule, positron lifetime spectroscopy would be suitable to distinguish quantitatively monotonic front fatigue fracture without any further fractographic studies.</td>
</tr>
<tr id="bib_Egger2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2004,
	  author = {Egger, W. and Kögel, G. and Sperr, P. and Triftshäuser, W. and Bär, J. and Rödling, S. and Gudladt, H.-J.},
	  title = {Measurements of defect structures of a cyclically deformed Al-Mg-Si alloy by positron annihilation techniques},
	  journal = {Materials Science and Engineering A},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {387-389},
	  number = {1-2 SPEC. ISS.},
	  pages = {317--320},
	  note = {13th International Conference on Strength of Materials (ICSMA 13), Budapest, HUNGARY, AUG, 2003},
	  url = {http://www.sciencedirect.com/science/article/pii/S0921509304004563},
	  doi = {https://doi.org/10.1016/j.msea.2004.02.070}
	}
	</pre></td>
</tr>






<tr id="Faupel2004" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.219">Positron Annihilation Spectroscopy in Polymers</a></em><br />
F. Faupel, J. Kanzow, K. Gunther-Schade, C. Nagel, P. Sperr and G. Kögel; Materials Science Forum
<b> 445-446</b>

 (2004)
 219-223.
<p class="infolinks">
[<a href="javascript:toggleInfo('Faupel2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Faupel2004','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.219">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.219">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Faupel2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Faupel2004" class="abstract noshow">
	<td><b>Abstract</b>: During the last decades positron annihilation has become a very powerful tool for the investigation of polymers. In particular, positron annihilation lifetime spectroscopy (PALS) yields valuable information on free volume and other properties. The present invited paper gives examples from recent research of the Kiel group. Generally, the so-called standard model, developed by Tao and Eldrup, is used to determine the size of free volume holes from the ortho-positronium (o-Ps) lifetime tau(oPs). Despite its success, the model resorts to several assumptions, including a spherical hole shape. Although the deviations from spherical shape are significant for holes above the size of positronium, average hole sizes V(h), determined by the standard model from T,p, show a good correlation with diffusivities D of inert gas molecules when plotted as 1/V(h) vs logD, as predicted by the free volume approach. The correlation can further be improved by taking into account the cohesive energy density of the polymers. The o-Ps intensity I(o-Ps) is often taken as a measure of the hole density. However, I(o-Ps) is also affected by the Ps formation probability and drops during mechanical milling of polymers due to formation of free radicals by chain scission, for instance. I(o-Ps), is also seen to change during phase separation in polymer blends. This can be explored to detect both, the binodal and the spinodal decomposition, already at the initial stage which is not easily accessible by other techniques. PALS was also used to study thermosets. Here we show in-situ results on the cross-linking of an epoxy resin. Finally, we demonstrate the benefits of the positron beam technique which allows investigations of polymer thin films and surfaces. For example, very recent results, obtained at the positron beam in Munich, on the structure and dynamics of epoxy films as function of film thickness will be presented.</td>
</tr>
<tr id="bib_Faupel2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Faupel2004,
	  author = {Faupel, F. and Kanzow, J. and Gunther-Schade, K. and Nagel, C. and Sperr, P. and Kögel, G.},
	  title = {Positron Annihilation Spectroscopy in Polymers},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {219--223},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.219},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.219}
	}
	</pre></td>
</tr>






<tr id="Gordo2004" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.93">Comparison of Vacancy Creation by Nuclear and Electronic Processes in Silicon Irradiated with Swift Kr and Bi Ions</a></em><br />
P.M. Gordo, L. Liszkay, K. Havancsák, V.A. Skuratov, P. Sperr, W. Egger, C. Lopes Gil, A.P. de Lima and Z. Kajcsos; Materials Science Forum
<b> 445-446</b>

 (2004)
 93-95.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gordo2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gordo2004','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.93">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.93">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gordo2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gordo2004" class="abstract noshow">
	<td><b>Abstract</b>: Silicon samples, irradiated with swift Kr (245 MeV) and Bi (710 MeV) ions at room temperature, were investigated using a continuous and a pulsed positron beam and conventional Doppler broadening and lifetime spectroscopy. In the fluence and depth ranges studied, creation of large voids and amorphization was not observed. The dominant defects were found to be divacancies, present from the near surface region all along the ion tracks. We found that the formation of divacancies from ion-induced vacancies as predicted by Monte-Carlo-calculations is higher in the case of the heavier Bi ion.</td>
</tr>
<tr id="bib_Gordo2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gordo2004,
	  author = {Gordo, P. M. and Liszkay, L. and Havancsák, K. and Skuratov, V. A. and Sperr, P. and Egger, W. and Lopes Gil, C. and de Lima, A. P. and Kajcsos, Z.},
	  title = {Comparison of Vacancy Creation by Nuclear and Electronic Processes in Silicon Irradiated with Swift Kr and Bi Ions},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {93--95},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.93},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.93}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2004" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.480">NEPOMUC - the New Positron Beam Facility at FRM II</a></em><br />
C. Hugenschmidt, G. Kögel, R. Repper, K. Schreckenbach, P. Sperr, B. Straßer and W. Triftshäuser; Materials Science Forum
<b> 445-446</b>

 (2004)
 480-482.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2004','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.480">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.480">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2004" class="abstract noshow">
	<td><b>Abstract</b>: An in-pile positron source is installed in the vicinity of the reactor core of the new research reactor FRM-II. This neutron induced positron source at Munich NEPOMUC is based on absorption of high-energy prompt gamma-rays from thermal neutron capture in (113)Cd. For this purpose, a cadmium cap is placed inside the tip of the inclined beam tube SR 11 in the heavy water moderator tank. Inside the cadmium cap a structure of platinum foils is placed in order to convert the high-energy gamma-radiation into positron-electron pairs. Due to the negative positron work function, moderation in annealed platinum leads to emission of monoenergetic positrons. After acceleration to several keV by electrical lenses the positron beam is magnetically guided in a solenoid field of 7.5 mT. The beam profile is determined with a micro-channel plate (MCP) detector at the end of the beam line. In addition, a NaI-scintillator detects the 511 keV gamma-radiation of the positrons which annihilate at the front side of the MCP in order to perform intensity measurements as a function of acceleration energy and magnetic guide field.</td>
</tr>
<tr id="bib_Hugenschmidt2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2004,
	  author = {Hugenschmidt, C. and Kögel, G. and Repper, R. and Schreckenbach, K. and Sperr, P. and Straßer, B. and Triftshäuser, W.},
	  title = {NEPOMUC - the New Positron Beam Facility at FRM II},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {480--482},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.480},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.480}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2004a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.nimb.2004.03.048">The neutron induced positron source at Munich - NEPOMUC</a></em><br />
C. Hugenschmidt, G. Kögel, R. Repper, K. Schreckenbach, P. Sperr, B. Straßer and W. Triftshäuser; Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms
<b> 221</b>
 (1-4)
 (2004)
 160-164.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2004a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2004a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168583X04003842">URL</a>]
[<a href="https://doi.org/10.1016/j.nimb.2004.03.048">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2004a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2004a" class="abstract noshow">
	<td><b>Abstract</b>: Monoenergetic positron beams of high intensity are of major interest in atomic and particle physics as well as in material science. The intensity of conventional positron beams using beta(+) sources amounts typically to 10(6) positrons per second. Therefore, great efforts are undertaken to generate positrons by pair production using bright gamma-sources, i.e. bremsstrahlung in a target at linear accelerators, gamma-radiation from the nuclear fission or high-energy prompt gamma-rays after thermal neutron capture. The NEutron induced POsitron source at MUniCh, NEPOMUC, is installed at the new research reactor FRM II. The world's highest positron intensity of up to 10(10) positrons per second is expected at this novel user dedicated positron beam facility. Since the final license for reactor operation was granted in May 2003 positrons will presently be available at FRM II. In this work, a brief overview of positron beams is given and the status of the positron project NEPOMUC as well as the linked experiments is reported.</td>
</tr>
<tr id="bib_Hugenschmidt2004a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2004a,
	  author = {Hugenschmidt, C. and Kögel, G. and Repper, R. and Schreckenbach, K. and Sperr, P. and Straßer, B. and Triftshäuser, W.},
	  title = {The neutron induced positron source at Munich - NEPOMUC},
	  journal = {Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {221},
	  number = {1-4},
	  pages = {160--164},
	  note = {12th International Workshop on Positron and Positronium Physics (POSITRON03), Aarhus Univ, Inst Phys &amp; Astron, Sandbjerg, DENMARK, JUL 19-21, 2003},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168583X04003842},
	  doi = {https://doi.org/10.1016/j.nimb.2004.03.048}
	}
	</pre></td>
</tr>






<tr id="Koegel2004" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.126">Investigation of Fatigue Cracks in an Al-Based Alloy by Means of Pulsed Positron (Micro-)Beams</a></em><br />
G. Kögel, W. Egger, S. Rödling and H.-J. Gudladt; Materials Science Forum
<b> 445-446</b>

 (2004)
 126-128.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel2004','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.126">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.126">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel2004" class="abstract noshow">
	<td><b>Abstract</b>: Positron lifetime studies have been undertaken with the Munich pulsed beam and the scanning positron microscope to investigate areas close to fatigue cracks of a precipitation-hardened AlMgSi (6013) alloy. These cracks were initiated by cyclic loading under full automatic stress and crack length control. Close to the surface of fatigue cracks, always three lifetimes of about 245 ps, 300 - 500 ps and 1200 - 2500 ps are observed which are attributed to annihilations at dislocations, vacancy clusters and voids. These defects are believed to indicate remnants of dislocation interactions within the cyclic plastic zone in front of the fatigue crack tip.</td>
</tr>
<tr id="bib_Koegel2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel2004,
	  author = {Kögel, G. and Egger, W. and Rödling, S. and Gudladt, H.-J.},
	  title = {Investigation of Fatigue Cracks in an Al-Based Alloy by Means of Pulsed Positron (Micro-)Beams},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {126--128},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.126},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.126}
	}
	</pre></td>
</tr>






<tr id="Laakso2004" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.jcrysgro.2004.02.032">Vacancy defects in epitaxial InN: Identification and electrical properties</a></em><br />
A. Laakso, J. Oila, A. Kemppinen, K. Saarinen, W. Egger, L. Liszkay, P. Sperr, H. Lu and W.J. Schaff; Journal of Crystal Growth
<b> 269</b>
 (1)
 (2004)
 41-49.
<p class="infolinks">
[<a href="javascript:toggleInfo('Laakso2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Laakso2004','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0022024804001800">URL</a>]
[<a href="https://doi.org/10.1016/j.jcrysgro.2004.02.032">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Laakso2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Laakso2004" class="abstract noshow">
	<td><b>Abstract</b>: We have used a low-energy positron beam to identify and quantify the dominant vacancy defects in InN layers grown on Al2O3 by molecular beam epitaxy. By applying both continuous and pulsed positron beams, we can show that In vacancies are formed during the crystal growth. Their concentration decreases from similar to 5 x 10(18); to below loll cm(-3) with increasing layer thickness (120-800 nm). The In vacancy concentration correlates with the free electron concentration and decreases with increasing electron Hall mobility. These results suggest that In vacancies act as both compensating defects and electron scattering centers in InN films.</td>
</tr>
<tr id="bib_Laakso2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Laakso2004,
	  author = {Laakso, A. and Oila, J. and Kemppinen, A. and Saarinen, K. and Egger, W. and Liszkay, L. and Sperr, P. and Lu, H. and Schaff, W. J.},
	  title = {Vacancy defects in epitaxial InN: Identification and electrical properties},
	  journal = {Journal of Crystal Growth},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {269},
	  number = {1},
	  pages = {41--49},
	  note = {1st International Workshop on Indium Nitride, Fremantle, AUSTRALIA, NOV 16-20, 2003},
	  url = {http://www.sciencedirect.com/science/article/pii/S0022024804001800},
	  doi = {https://doi.org/10.1016/j.jcrysgro.2004.02.032}
	}
	</pre></td>
</tr>






<tr id="Liszkay2004" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.492">Positron Beam Splitter at the High Intensity Positron Beam in Munich</a></em><br />
L. Liszkay, G. Kögel, P. Sperr, W. Egger, C. Hugenschmidt and W. Triftshäuser; Materials Science Forum
<b> 445-446</b>

 (2004)
 492-494.
<p class="infolinks">
[<a href="javascript:toggleInfo('Liszkay2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Liszkay2004','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.492">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.492">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Liszkay2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Liszkay2004" class="abstract noshow">
	<td><b>Abstract</b>: The high intensity positron source at the new research reactor FRM-II in Munich will be used to serve three instruments simultaneously: a scanning positron microscope, a pulsed positron beam and a system for positron induced Auger electron spectroscopy. In order to split the continuous beam into three parts with variable intensity, a beam splitter is being built. The device consists of an electrostatic optical system embedded in the constant magnetic guiding field of the beam line. In the first stage an electrostatic quadrupole is used to change the cross section of the beam into an ellipse. The resulting beam is then split into three parts by two pairs of deflection plates. The central part is transported to the microscope without deflection. The beam intensities can be varied by mechanical movement of the plates. At the exit port of the beam splitter the guiding magnetic field is split into three beamlines with the help of a magnetic shield made of mumetal.</td>
</tr>
<tr id="bib_Liszkay2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Liszkay2004,
	  author = {Liszkay, L. and Kögel, G. and Sperr, P. and Egger, W. and Hugenschmidt, C. and Triftshäuser, W.},
	  title = {Positron Beam Splitter at the High Intensity Positron Beam in Munich},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {492--494},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.492},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.492}
	}
	</pre></td>
</tr>






<tr id="Oila2004" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.1651327">Influence of layer thickness on the formation of in vacancies in InN grown by molecular beam epitaxy</a></em><br />
J. Oila, A. Kemppinen, A. Laakso, K. Saarinen, W. Egger, L. Liszkay, P. Sperr, H. Lu and W.J. Schaff; Applied Physics Letters
<b> 84</b>
 (9)
 (2004)
 1486-1488.
<p class="infolinks">
[<a href="javascript:toggleInfo('Oila2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Oila2004','bibtex')">BibTeX</a>]
[<a href="http://scitation.aip.org/content/aip/journal/apl/84/9/10.1063/1.1651327">URL</a>]
[<a href="https://doi.org/10.1063/1.1651327">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Oila2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Oila2004" class="abstract noshow">
	<td><b>Abstract</b>: We have used a low-energy positron beam to identify In vacancies in InN layers grown on Al2O3 by molecular beam epitaxy. Their concentration decreases from similar to5x10(18) to below 10(16) cm(-3) with increasing layer thickness (120-800 nm). The decrease in the vacancy concentration coincides with the increase in the electron Hall mobility, suggesting that In vacancies act as electron scattering centers.</td>
</tr>
<tr id="bib_Oila2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Oila2004,
	  author = {Oila, J. and Kemppinen, A. and Laakso, A. and Saarinen, K. and Egger, W. and Liszkay, L. and Sperr, P. and Lu, H. and Schaff, W. J.},
	  title = {Influence of layer thickness on the formation of in vacancies in InN grown by molecular beam epitaxy},
	  journal = {Applied Physics Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {84},
	  number = {9},
	  pages = {1486-1488},
	  url = {http://scitation.aip.org/content/aip/journal/apl/84/9/10.1063/1.1651327},
	  doi = {https://doi.org/10.1063/1.1651327}
	}
	</pre></td>
</tr>






<tr id="Osiele2004" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.jnoncrysol.2004.03.053">Defect structural characterization of organic polymer layers</a></em><br />
O. Osiele, D. Britton, M. Härting, P. Sperr, M. Topic, S. Shaheen and H. Branz; Journal of Non-Crystalline Solids
<b> 338-340</b>
 (1 SPEC. ISS.)
 (2004)
 612-616.
<p class="infolinks">
[<a href="javascript:toggleInfo('Osiele2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Osiele2004','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0022309304002224">URL</a>]
[<a href="https://doi.org/10.1016/j.jnoncrysol.2004.03.053">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Osiele2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Osiele2004" class="abstract noshow">
	<td><b>Abstract</b>: In this paper, we study the effect of blending the conducting polymers, P3HT with the fullerene complex PCBM on its structural and defect characteristics. The films were deposited on glass substrates by spin casting, and were characterized with positron annihilation, microscopy and other techniques with regard to thickness, and structural homogeneity. The unblended polymers have positron annihilation characteristics similar to most non-polar polymers, exhibiting a relatively broad electron momentum distribution, a long-lived ( > 1 ns) positron state corresponding to the formation of orthopositronium, and strong-localization of the positron. Blending with PCBM causes the sample electron momentum distribution to narrow, and results in a single state with a lifetime of around 370 ps in both polymer mixtures. We postulate that this state corresponds to annihilation with low-momentum electrons in the fullerene cage.</td>
</tr>
<tr id="bib_Osiele2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Osiele2004,
	  author = {Osiele, O.M. and Britton, D.T. and Härting, M. and Sperr, P. and Topic, M. and Shaheen, S.E. and Branz, H.M.},
	  title = {Defect structural characterization of organic polymer layers},
	  journal = {Journal of Non-Crystalline Solids},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {338-340},
	  number = {1 SPEC. ISS.},
	  pages = {612--616},
	  note = {20th International Conference on Amorphous and Microcrystalline Semiconductors, Campos do Jordao, BRAZIL, AUG 25-29, 2003},
	  url = {http://www.sciencedirect.com/science/article/pii/S0022309304002224},
	  doi = {https://doi.org/10.1016/j.jnoncrysol.2004.03.053}
	}
	</pre></td>
</tr>






<tr id="Osiele2004a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.337">Positron Annihilation Characteristics of Polymer Films for Photovoltaic Applications</a></em><br />
O. Osiele, D. Britton, M. Härting, P. Sperr, M. Topic, S. Shaheen and H. Branz; Materials Science Forum
<b> 445-446</b>

 (2004)
 337-339.
<p class="infolinks">
[<a href="javascript:toggleInfo('Osiele2004a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Osiele2004a','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.337">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.337">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Osiele2004a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Osiele2004a" class="abstract noshow">
	<td><b>Abstract</b>: In this paper we study the effect of combining the conducting polymers, P3HT and OC(1)C(10)-PPV with the fullerene complex PCBM, on its positron annihilation characteristics. The films were deposited on glass substrates by spin casting, and were also characterised with scanning electron microscopy with regard to thickness, and structural homogeneity. Both pure polymers have positron annihilation characteristics similar to most non-polar polymers, exhibiting a relatively broad electron momentum distribution, a long-lived (>1 ns) positron state corresponding to the formation of ortho-positronium, and strong-localisation of the positron. Mixing with PCBM causes the sampled electron momentum distribution to narrow, and results in a single annihilation state with a lifetime of around 370 ps in both polymer mixtures. We postulate that this state corresponds to annihilation with the low-momentum electrons in the fullerene cage.</td>
</tr>
<tr id="bib_Osiele2004a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Osiele2004a,
	  author = {Osiele, O.M. and Britton, D.T. and Härting, M. and Sperr, P. and Topic, M. and Shaheen, S.E. and Branz, H.M.},
	  title = {Positron Annihilation Characteristics of Polymer Films for Photovoltaic Applications},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {337--339},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.337},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.337}
	}
	</pre></td>
</tr>






<tr id="Slugen2004" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/j.fusengdes.2003.10.002">Positron annihilation Investigations of defects in copper alloys selected for nuclear fusion technology</a></em><br />
V. Slugeň, J. Kuriplach, P. Ballo, P. Domonkos, G. Kögel, P. Sperr, W. Egger, W. Triftshäuser, V.M. Domankova, P. Kovac, I. Vavra, S. Stancek, M. Petriska and A. Zeman; Fusion Engineering and Design
<b> 70</b>
 (2)
 (2004)
 141-153.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2004','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0920379603004691">URL</a>]
[<a href="https://doi.org/10.1016/j.fusengdes.2003.10.002">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2004" class="abstract noshow">
	<td><b>Abstract</b>: A positron annihilation spectroscopy (PAS) based on positron lifetime measurements, using the pulsed low energy positron system (PLEPS), is used to investigate defects create by hydrogen implantation and thermal treat of copper alloys. These alloys are designated for the use in the international thermonuclear experimental reactor (ITER). The results show that the changes in the microstructure of selected copper alloys (CuCrZr, CuAl25) depend strongly on the preparing technology of alloys as well as on the implantation dose experimentally simulating the neutron treatment. The full recovering of the structure after isochronal annealing in vacuum is observed in all implanted specimens at the temperature of 450 °C. Using the PLEPS technique, for the first time, depth profiling of the positron lifetime spectra in the near-surface region (20-500 nm) of hydrogen implanted copper alloys was performed and compared with the TRIM calculations and transmission electron microscopy (TEM) studies. Possible annihilation channels in CuCrZr and CuAl25 materials are discussed in details together with corresponding annihilation characteristics determined theoretically and using computer simulations. We discuss the results of positron lifetime measurements of the irradiated and non-irradiated CuZrCr and CuAl25 specimens. We identified the most probable types of positron trapping sites. Finally, the results are discussed in terms of microstructural changes of the studied materials upon irradiation and subsequent heat treatment.</td>
</tr>
<tr id="bib_Slugen2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2004,
	  author = {Slugeň, V. and Kuriplach, J. and Ballo, P. and Domonkos, P. and Kögel, G. and Sperr, P. and Egger, W. and Triftshäuser, W. and Domankova, V. M. and Kovac, P. and Vavra, I. and Stancek, S. and Petriska, M. and Zeman, A.},
	  title = {Positron annihilation Investigations of defects in copper alloys selected for nuclear fusion technology},
	  journal = {Fusion Engineering and Design},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {70},
	  number = {2},
	  pages = {141--153},
	  url = {http://www.sciencedirect.com/science/article/pii/S0920379603004691},
	  doi = {https://doi.org/10.1016/j.fusengdes.2003.10.002}
	}
	</pre></td>
</tr>






<tr id="Slugen2004a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.183">Investigation of Defects in Copper Alloys Selected for Nuclear Fusion Technology</a></em><br />
V. Slugeň, G. Kögel, J. Kuriplach, P. Ballo, P. Sperr, W. Egger, W. Triftshäuser, P. Domonkos, M. Petriska and A. Zeman; Materials Science Forum
<b> 445-446</b>

 (2004)
 183-185.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2004a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2004a','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.445-446.183">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.183">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2004a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2004a" class="abstract noshow">
	<td><b>Abstract</b>: Positron lifetime measurements using a Pulsed Low Energy Positron System (PLEPS) were applied to the investigation of defects in hydrogen implanted and subsequently thermally treated copper alloys which are designated for the use in the International Thermonuclear Experimental Reactor (ITER). PLEPS results showed that the changes in the microstructure of selected copper-alloys (CuCrZr, CuAl25) depend strongly on the preparing technology of alloys and on the implantation dose. The full recovery of the structure after isochronal annealing in vacuum in a region of 100-600 °C was observed in all implanted specimens at a level of about 450 °C. With the PLEPS technique, for the first time, depth profiling of the near-surface region (20-500 nm) of hydrogen implanted copper alloys was performed and compared with the transmission electron microscopy (TEM) studies.</td>
</tr>
<tr id="bib_Slugen2004a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2004a,
	  author = {Slugeň, V. and Kögel, G. and Kuriplach, J. and Ballo, P. and Sperr, P. and Egger, W. and Triftshäuser, W. and Domonkos, P. and Petriska, M. and Zeman, A.},
	  title = {Investigation of Defects in Copper Alloys Selected for Nuclear Fusion Technology},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {183--185},
	  note = {ICPA 13},
	  url = {https://www.scientific.net/MSF.445-446.183},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.183}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser2004" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.452">Positron Microprobes</a></em><br />
W. Triftshäuser; Materials Science Forum
<b> 445-446</b>

 (2004)
 452-456.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser2004','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser2004','bibtex')">BibTeX</a>]
[<a href="http://www.scientific.net/MSF.445-446.452">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.445-446.452">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser2004.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser2004" class="abstract noshow">
	<td><b>Abstract</b>: The history of the concept and the attempts for the realisation of a positron microprobe as well as the present state of development will be reviewed and evaluated. The principle and the design of a scanning positron microscope (SPM), built and operated at our university in Munich, will be presented. A pulsed positron beam, with a variable energy from 0.5 to 20 keV and a final spot diameter of currently 2 mum, can be electronically scanned over an area of 0.6 mm x 0.6 mm. In this way, microscopic regions of 2 mum x 2 mum x 0.1 mum can be evaluated. This beam is formed after a double-stage moderation of positrons emitted from a radioactive isotope acting as primary positron source. In the first stage, the beam spot of about 3 nun is reduced to a diameter of less than 20 mum. After the second moderation stage, this diameter is then further reduced to 2 mum. This is possible, due to the special properties of the magnetic lenses used in the design. In order to enable positron lifetime measurements, the positron beam is pulsed (time interval 20 ns). This feature makes this SPM the first and up to now only system worldwide. Included in the system is a conventional scanning electron microprobe for surface analysis and for the selection of interesting regions. Three-dimensional positron lifetime spectra of mechanically damaged and fatigued specimens will be presented. The real potential power of the SPM will be achieved when the intense reactor-based positron source at the new Munich research reactor FRM-II can be used, which will be possible now in the very near future.</td>
</tr>
<tr id="bib_Triftshaeuser2004" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser2004,
	  author = {Triftshäuser, W.},
	  title = {Positron Microprobes},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2004},
	  volume = {445-446},
	  pages = {452--456},
	  note = {ICPA 13},
	  url = {http://www.scientific.net/MSF.445-446.452},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.445-446.452}
	}
	</pre></td>
</tr>




<tr id="2003" class="entry"><td><h1>2003</h1></td></tr>

<tr id="Algers2003" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.67.125404">Median implantation depth and implantation profile of 3-18 keV positrons in amorphous polymers</a></em><br />
J. Algers, P. Sperr, W. Egger, G. Kögel and F. Maurer; Physical Review B - Condensed Matter and Materials Physics
<b> 67</b>
 (12)
 (2003)
 1254041-1254047.
<p class="infolinks">
[<a href="javascript:toggleInfo('Algers2003','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Algers2003','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.67.125404">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.67.125404">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Algers2003.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Algers2003" class="abstract noshow">
	<td><b>Abstract</b>: Most applications of positron beams require knowledge of the implantation characteristics for an appropriate interpretation of the experimental data. In this work, the median implantation depth as a function of implantation energy, z1/2(E), of 3-18 keV positrons and their implantation profile P(z, E) in a total of 13 thin films of atactic polystyrene, poly(styrene-co-acrylonitrile), and polymethylmethacrylate spin coated onto a silicon substrate were determined from positron lifetime measurements using a pulsed, low-energy positron beam. z1/2(E) and P(z,E) were determined from the measurement of the ortho-positronium yield obtained from the intensity I3 of the long lifetime, z1/2(E) was parametrized with the commonly used power-law fit z1/2(E) = (A/ρ)En, with ρ and E in units of g cm-3 and keV, respectively, yielding A = 2.81(± 0.2) μg cm-2 and n = 1.71(± 0.05). Excellent agreement between amorphous polymer and literature data on A1 and Cu suggests that the median implantation depth of positrons for low- to medium-Z materials in the studied energy range is independent of structure and only a function of mass density. Fitting of the Makhovian implantation profile to the experimental data suggested that the value of the parameter m varies between 1.7 and 2.3, systematically increasing with z at constant implantation energy, but is independent of the implantation energy. Using an equation proposed by Baker et al., the experimental data of 12 of the 13 studied polymer films could be described with a slightly better agreement than the Makhovian equation.</td>
</tr>
<tr id="bib_Algers2003" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Algers2003,
	  author = {Algers, J. and Sperr, P. and Egger, W. and Kögel, G. and Maurer, F.H.J.},
	  title = {Median implantation depth and implantation profile of 3-18 keV positrons in amorphous polymers},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2003},
	  volume = {67},
	  number = {12},
	  pages = {1254041--1254047},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.67.125404},
	  doi = {https://doi.org/10.1103/PhysRevB.67.125404}
	}
	</pre></td>
</tr>






<tr id="Egger2003" class="entry">

<td>
<em> <a href="https://doi.org/10.3139/146.030687">Fatigue and fracture-induced defect structures of metals investigated by positron microscopy</a></em><br />
W. Egger, G. Kögel, P. Sperr, W. Triftshäuser, J. Bär, S. Rödling and H.-J. Gudladt; Zeitschrift fuer Metallkunde/Materials Research and Advanced Techniques
<b> 94</b>
 (6)
 (2003)
 687-693.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2003','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2003','bibtex')">BibTeX</a>]
[<a href="http://www.hanser-elibrary.com/doi/abs/10.3139/146.030687">URL</a>]
[<a href="https://doi.org/10.3139/146.030687">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2003.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2003" class="abstract noshow">
	<td><b>Abstract</b>: Defect distributions close to cracks from monotonic and fatigue fractures have been investigated for the first time by positron lifetime studies. The positron beams probe either the depth profile of defects at sub-μm resolution or the lateral distribution of defects at a few μm spatial resolution. Both in pure Cu and in the precipitation-hardened alloy Al 6013, in addition to dislocations, large clusters of up to 30 vacancies were detected close to a fatigue crack exclusively, whereas at monotonic fractures only the annihilation characteristics of dislocations were observed. If this characteristic difference holds as a general rule, then positron lifetime microscopy will provide a simple, quantitative method to distinguish a posteriori monotonic fractures from fatigue fractures without any further fractographic studies.</td>
</tr>
<tr id="bib_Egger2003" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2003,
	  author = {Egger, W. and Kögel, G. and Sperr, P. and Triftshäuser, W. and Bär, J. and Rödling, S. and Gudladt, H.-J.},
	  title = {Fatigue and fracture-induced defect structures of metals investigated by positron microscopy},
	  journal = {Zeitschrift fuer Metallkunde/Materials Research and Advanced Techniques},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2003},
	  volume = {94},
	  number = {6},
	  pages = {687--693},
	  url = {http://www.hanser-elibrary.com/doi/abs/10.3139/146.030687},
	  doi = {https://doi.org/10.3139/146.030687}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2003" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0969-806X(03)00197-X">Positron source based on neutron capture</a></em><br />
C. Hugenschmidt, G. Kögel, R. Repper, K. Schreckenbach, P. Sperr and W. Triftshäuser; Radiation Physics and Chemistry
<b> 68</b>
 (3-4)
 (2003)
 669-671.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2003','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2003','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0969806X0300197X">URL</a>]
[<a href="https://doi.org/10.1016/S0969-806X(03)00197-X">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2003.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2003" class="abstract noshow">
	<td><b>Abstract</b>: A positron beam based on absorption of high-energy prompt γ-rays from thermal neutron capture in 113Cd was installed at a neutron guide of the High Flux Reactor at the ILL in Grenoble. The positron source consists of platinum foils acting as γ-e+e --converter and positron moderator. After acceleration to 3keV by electrical lenses the positrons were magnetically guided through the beamline. Measurements were performed for various source geometries. The beam diameter and moderation characteristics such as positron work function, moderation efficiency and degradation were determined as well. The results lead to an optimised design of the in-pile positron source which will be implemented at the Munich research reactor FRM-II. © 2003 Elsevier Science Ltd. All rights reserved.</td>
</tr>
<tr id="bib_Hugenschmidt2003" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2003,
	  author = {Hugenschmidt, C. and Kögel, G. and Repper, R. and Schreckenbach, K. and Sperr, P. and Triftshäuser, W.},
	  title = {Positron source based on neutron capture},
	  journal = {Radiation Physics and Chemistry},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2003},
	  volume = {68},
	  number = {3-4},
	  pages = {669--671},
	  url = {http://www.sciencedirect.com/science/article/pii/S0969806X0300197X},
	  doi = {https://doi.org/10.1016/S0969-806X(03)00197-X}
	}
	</pre></td>
</tr>






<tr id="Krause-Rehberg2003" class="entry">

<td>
<em> <a href="https://inis.iaea.org/search/search.aspx?orig_q=RN:36116010">Study of radiation defects in semiconductors by means of positron annihilation</a></em><br />
R. Krause-Rehberg, V. Bondarenko, F. Redmann, F. Borner, H. Feick, E. Weber, C. Da Via, W. Egger, G. Kögel, P. Sperr and W. Triftshäuser;
In: 
<em>  Proceedings of the 3rd international Symposium on Material Chemistry in Nuclear Environment (Materials Chemistry MC’02)</em>

 <b>36</b>
 (2003)
 114-117
.
<p class="infolinks">
[<a href="javascript:toggleInfo('Krause-Rehberg2003','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Krause-Rehberg2003','bibtex')">BibTeX</a>]
[<a href="https://inis.iaea.org/search/search.aspx?orig_q=RN:36116010">URL</a>]

[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Krause-Rehberg2003.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Krause-Rehberg2003" class="abstract noshow">
	<td><b>Abstract</b>: In a nuclear environment, a strong degradation of important properties is observed for many materials which are otherwise very reliable. This is especially valid for silicon, the most important semiconductor. In the presented paper, two examples for the study of lattice defects in silicon by means of positron annihilation will be given. Firstly, the degradation of silicon detectors used for the particle detection in high-luminosity collider experiments starts to limit the lifetime of the whole experiment. An annealing experiment on n-irradiated Si will be presented. Beside the destructive effect of high-radiation conditions, such radiation-induced defects can have a beneficial result. This will be demonstrated for the creation of new gettering zones by high-energy self-implantation of silicon.</td>
</tr>
<tr id="bib_Krause-Rehberg2003" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Krause-Rehberg2003,
	  author = {Krause-Rehberg, R. and Bondarenko, V. and Redmann, F. and Borner, F. and Feick, H. and Weber, E. and Da Via, C. and Egger, W. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Study of radiation defects in semiconductors by means of positron annihilation},
	  booktitle = {Proceedings of the 3rd international Symposium on Material Chemistry in Nuclear Environment (Materials Chemistry MC’02)},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2003},
	  volume = {36},
	  number = {50},
	  pages = {114--117},
	  url = {https://inis.iaea.org/search/search.aspx?orig_q=RN:36116010}
	}
	</pre></td>
</tr>




<tr id="2002" class="entry"><td><h1>2002</h1></td></tr>

<tr id="Barthe2002" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.389-393.493">Vacancy defects in as-polished and in high-fluence H+-implanted 6H-SiC detected by slow positron annihilation spectroscopy</a></em><br />
M.-F. Barthe, P. Desgardin, L. Henry, C. Corbel, D. Britton, G. Kögel, P. Sperr, W. Triftshäuser, P. Vicente and L. Dicioccio; Materials Science Forum
<b> 389-393</b>
 (1)
 (2002)
 493-496.
<p class="infolinks">
[<a href="javascript:toggleInfo('Barthe2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Barthe2002','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.389-393.493">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.389-393.493">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Barthe2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Barthe2002" class="abstract noshow">
	<td><b>Abstract</b>: The vacancy defects in near surface region are investigated in n-type 6H-SiC after polishing or low-energy-proton implantation using slow-positron-beam-based positron annihilation spectroscopy. Measuring the momentum distribution of annihilating electron-positron pairs by Doppler broadening spectroscopy we detect an about 100 nm thick vacancy-defects layer under the surface of mechanically polished wafers. No damaged layer is detected after mechano-chemical finishing. Measuring positron lifetime as a function of temperature, we show that neutral and negatively-charged vacancy clusters exist in the track region of low-energy proton-implanted 6H-SiC(H). Depending on annealing, they give rise to positron lifetimes of 257 ± 2 ps, 281 ± 4 ps and 345 ± 2 ps, respectively. By comparison with theory, the 257 ps and 280 ps are attributed to (VC-VSi) 2 and (VC-VSi)3 clusters, respectively. The (VC-VSi)3 cluster has likely an ionization level near the middle of the bandgap. © 2002 Trans Tech Publications.</td>
</tr>
<tr id="bib_Barthe2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Barthe2002,
	  author = {Barthe, M.-F. and Desgardin, P. and Henry, L. and Corbel, C. and Britton, D.T. and Kögel, G. and Sperr, P. and Triftshäuser, W. and Vicente, P. and Dicioccio, L.},
	  title = {Vacancy defects in as-polished and in high-fluence H+-implanted 6H-SiC detected by slow positron annihilation spectroscopy},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {389-393},
	  number = {1},
	  pages = {493--496},
	  url = {https://www.scientific.net/MSF.389-393.493},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.389-393.493}
	}
	</pre></td>
</tr>






<tr id="Britton2002" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(02)00110-1">Shallow traps and positron dynamics in epitaxial silicon carbide</a></em><br />
D. Britton, M.-F. Barthe, C. Corbel, P. Desgardin, W. Egger, P. Sperr, G. Kögel and W. Triftshäuser; Applied Surface Science
<b> 194</b>
 (1-4)
 (2002)
 122-126.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2002','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433202001101">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(02)00110-1">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2002" class="abstract noshow">
	<td><b>Abstract</b>: We have used slow positron beam-based positron lifetime spectroscopy to study positron diffusion in thick epitaxial n-type 6H-SiC layers. The layers are considerably thicker than the maximum positron penetration depth, and can therefore, be treated as homogeneous semi-infinite bulk material in an analysis including the time-dependent diffusion of a single group of probe particles. Temperature-dependent measurements show a reduction in positron diffusion at low temperatures, which has been interpreted by an increase in trapping to negatively charged defect states. © 2002 Published by Elsevier Science B.V.</td>
</tr>
<tr id="bib_Britton2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2002,
	  author = {Britton, D.T. and Barthe, M.-F. and Corbel, C. and Desgardin, P. and Egger, W. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Shallow traps and positron dynamics in epitaxial silicon carbide},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {194},
	  number = {1-4},
	  pages = {122--126},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433202001101},
	  doi = {https://doi.org/10.1016/S0169-4332(02)00110-1}
	}
	</pre></td>
</tr>






<tr id="Britton2002a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0022-3093(01)01165-6">Positron states in hydrogenated amorphous silicon</a></em><br />
D. Britton, M. Härting, A. Hempel, G. Kögel, P. Sperr, W. Triftshäuser, M. Hempel and D. Knoesen; Journal of Non-Crystalline Solids
<b> 299-302</b>
 (Part 1)
 (2002)
 249-253.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2002a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2002a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0022309301011656">URL</a>]
[<a href="https://doi.org/10.1016/S0022-3093(01)01165-6">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2002a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2002a" class="abstract noshow">
	<td><b>Abstract</b>: Low-hydrogen-concentration a-Si:H grown by HW-CVD forms a continuous random network with no detectable free volume in the form of microvoids, and no evidence of a microcrystalline phase. Over a wide temperature range we observe a single positron state in the amorphous network with a temperature-independent lifetime of 322 ps. From the temperature dependence of the positron diffusion we show that this is a localized state and present direct observation of hopping diffusion of positrons. On annealing up to 400 °C the amorphous network is seen to relax and the first stages of crystallization occur. There is also evidence of vacancy clustering to form a low concentration of microvoids. The structural relaxation has a very low-activation energy, around 0.1 eV, and is interpreted in terms of a reconfiguration of the fundamental defect identifed by positron annihilation. © 2002 Published by Elsevier Science B.V.</td>
</tr>
<tr id="bib_Britton2002a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2002a,
	  author = {Britton, D.T. and Härting, M. and Hempel, A. and Kögel, G. and Sperr, P. and Triftshäuser, W. and Hempel, M. and Knoesen, D.},
	  title = {Positron states in hydrogenated amorphous silicon},
	  journal = {Journal of Non-Crystalline Solids},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {299-302},
	  number = {Part 1},
	  pages = {249--253},
	  url = {http://www.sciencedirect.com/science/article/pii/S0022309301011656},
	  doi = {https://doi.org/10.1016/S0022-3093(01)01165-6}
	}
	</pre></td>
</tr>






<tr id="Egger2002" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(02)00106-X">Vacancy clusters close to a fatigue crack observed with the München scanning positron microscope</a></em><br />
W. Egger, G. Kögel, P. Sperr, W. Triftshäuser, S. Rödling, J. Bär and H.-J. Gudladt; Applied Surface Science
<b> 194</b>
 (1-4)
 (2002)
 214-217.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2002','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S016943320200106X">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(02)00106-X">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2002" class="abstract noshow">
	<td><b>Abstract</b>: The accumulation of plastic strain by low cycle fatigue has been expected for a long time to induce vacancy clusters, particularly in the most damaged region, i.e. close to a fatigue crack. For the first time, the München scanning positron microscope (SPM) enables the detection of the expected vacancy clusters by positron lifetime studies of a fatigue crack with micrometer resolution. A fatigue crack with a length of about 8 mm was created in a single edge-notched specimen of cold-rolled technical copper. The fatigue crack propagation test was performed under K-controlled conditions with a constant stress intensity factor of 9 MPa m1/2. Lifetime images from a region of about 200 × 400 μm2 around the crack tip were obtained at about 5 μm spatial resolution for 5, 8 and 16 keV positron implantation energies. Independent of position, a positron lifetime of about 190 ps is observed, indicating annihilation of positrons at dislocations. Within about 40 μm from the crack path, however, a second lifetime in the range of 360-420 ps is observed at all positron implantation energies and with an intensity up to 25%. Therefore in this region there must be large vacancy clusters with a trapping rate comparable to one of the dislocations. © 2002 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Egger2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2002,
	  author = {Egger, W. and Kögel, G. and Sperr, P. and Triftshäuser, W. and Rödling, S. and Bär, J. and Gudladt, H.-J.},
	  title = {Vacancy clusters close to a fatigue crack observed with the München scanning positron microscope},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {194},
	  number = {1-4},
	  pages = {214--217},
	  url = {http://www.sciencedirect.com/science/article/pii/S016943320200106X},
	  doi = {https://doi.org/10.1016/S0169-4332(02)00106-X}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt:1062" class="entry">

<td>
<em> The In-Pile Positron Source at the Munich Research Reactor FRM-II</a></em><br />
C. Hugenschmidt, K. Schreckenbach, R. Repper and G. Kögel;
In: 
<em>  Annual Meeting on Nuclear Technology 2002 Proceedings</em>


 (2002)
 519-522
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Hugenschmidt:1062','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Hugenschmidt:1062" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Hugenschmidt:1062,
	  author = {Hugenschmidt, C. and Schreckenbach, K. and Repper, R. and Kögel, G.},
	  title = {The In-Pile Positron Source at the Munich Research Reactor FRM-II},
	  booktitle = {Annual Meeting on Nuclear Technology 2002 Proceedings},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  pages = {519--522}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2002" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/s003390201398">Intense positron source at the Munich research reactor FRM-II</a></em><br />
C. Hugenschmidt, G. Kögel, R. Repper, K. Schreckenbach, P. Sperr, B. Straßer and W. Triftshäuser; Applied Physics A: Materials Science and Processing
<b> 74</b>
 (SUPPL.I)
 (2002)
 S295-S297.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2002','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2Fs003390201398">URL</a>]
[<a href="https://doi.org/10.1007/s003390201398">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2002" class="abstract noshow">
	<td><b>Abstract</b>: The principle and the design of the in-pile positron source at the new Munich research reactor FRM-II are presented. Absorption of high-energy prompt γ-rays from thermal neutron capture in 113Cd generates positrons by pair production. For this purpose, a cadmium cap is placed inside the tip of the inclined beam tube SR11 in the neutron field of the reactor, where an undisturbed thermal neutron flux up to 2 × 1014 n cm-2 s-1 is expected. At this position the flux ratio of thermal to fast neutrons will be better than 104. Monte Carlo calculations showed that a mean capture rate in cadmium between 4.5 and 6.0 × 1013 n cm-2 s-1 can be expected. Inside the cadmium cap a structure of platinum foils is placed for converting γ-radiation into positron-electron pairs. The heated foils also act as positron moderators to generate monoenergetic positrons. After acceleration to 5 keV a positron beam is formed by electric lenses and guided by magnetic fields. In the primary positron beam an intensity up to 1010 slow positrons per second is expected.</td>
</tr>
<tr id="bib_Hugenschmidt2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2002,
	  author = {Hugenschmidt, C. and Kögel, G. and Repper, R. and Schreckenbach, K. and Sperr, P. and Straßer, B. and Triftshäuser, W.},
	  title = {Intense positron source at the Munich research reactor FRM-II},
	  journal = {Applied Physics A: Materials Science and Processing},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {74},
	  number = {SUPPL.I},
	  pages = {S295-S297},
	  url = {http://link.springer.com/article/10.1007%2Fs003390201398},
	  doi = {https://doi.org/10.1007/s003390201398}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2002a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0168-583X(02)01527-6">First platinum moderated positron beam based on neutron capture</a></em><br />
C. Hugenschmidt, G. Kögel, R. Repper, K. Schreckenbach, P. Sperr and W. Triftshäuser; Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms
<b> 198</b>
 (3-4)
 (2002)
 220-229.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2002a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2002a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168583X02015276">URL</a>]
[<a href="https://doi.org/10.1016/S0168-583X(02)01527-6">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2002a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2002a" class="abstract noshow">
	<td><b>Abstract</b>: A positron beam based on absorption of high energy prompt γ-rays from thermal neutron capture in 113Cd was installed at a neutron guide of the high flux reactor at the ILL in Grenoble. Measurements were performed for various source geometries, dependent on converter mass, moderator surface and extraction voltages. The results lead to an optimised design of the in-pile positron source which will be implemented at the Munich research reactor FRM-II. The positron source consists of platinum foils acting as γ-e+e--converter and positron moderator. Due to the negative positron work function moderation in heated platinum leads to emission of monoenergetic positrons. The positron work function of polycrystalline platinum was determined to 1.95(5) eV. After acceleration to several keV by four electrical lenses the beam was magnetically guided in a solenoid field of 7.5 mT leading to a NaI-detector in order to detect the 511 keV γ-radiation of the annihilating positrons. The positron beam with a diameter of less than 20 mm yielded an intensity of 3.1 × 104 moderated positrons per second. The total moderation efficiency of the positron source was about ε = 1.06(16) × 10-4. Within the first 20 h of operation a degradation of the moderation efficiency of 30% was observed. An annealing procedure at 873 K in air recovers the platinum moderator. © 2002 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Hugenschmidt2002a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2002a,
	  author = {Hugenschmidt, C. and Kögel, G. and Repper, R. and Schreckenbach, K. and Sperr, P. and Triftshäuser, W.},
	  title = {First platinum moderated positron beam based on neutron capture},
	  journal = {Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {198},
	  number = {3-4},
	  pages = {220--229},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168583X02015276},
	  doi = {https://doi.org/10.1016/S0168-583X(02)01527-6}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2002b" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0168-583X(02)00788-7">Monoenergetic positron beam at the reactor based positron source at FRM-II</a></em><br />
C. Hugenschmidt, G. Kögel, R. Repper, K. Schreckenbach, P. Sperr, B. Straßer and W. Triftshäuser; Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms
<b> 192</b>
 (1-2)
 (2002)
 97-101.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2002b','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2002b','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168583X02007887">URL</a>]
[<a href="https://doi.org/10.1016/S0168-583X(02)00788-7">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2002b.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2002b" class="abstract noshow">
	<td><b>Abstract</b>: The principle of the in-pile positron source at the Munich research reactor FRM-II is based on absorption of high energy prompt γ-rays from thermal neutron capture in 113Cd. For this purpose, a cadmium cap is placed inside the tip of the inclined beam tube SR-11 in the moderator tank of the reactor, where an undisturbed thermal neutron flux up to 2 × 1014 n cm-2s-1 is expected. Inside the cadmium cap a structure of platinum foils is placed for converting high energy γ-radiation into positron-electron pairs. Due to the negative positron work function, moderation in annealed platinum leads to emission of monoenergetic positrons. Therefore, platinum will also be used as moderator, since its moderation property seems to yield long-term stability under reactor conditions and it is much easier to handle than tungsten. Model calculations were performed with SIMION-7.0w to optimise geometry and potential of Pt-foils and electrical lenses. It could be shown that the potentials between the Pt-foils must be chosen in the range of 1-10 V to extract moderated positrons. After successive acceleration to 5 keV by four electrical lenses the beam is magnetically guided in a solenoid field of 7.5 mT resulting in a beam diameter of about 25 mm. An intensity of about 1010 slow positrons per second is expected in the primary positron beam. Outside of the reactor shield a W(1 0 0) single crystal remoderation stage will lead to an improvement of the positron beam brilliance before the positrons are guided to the experimental facilities. © 2002 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Hugenschmidt2002b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2002b,
	  author = {Hugenschmidt, C. and Kögel, G. and Repper, R. and Schreckenbach, K. and Sperr, P. and Straßer, B. and Triftshäuser, W.},
	  title = {Monoenergetic positron beam at the reactor based positron source at FRM-II},
	  journal = {Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {192},
	  number = {1-2},
	  pages = {97--101},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168583X02007887},
	  doi = {https://doi.org/10.1016/S0168-583X(02)00788-7}
	}
	</pre></td>
</tr>






<tr id="Kawasuso2002" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.389-393.489">Radiation-induced defects in 4H- And 6H-SiC epilayers studied by positron annihilation and deep-level transient spectroscopy</a></em><br />
A. Kawasuso, M. Weidner, F. Redmann, T. Frank, R. Krause-Rehberg, G. Pensl, P. Sperr, W. Triftshäuser and H. Itoh; Materials Science Forum
<b> 389-393</b>
 (1)
 (2002)
 489-492.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kawasuso2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kawasuso2002','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.389-393.489">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.389-393.489">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kawasuso2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kawasuso2002" class="abstract noshow">
	<td><b>Abstract</b>: Vacancy defects in high-quality 4H and 6H SiC epilayers induced by electron irradiation have been characterized using positron annihilation and deep level transient spectroscopy (DLTS). Vacancy defects were annealed in two steps below 700°C and above 1200°C irrespective to polytype. From the correlation between positron annihilation and DLTS data using the same wafers, it was confirmed that complexes including silicon vacancies are the origin of the E1/2 levels in 6H SiC and the Z1/2 level in 4H SiC. © 2002 Trans Tech Publications.</td>
</tr>
<tr id="bib_Kawasuso2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Kawasuso2002,
	  author = {Kawasuso, A. and Weidner, M. and Redmann, F. and Frank, T. and Krause-Rehberg, R. and Pensl, G. and Sperr, P. and Triftshäuser, W. and Itoh, H.},
	  title = {Radiation-induced defects in 4H- And 6H-SiC epilayers studied by positron annihilation and deep-level transient spectroscopy},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {389-393},
	  number = {1},
	  pages = {489--492},
	  url = {https://www.scientific.net/MSF.389-393.489},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.389-393.489}
	}
	</pre></td>
</tr>






<tr id="Koegel2002" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(02)00102-2">Microscopes/microprobes</a></em><br />
G. Kögel; Applied Surface Science
<b> 194</b>
 (1-4)
 (2002)
 200-209.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel2002','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433202001022">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(02)00102-2">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel2002" class="abstract noshow">
	<td><b>Abstract</b>: Our new pulsed positron microbeam is not only a microprobe for the local analysis of defect characteristics but also a microscope providing a complete lifetime image of defect distributions at micron resolution. Both aspects are discussed with examples from recent applications to basic problems of materials research. For fundamental reasons an image of defects at nanometer resolution by the present generation of microbeams is impossible. Therefore, a more advanced dual microbeam system will be proposed, where the defects are stained with positrons. Then a scanned electron beam with nanometer spot size is sensitive to the stained defects. © 2002 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Koegel2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel2002,
	  author = {Kögel, G.},
	  title = {Microscopes/microprobes},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {194},
	  number = {1-4},
	  pages = {200--209},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433202001022},
	  doi = {https://doi.org/10.1016/S0169-4332(02)00102-2}
	}
	</pre></td>
</tr>






<tr id="Krause-Rehberg2002" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(02)00104-6">Improved defect profiling with slow positrons</a></em><br />
R. Krause-Rehberg, F. Börner, F. Redmann, W. Egger, G. Kögel, P. Sperr and W. Triftshäuser; Applied Surface Science
<b> 194</b>
 (1-4)
 (2002)
 210-213.
<p class="infolinks">
[<a href="javascript:toggleInfo('Krause-Rehberg2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Krause-Rehberg2002','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433202001046">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(02)00104-6">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Krause-Rehberg2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Krause-Rehberg2002" class="abstract noshow">
	<td><b>Abstract</b>: Monoenergetic positrons are widely used to study defects in near-surface regions and buried interfaces of solids. Depth information is usually obtained by varying the positron implantation energy. However, at energies larger than 10 keV the stopping profile becomes much broader than the positron diffusion length. The study shows that optimum depth resolution can be obtained by stepwise removal of the surface and measurement with the smallest possible positron implantation depth. The removal from the surface can be done by ion sputtering or chemical etching. Furthermore, excellent defect depth profiles can be obtained when a sample is wedge-shaped polished (wedge angle about 1 °). A line scan using a scanning positron microbeam along the wedge with a small positron implantation depth gives then the defect profile with optimum depth resolution. © 2002 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Krause-Rehberg2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Krause-Rehberg2002,
	  author = {Krause-Rehberg, R. and Börner, F. and Redmann, F. and Egger, W. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Improved defect profiling with slow positrons},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {194},
	  number = {1-4},
	  pages = {210--213},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433202001046},
	  doi = {https://doi.org/10.1016/S0169-4332(02)00104-6}
	}
	</pre></td>
</tr>






<tr id="Slugen2002" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(02)00116-2">Investigation of defect distributions in neutron-irradiated and thermally treated reactor steels by positron annihilation</a></em><br />
V. Slugen, G. Kögel, P. Sperr and W. Triftshäuser; Applied Surface Science
<b> 194</b>
 (1-4)
 (2002)
 150-154.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2002','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2002','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433202001162">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(02)00116-2">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2002.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2002" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation spectroscopy (PAS) based on positron lifetime (PL) measurements using the pulsed low-energy positron system (PLEPS) was applied for the investigation of defects of irradiated and thermally treated reactor pressure vessel (RPV) steels. PLEPS results showed that the changes in the micro structure of the RPV-steel properties caused by neutron-irradiation and post-irradiation heat treatment can be well detected. From the lifetime measurements in the near-surface region (20-550nm) the defect density in the Russian types of RPV-steels was calculated using the diffusion trapping model. The post-irradiation heat treatment studies performed on non-irradiated specimens are also presented. © 2002 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Slugen2002" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2002,
	  author = {Slugen, V. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Investigation of defect distributions in neutron-irradiated and thermally treated reactor steels by positron annihilation},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {194},
	  number = {1-4},
	  pages = {150--154},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433202001162},
	  doi = {https://doi.org/10.1016/S0169-4332(02)00116-2}
	}
	</pre></td>
</tr>






<tr id="Slugen2002a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0022-3115(02)00815-2">Positron annihilation studies of neutron irradiated and thermally treated reactor pressure vessel steels</a></em><br />
V. Slugen, G. Kögel, P. Sperr and W. Triftshäuser; Journal of Nuclear Materials
<b> 302</b>
 (2-3)
 (2002)
 89-95.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2002a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2002a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0022311502008152">URL</a>]
[<a href="https://doi.org/10.1016/S0022-3115(02)00815-2">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2002a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2002a" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation lifetime measurements using the pulsed low energy positron system (PLEPS) were applied for the first time for the investigation of defects of irradiated and thermally treated reactor pressure vessel (RPV) steels. PLEPS results showed that the changes in the microstructure of the RPV-steel properties caused by neutron irradiation and post-irradiation thermal treatment can be detected. The samples originated from the Russian 15Kh2MFA and Sv10KhMFT steels, commercially used at WWER-440 reactors, were irradiated near the core at NPP Bohunice (Slovakia) to neutron fluences in the range from 7.8 × 1023 to 2.5 × 1024 m-2. © 2002 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Slugen2002a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2002a,
	  author = {Slugen, V. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Positron annihilation studies of neutron irradiated and thermally treated reactor pressure vessel steels},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2002},
	  volume = {302},
	  number = {2-3},
	  pages = {89--95},
	  url = {http://www.sciencedirect.com/science/article/pii/S0022311502008152},
	  doi = {https://doi.org/10.1016/S0022-3115(02)00815-2}
	}
	</pre></td>
</tr>




<tr id="2001" class="entry"><td><h1>2001</h1></td></tr>

<tr id="Barthe2001" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0921-4526(01)00786-4">Negatively charged vacancy defects in 6H-SiC after low-energy proton implantation and annealing</a></em><br />
M.-F. Barthe, D. Britton, C. Corbel, A. Hempel, L. Henry, P. Desgardin, W. Bauer-Kugelmann, G. Kögel, P. Sperr and W. Triftshäuser; Physica B: Condensed Matter
<b> 308-310</b>

 (2001)
 668-670.
<p class="infolinks">
[<a href="javascript:toggleInfo('Barthe2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Barthe2001','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0921452601007864">URL</a>]
[<a href="https://doi.org/10.1016/S0921-4526(01)00786-4">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Barthe2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Barthe2001" class="abstract noshow">
	<td><b>Abstract</b>: We have used pulsed-slow-positron-beam-based positron lifetime spectroscopy to investigate the nature of acceptors and charge states of vacancy-type defects in low-energy proton-implanted 6H-SiC(H). We can infer from the temperature dependence of the lifetime spectra that neutral and negatively charged vacancy clusters exist in the track region. Depending on annealing, they give rise to positron lifetimes of 257 ±2, 281 ±4 and 345 ±2 ps, respectively. The 281 ps cluster has likely an ionization level near the middle of the band gap. By comparison with theory, the 257 and 280 ps are identified as (VC-VSi)2 and (VC-VSi)3 clusters, respectively. In addition, other acceptors of ionic type act as strong trapping centers at low temperature (T &amp;lt; 150 K). Neutral monovacancy-like complexes are also detected with a lifetime of 160 ±2 after 900°C annealing. © 2001 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Barthe2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Barthe2001,
	  author = {Barthe, M.-F. and Britton, D.T. and Corbel, C. and Hempel, A. and Henry, L. and Desgardin, P. and Bauer-Kugelmann, W. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Negatively charged vacancy defects in 6H-SiC after low-energy proton implantation and annealing},
	  journal = {Physica B: Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {308-310},
	  pages = {668--670},
	  url = {http://www.sciencedirect.com/science/article/pii/S0921452601007864},
	  doi = {https://doi.org/10.1016/S0921-4526(01)00786-4}
	}
	</pre></td>
</tr>






<tr id="Bauer-Kugelmann2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.529">Latest version of the Munich pulsed low energy positron system</a></em><br />
W. Bauer-Kugelmann, P. Sperr, G. Kögel and W. Triftshäuser; Materials Science Forum
<b> 363-365</b>

 (2001)
 529-531.
<p class="infolinks">
[<a href="javascript:toggleInfo('Bauer-Kugelmann2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Bauer-Kugelmann2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.529">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.529">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Bauer-Kugelmann2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Bauer-Kugelmann2001" class="abstract noshow">
	<td><b>Abstract</b>: Further improvements of the Munich pulsed low energy positron system have been performed. A new chopper, configured as a double plate deflection system with an external resonator and a new buncher working like a classical double gap buncher, are implemented. The complete rf-power electronic was redesigned and operates now at an overall master-frequency of 50 MHz for all bunching and chopping components. A new target station with an enlarged Faraday cage is installed. The sample temperature is variable between 30 K and 600 K. Up to ten samples can be stored in a magazine and transferred under vacuum conditions to the measuring position. With a primary source of 30 mCi 22Na a count rate of up to 4 kHz can be achieved with a peak-to-background ratio of 3000:1. This ratio can be further improved by the use of a Wien filter. A beam diameter of about 2 mm was determined. The total time resolution (pulsing plus detector system) is 250 ps (FWHM).</td>
</tr>
<tr id="bib_Bauer-Kugelmann2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Bauer-Kugelmann2001,
	  author = {Bauer-Kugelmann, W. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Latest version of the Munich pulsed low energy positron system},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {529--531},
	  url = {https://www.scientific.net/MSF.363-365.529},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.529}
	}
	</pre></td>
</tr>






<tr id="Britton2001" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.1350961">Evidence for negatively charged vacancy defects in 6H-SiC after low-energy proton implantation</a></em><br />
D. Britton, M.-F. Barthe, C. Corbel, A. Hempel, L. Henry, P. Desgardin, W. Bauer-Kugelmann, G. Kögel, P. Sperr and W. Triftshäuser; Applied Physics Letters
<b> 78</b>
 (9)
 (2001)
 1234-1236.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2001','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.1350961">URL</a>]
[<a href="https://doi.org/10.1063/1.1350961">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2001" class="abstract noshow">
	<td><b>Abstract</b>: We have used pulsed-slow-positron-beam-based positron lifetime spectroscopy to investigate the nature of acceptors and charge states of vacancy-type defects in low-energy proton-implanted 6H-SiC(H). We can infer from the temperature dependence of the lifetime spectra that neutral and negatively charged vacancy clusters exist in the track region. Depending on annealing, they give rise to positron lifetimes of 257±2, 281±4, and 345±2 ps, respectively. The 281 ps cluster likely has an ionization level near the middle of the band gap. By comparison with theory, the 257 and 280 ps are identified as (VC-VSi)2 and (VC-VSi)3 clusters, respectively. In addition, other acceptors of ionic type act as strong trapping centers at low temperature (T&amp;lt;150 K). Neutral monovacancy-like complexes are also detected with a lifetime of 160±2 after 900 °C annealing. © 2001 American Institute of Physics.</td>
</tr>
<tr id="bib_Britton2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2001,
	  author = {Britton, D.T. and Barthe, M.-F. and Corbel, C. and Hempel, A. and Henry, L. and Desgardin, P. and Bauer-Kugelmann, W. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Evidence for negatively charged vacancy defects in 6H-SiC after low-energy proton implantation},
	  journal = {Applied Physics Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {78},
	  number = {9},
	  pages = {1234--1236},
	  url = {http://aip.scitation.org/doi/10.1063/1.1350961},
	  doi = {https://doi.org/10.1063/1.1350961}
	}
	</pre></td>
</tr>






<tr id="Britton2001a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.460">Pulsed positron beam study of as-grown defects in epitaxial SiC</a></em><br />
D. Britton, D. Gxawu, A. Hempel, M.-F. Barthe, L. Henry, P. Desgardin, C. Corbel, W. Bauer-Kugelmann, P. Sperr, G. Kögel and W. Triftshäuser; Materials Science Forum
<b> 363-365</b>

 (2001)
 460-462.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2001a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2001a','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.460">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.460">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2001a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2001a" class="abstract noshow">
	<td><b>Abstract</b>: We have used slow positron beam based positron lifetime spectroscopy to study positron diffusion in a thick epitaxial n-type 6H-SiC. The layer is considerably thicker than the maximum positron penetration depth, and can therefore be treated as homogeneous semi-infinite bulk material in an analysis including the time-dependent diffusion of a single group of probe particles. Temperature dependent measurements show a reduction in the positron diffusivity below 100K, which can be interpreted by an increase in trapping to shallow defect states. Above this temperature, the behaviour of the diffusivity is consistent with the expected T1/2 dependence due to acoustic phonon scattering.</td>
</tr>
<tr id="bib_Britton2001a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2001a,
	  author = {Britton, D.T. and Gxawu, D. and Hempel, A. and Barthe, M.-F. and Henry, L. and Desgardin, P. and Corbel, C. and Bauer-Kugelmann, W. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Pulsed positron beam study of as-grown defects in epitaxial SiC},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {460--462},
	  url = {https://www.scientific.net/MSF.363-365.460},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.460}
	}
	</pre></td>
</tr>






<tr id="Britton2001b" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.511">Defect characterisation of PECVD-grown diamond</a></em><br />
D. Britton, A. Hempel, M. Hempel, M. Härting, W. Bauer-Kugelmann and W. Triftshäuser; Materials Science Forum
<b> 363-365</b>

 (2001)
 511-513.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2001b','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2001b','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.511">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.511">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2001b.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2001b" class="abstract noshow">
	<td><b>Abstract</b>: We present the results of a combined study of the defect structure and residual stress in a diamond layer, grown by PECVD on a polycrystalline copper substrate with a titanium interlayer. For the defect studies, both continuous and pulsed positron beam techniques were applied. X-ray diffraction techniques were used for both the stress determination in the diamond layer and for a phase analysis of the complete composite structure. The layer was found to contain a significant fraction of vacancy clusters and single vacancy type defects, situated within the individual grains. The presence of the larger defects can be correlated to a compressive stress in the layer.</td>
</tr>
<tr id="bib_Britton2001b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2001b,
	  author = {Britton, D.T. and Hempel, A. and Hempel, M. and Härting, M. and Bauer-Kugelmann, W. and Triftshäuser, W.},
	  title = {Defect characterisation of PECVD-grown diamond},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {511--513},
	  url = {https://www.scientific.net/MSF.363-365.511},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.511}
	}
	</pre></td>
</tr>






<tr id="Britton2001c" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevLett.87.217401">Hopping transport of positrons in hydrogenated amorphous silicon</a></em><br />
D. Britton, A. Hempel and W. Triftshäuser; Physical Review Letters
<b> 87</b>
 (21)
 (2001)
 2174011-2174014.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2001c','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2001c','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.87.217401">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevLett.87.217401">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2001c.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2001c" class="abstract noshow">
	<td><b>Abstract</b>: Positron diffusion was investigated in hydrogenated amorphous silicon using positron beam timing spectroscopy. The measurement of the rate of emission of annihilation photons as a function of the time interval between annihilation and incoming pulse of positrons, allowed the measurement of positron lifetime spectrum at different depths. The results indicated that the dominant positron state in a particular covalent random network was a localized state located at hydrogen terminated dangling bond defects. Hopping diffusion of positrons was observed and the migration enthalpy for positrons in that state was found to be 17.7(3) meV.</td>
</tr>
<tr id="bib_Britton2001c" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2001c,
	  author = {Britton, D.T. and Hempel, A. and Triftshäuser, W.},
	  title = {Hopping transport of positrons in hydrogenated amorphous silicon},
	  journal = {Physical Review Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {87},
	  number = {21},
	  pages = {2174011--2174014},
	  url = {http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.87.217401},
	  doi = {https://doi.org/10.1103/PhysRevLett.87.217401}
	}
	</pre></td>
</tr>






<tr id="Britton2001d" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.64.075403">Annealing and recrystallization of hydrogenated amorphous silicon</a></em><br />
D. Britton, A. Hempel, M. Härting, G. Kögel, P. Sperr, W. Triftshäuser, C. Arendse and D. Knoesen; Physical Review B
<b> 64</b>
 (7)
 (2001)
 075403.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2001d','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2001d','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.64.075403">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.64.075403">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2001d.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2001d" class="abstract noshow">
	<td><b>Abstract</b>: Using a combination of positron annihilation and x-ray-diffraction techniques, we have shown that low hydrogen concentration hot wire chemical vapor deposition grown a-Si:H forms a continuous random network with no detectable free volume in the form of microvoids, and no evidence of a microcrystalline phase. On annealing up to 400 degreesC, the amorphous network is seen to relax and the first stages of recrystallization occur. There is also evidence of vacancy clustering to form a low concentration of microvoids. The structural relaxation has a very low activation energy, around 0.1 eV, and is probably caused by a reconfiguration of hydrogen-terminated dangling, bond defects. The formation of microvoids and therecrystallization can both be interpreted by the migration of unterminated dangling-bond defects.</td>
</tr>
<tr id="bib_Britton2001d" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2001d,
	  author = {Britton, D.T. and Hempel, A. and Härting, M. and Kögel, G. and Sperr, P. and Triftshäuser, W. and Arendse, C. and Knoesen, D.},
	  title = {Annealing and recrystallization of hydrogenated amorphous silicon},
	  journal = {Physical Review B},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {64},
	  number = {7},
	  pages = {075403},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.64.075403},
	  doi = {https://doi.org/10.1103/PhysRevB.64.075403}
	}
	</pre></td>
</tr>






<tr id="David2001" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevLett.87.067402">Lifetime measurements with a scanning positron microscope</a></em><br />
A. David, G. Kögel, P. Sperr and W. Triftshäuser; Physical Review Letters
<b> 87</b>
 (6)
 (2001)
 674021-674024.
<p class="infolinks">
[<a href="javascript:toggleInfo('David2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('David2001','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.87.067402">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevLett.87.067402">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/David2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_David2001" class="abstract noshow">
	<td><b>Abstract</b>: The visible and invisible damage to the defect structure of a GaAs wafer was identified by first lifetime measurements using the scanning positron microscope. A pulsed positron beam formed by cooling positrons from a radioactive source was scanned over an area of 0.6×0.6 mm 2. A scanning electron microprobe was also included in the system for surface analysis.</td>
</tr>
<tr id="bib_David2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{David2001,
	  author = {David, A. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Lifetime measurements with a scanning positron microscope},
	  journal = {Physical Review Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {87},
	  number = {6},
	  pages = {674021--674024},
	  url = {http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.87.067402},
	  doi = {https://doi.org/10.1103/PhysRevLett.87.067402}
	}
	</pre></td>
</tr>






<tr id="DeBaerdemaeker2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.496">Investigation of stainless steel films sputtered on glass</a></em><br />
J. De Baerdemaeker, T. Van Hoecke, S. Van Petegem, D. Segers, W. Bauer-Kugelmann, P. Sperr and G. Terwagne; Materials Science Forum
<b> 363-365</b>

 (2001)
 496-498.
<p class="infolinks">
[<a href="javascript:toggleInfo('DeBaerdemaeker2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('DeBaerdemaeker2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.496">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.496">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/DeBaerdemaeker2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_DeBaerdemaeker2001" class="abstract noshow">
	<td><b>Abstract</b>: The influence of the sputter atmosphere on glass supported magnetron sputtered stainless steel films was investigated using Positron Annihilation Lifetime Spectroscopy (PALS) and Doppler-Broadening Annihilation Radiation (DBAR) as well as Rutherford Backscattering (RBS), Integral Low Energy Electron Mössbauer Spectroscopy (ILEEMS), Atomic Force Microscopy (AFM) and Scanning Electron Microscopy (SEM).</td>
</tr>
<tr id="bib_DeBaerdemaeker2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{DeBaerdemaeker2001,
	  author = {De Baerdemaeker, J. and Van Hoecke, T. and Van Petegem, S. and Segers, D. and Bauer-Kugelmann, W. and Sperr, P. and Terwagne, G.},
	  title = {Investigation of stainless steel films sputtered on glass},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {496--498},
	  url = {https://www.scientific.net/MSF.363-365.496},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.496}
	}
	</pre></td>
</tr>






<tr id="Egger2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.82">Identification of defect sites in FeAl by Doppler spectroscopy of core electrons</a></em><br />
W. Egger, G. Bischof, V. Gröger and G. Krexner; Materials Science Forum
<b> 363-365</b>

 (2001)
 82-84.
<p class="infolinks">
[<a href="javascript:toggleInfo('Egger2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Egger2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.82">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.82">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Egger2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Egger2001" class="abstract noshow">
	<td><b>Abstract</b>: Doppler spectroscopy of core electrons is used to identify defect sites in the intermetallic compound FeAl. Two-dimensional annihilation spectra were recorded both for elemental Al and Fe and for the intermetallic compound FeAl. Experimental data are compared with calculations based on density functional theory using the generalized gradient approximation (GGA) for the positron annihilation. In accordance with earlier work vacancies are found to be located on the Fe sublattice. The results show that the accuracy achieved, both experimentally and theoretically, is sufficient to distinguish clearly between vacancies on different sublattices.</td>
</tr>
<tr id="bib_Egger2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Egger2001,
	  author = {Egger, W. and Bischof, G. and Gröger, V. and Krexner, G.},
	  title = {Identification of defect sites in FeAl by Doppler spectroscopy of core electrons},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {82--84},
	  url = {https://www.scientific.net/MSF.363-365.82},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.82}
	}
	</pre></td>
</tr>






<tr id="Hempel2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.463">Annealing effects in hydrogenated amorphous silicon layers</a></em><br />
A. Hempel, A. Dabrowski, M. Härting, M. Hempel, D. Knoesen, W. Bauer-Kugelmann, G. Kögel, W. Triftshäuser and D. Britton; Materials Science Forum
<b> 363-365</b>

 (2001)
 463-465.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hempel2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hempel2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.463">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.463">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hempel2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hempel2001" class="abstract noshow">
	<td><b>Abstract</b>: The annealing behaviour of defect structures in hydrogenated amorphous silicon, produced by hot wire chemical vapour deposition (HWCVD) has been studied by pulsed and conventional positron beam techniques and X-ray diffraction. Positron lifetime measurements show a dominant component corresponding to small vacancy clusters. Doppler Broadening measurements indicate that the size and concentration of defects varies with annealing temperatures up to 400°C. This behaviour is accompanied by a change from the amorphous to a partly crystalline structure, which can be observed by X-ray diffraction studies.</td>
</tr>
<tr id="bib_Hempel2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hempel2001,
	  author = {Hempel, A. and Dabrowski, A. and Härting, M. and Hempel, M. and Knoesen, D. and Bauer-Kugelmann, W. and Kögel, G. and Triftshäuser, W. and Britton, D.T.},
	  title = {Annealing effects in hydrogenated amorphous silicon layers},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {463--465},
	  url = {https://www.scientific.net/MSF.363-365.463},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.463}
	}
	</pre></td>
</tr>






<tr id="Hempel2001a" class="entry">

<td>
<em> <a href="https://doi.org/10.1080/10420150108216896">Defect studies of diamond hard coatings</a></em><br />
A. Hempel, M. Hempel, M. Härting, D. Britton, W. Bauer-Kugelmann and W. Triftshäuser; Radiation Effects and Defects in Solids
<b> 156</b>
 (1)
 (2001)
 215-220.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hempel2001a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hempel2001a','bibtex')">BibTeX</a>]
[<a href="http://www.tandfonline.com/doi/abs/10.1080/10420150108216896">URL</a>]
[<a href="https://doi.org/10.1080/10420150108216896">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hempel2001a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hempel2001a" class="abstract noshow">
	<td><b>Abstract</b>: We present the results of a combined study of the defect structure and residual stress in a diamond layer, grown by PECVD on a polycrystalline copper substrate with a titanium interlayer. For the defect studies, electron spectroscopies based on electron-positron annihilation were applied. X-ray diffraction techniques were used for both the stress determination in the diamond layer and for a phase analysis of the complete composite structure. The layer was found to contain a significant fraction of vacancy clusters and single vacancy type defects, which are probably situated within the individual grains. The presence of the larger defects may be related to a compressive stress in the layer.</td>
</tr>
<tr id="bib_Hempel2001a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hempel2001a,
	  author = {Hempel, A. and Hempel, M. and Härting, M. and Britton, D.T. and Bauer-Kugelmann, W. and Triftshäuser, W.},
	  title = {Defect studies of diamond hard coatings},
	  journal = {Radiation Effects and Defects in Solids},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {156},
	  number = {1},
	  pages = {215--220},
	  url = {http://www.tandfonline.com/doi/abs/10.1080/10420150108216896},
	  doi = {https://doi.org/10.1080/10420150108216896}
	}
	</pre></td>
</tr>






<tr id="Hugenschmidt2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.425">Intense positron source at the Munich research reactor FRM-II</a></em><br />
C. Hugenschmidt, G. Kögel, K. Schreckenbach, P. Sperr, B. Straßer and W. Triftshäuser; Materials Science Forum
<b> 363-365</b>

 (2001)
 425-429.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.425">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.425">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt2001" class="abstract noshow">
	<td><b>Abstract</b>: Principle and design of the intense positron source facility at the new Munich research reactor FRM-II is presented. Absorption of high energy prompt γ rays from thermal neutron capture in 113Cd generates positrons by pair production. For this purpose, a cadmium cap will be placed inside a beam tube in the neutron field of the reactor, where an undisturbed thermal neutron flux up to 2·1014 n·cm-2s-1 is expected. At this position the flux ratio of thermal to fast neutron will be better than 104. Monte Carlo calculation showed that a mean capture rate in cadmium between 4.5 and 6.0·1013 n·cm-2s-1 can be expected. Absorption of γ rays would lead to a heat impact less than 4 Wcm-2. Inside the cadmium cap a structure of platinum is placed for converting the γ radiation into positron-electron pairs. As converting material platinum is used, since the cross section for pair production is even higher than in tungsten. The heated platinum foils also act as moderators. The positron beam with a primary energy of about 5 keV is formed by electric lenses and magnetic fields. A remoderation stage leads to an improvement of the positron beam brilliance, where an intensity of about 109 slow positrons per second can be expected.</td>
</tr>
<tr id="bib_Hugenschmidt2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt2001,
	  author = {Hugenschmidt, C. and Kögel, G. and Schreckenbach, K. and Sperr, P. and Straßer, B. and Triftshäuser, W.},
	  title = {Intense positron source at the Munich research reactor FRM-II},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {425--429},
	  url = {https://www.scientific.net/MSF.363-365.425},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.425}
	}
	</pre></td>
</tr>






<tr id="Kawasuso2001" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.1426259">Annealing behavior of vacancies and Z1/2 levels in electron-irradiated 4H-SiC studied by positron annihilation and deep-level transient spectroscopy</a></em><br />
A. Kawasuso, F. Redmann, R. Krause-Rehberg, M. Weidner, T. Frank, G. Pensl, P. Sperr, W. Triftshäuser and H. Itoh; Applied Physics Letters
<b> 79</b>
 (24)
 (2001)
 3950-3952.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kawasuso2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kawasuso2001','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.1426259">URL</a>]
[<a href="https://doi.org/10.1063/1.1426259">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kawasuso2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kawasuso2001" class="abstract noshow">
	<td><b>Abstract</b>: Annealing behavior of vacancies and the Z1/2 levels in n-type 4H-SiC epilayers after 2 MeV electron irradiation has been studied using positron annihilation and deep-level transient spectroscopy. Isochronal annealing studies indicate that silicon vacancy-related defects are primarily responsible for positron trapping. The Z1/2 levels are the predominant deep centers after irradiation and subsequent annealing at 1200 °C. Both the positron-trapping rate at vacancies and the Z1/2 concentration decrease in a similar manner while annealing from 1200 to 1500 °C. It is thus proposed that the Z1/2 levels originate from silicon vacancy-related defects. © 2001 American Institute of Physics.</td>
</tr>
<tr id="bib_Kawasuso2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Kawasuso2001,
	  author = {Kawasuso, A. and Redmann, F. and Krause-Rehberg, R. and Weidner, M. and Frank, T. and Pensl, G. and Sperr, P. and Triftshäuser, W. and Itoh, H.},
	  title = {Annealing behavior of vacancies and Z1/2 levels in electron-irradiated 4H-SiC studied by positron annihilation and deep-level transient spectroscopy},
	  journal = {Applied Physics Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {79},
	  number = {24},
	  pages = {3950--3952},
	  url = {http://aip.scitation.org/doi/10.1063/1.1426259},
	  doi = {https://doi.org/10.1063/1.1426259}
	}
	</pre></td>
</tr>






<tr id="Kawasuso2001a" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.1402144">Vacancies and deep levels in electron-irradiated 6H SiC epilayers studied by positron annihilation and deep level transient spectroscopy</a></em><br />
A. Kawasuso, F. Redmann, R. Krause-Rehberg, T. Frank, M. Weidner, G. Pensl, P. Sperr and H. Itoh; Journal of Applied Physics
<b> 90</b>
 (7)
 (2001)
 3377-3382.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kawasuso2001a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kawasuso2001a','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.1402144">URL</a>]
[<a href="https://doi.org/10.1063/1.1402144">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kawasuso2001a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kawasuso2001a" class="abstract noshow">
	<td><b>Abstract</b>: The annealing behavior of defects in n-type 6H SiC epilayers irradiated with 2 MeV electrons have been studied using positron annihilation and deep level transient spectroscopy. Vacancy-type defects are annealed at 500-700°C and 1200-1400°C. From the analysis of Doppler broadening spectra (core electron momentum distribution), the latter annealing process is attributed to the disappearance of complexes related to silicon vacancies and not to nearest neighbor divacancies. Among the observed deep levels, the E1/E2 levels show similar annealing behavior to that of positron annihilation centers above 1000°C. It is thus proposed that the E1/E2 levels originate from complexes containing silicon vacancies. © 2001 American Institute of Physics.</td>
</tr>
<tr id="bib_Kawasuso2001a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Kawasuso2001a,
	  author = {Kawasuso, A. and Redmann, F. and Krause-Rehberg, R. and Frank, T. and Weidner, M. and Pensl, G. and Sperr, P. and Itoh, H.},
	  title = {Vacancies and deep levels in electron-irradiated 6H SiC epilayers studied by positron annihilation and deep level transient spectroscopy},
	  journal = {Journal of Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {90},
	  number = {7},
	  pages = {3377--3382},
	  url = {http://aip.scitation.org/doi/10.1063/1.1402144},
	  doi = {https://doi.org/10.1063/1.1402144}
	}
	</pre></td>
</tr>






<tr id="Kawasuso2001b" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.353-356.537">Annealing Process of Defects in Epitaxial SiC Induced by He and Electron Irradiation: Positron Annihilation Study</a></em><br />
A. Kawasuso, F. Redmann, R. Krause-Rehberg, P. Sperr, T. Frank, M. Weidner, G. Pensl and H. Itoh; Materials Science Forum
<b> 353-356</b>

 (2001)
 537-540.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kawasuso2001b','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kawasuso2001b','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.353-356.537">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.353-356.537">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kawasuso2001b.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kawasuso2001b" class="abstract noshow">
	<td><b>Abstract</b>: Annealing processes of vacancy-type defects in epitaxial 6H SiC after 2 MeV electron irradiation and multiple He implantation have been investigated using positron annihilation spectroscopy. Vacancy-type defects are found to disappear in two annealing stages: at 500-800°C and 1200-1500°C. Silicon vacancies are the major positron trapping centers after electron irradiation. Two annealing stages after electron irradiation are attributed to the disappearance of isolated silicon vacancies and complexes associated with silicon vacancies, respectively. In He-irradiated SiC, divacancies are also generated in addition to silicon vacancies.</td>
</tr>
<tr id="bib_Kawasuso2001b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Kawasuso2001b,
	  author = {Kawasuso, Atsuo and Redmann, F. and Krause-Rehberg, R. and Sperr, Peter and Frank, Thomas and Weidner, Michael and Pensl, Gerhard and Itoh, Hisayoshi},
	  title = {Annealing Process of Defects in Epitaxial SiC Induced by He and Electron Irradiation: Positron Annihilation Study},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {353-356},
	  pages = {537--540},
	  url = {https://www.scientific.net/MSF.353-356.537},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.353-356.537}
	}
	</pre></td>
</tr>






<tr id="Kawasuso2001c" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0921-4526(01)00783-9">Vacancies in He-implanted 4H and 6H SiC epilayers studied by positron annihilation</a></em><br />
A. Kawasuso, M. Weidner, F. Redmann, T. Frank, P. Sperr, R. Krause-Rehberg, W. Triftshäuser and G. Pensl; Physica B: Condensed Matter
<b> 308-310</b>

 (2001)
 660-663.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kawasuso2001c','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kawasuso2001c','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0921452601007839">URL</a>]
[<a href="https://doi.org/10.1016/S0921-4526(01)00783-9">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kawasuso2001c.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kawasuso2001c" class="abstract noshow">
	<td><b>Abstract</b>: Defects in epitaxially grown 4H and 6H SiC induced by He-implantation have been studied by positron annihilation and deep level transient spectroscopy. Two major annealing processes of vacancy-type defects appeared at 500-800°C and above 1000°C irrespective of polytype and conduction type. In n-type samples, the latter process is dominated by two different types of defects. In n-type 6H SiC, Z1/2 levels emerged after annealing at 800°C. The Z1/2 levels disappeared around 1100°C with an appearance of E1/2 levels. The E1/2 levels are eventually annealed at 1500-1700°C. Similar annealing behavior was observed for the corresponding levels in n-type 4H SiC, i.e., RD1/2 and Z1/2 levels. The overall annealing behavior of vacancy-type defects by positron annihilation and the deep levels are in good agreement above 800°C suggesting that the above deep levels are related to the vacancy-type defects. © 2001 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Kawasuso2001c" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Kawasuso2001c,
	  author = {Kawasuso, A. and Weidner, M. and Redmann, F. and Frank, T. and Sperr, P. and Krause-Rehberg, R. and Triftshäuser, W. and Pensl, G.},
	  title = {Vacancies in He-implanted 4H and 6H SiC epilayers studied by positron annihilation},
	  journal = {Physica B: Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {308-310},
	  pages = {660--663},
	  url = {http://www.sciencedirect.com/science/article/pii/S0921452601007839},
	  doi = {https://doi.org/10.1016/S0921-4526(01)00783-9}
	}
	</pre></td>
</tr>






<tr id="Koegel2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.409">Positron microscopy</a></em><br />
G. Kögel; Materials Science Forum
<b> 363-365</b>

 (2001)
 409-414.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.409">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.409">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel2001" class="abstract noshow">
	<td><b>Abstract</b>: Positron Microscopy, particularly by means of a scanned positron microbeam, offers an universal route to control positrons before and, in principle, after the implantation into condensed matter. Besides spatial resolution also the measurements of defect concentrations and specific trapping rates are enabled. The current technique and some results will be reviewed. Instrumental requirements will be discussed for studies of various defect configurations as well as for the more advanced techniques of multi-positron pulses and of a release of positrons from surfaces and other traps.</td>
</tr>
<tr id="bib_Koegel2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel2001,
	  author = {Kögel, G.},
	  title = {Positron microscopy},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {409--414},
	  url = {https://www.scientific.net/MSF.363-365.409},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.409}
	}
	</pre></td>
</tr>






<tr id="Krause-Rehberg2001" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0921-4526(01)00717-7">Identification of getter defects in high-energy self-implanted silicon at Rp/2</a></em><br />
R. Krause-Rehberg, F. Börner, F. Redmann, J. Gebauer, R. Kögler, R. Kliemann, W. Skorupa, W. Egger, G. Kögel and W. Triftshäuser; Physica B: Condensed Matter
<b> 308-310</b>

 (2001)
 442-445.
<p class="infolinks">
[<a href="javascript:toggleInfo('Krause-Rehberg2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Krause-Rehberg2001','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0921452601007177">URL</a>]
[<a href="https://doi.org/10.1016/S0921-4526(01)00717-7">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Krause-Rehberg2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Krause-Rehberg2001" class="abstract noshow">
	<td><b>Abstract</b>: A strong gettering effect appears after high-energy Si self-implantation and subsequent annealing in two zones at the projected range of the silicon ions (Rp) and in a region at about Rp/2. The defects responsible for the impurity gettering at Rp/2 were studied by means of positron annihilation. It was found that diffusing Cu impurities were captured by small vacancy agglomerates. Monoenergetic positron beams with improved depth resolution were used to characterize the defects. Excellent depth resolution was obtained when samples were wedge-shaped polished and studied using the Munich Scanning Positron Microscope. © 2001 Elsevier Science B.V. All rights reserved.</td>
</tr>
<tr id="bib_Krause-Rehberg2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Krause-Rehberg2001,
	  author = {Krause-Rehberg, R. and Börner, F. and Redmann, F. and Gebauer, J. and Kögler, R. and Kliemann, R. and Skorupa, W. and Egger, W. and Kögel, G. and Triftshäuser, W.},
	  title = {Identification of getter defects in high-energy self-implanted silicon at Rp/2},
	  journal = {Physica B: Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {308-310},
	  pages = {442--445},
	  url = {http://www.sciencedirect.com/science/article/pii/S0921452601007177},
	  doi = {https://doi.org/10.1016/S0921-4526(01)00717-7}
	}
	</pre></td>
</tr>






<tr id="Slugen2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.47">Investigation of reactor steels</a></em><br />
V. Slugen, J. Hascik, R. Gröne, P. Bartik, A. Zeman, G. Kögel, P. Sperr and W. Triftshäuser; Materials Science Forum
<b> 363-365</b>

 (2001)
 47-51.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.47">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.47">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Slugen2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Slugen2001" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation spectroscopy (PAS) techniques, Mössbauer spectroscopy (MS) and transmission electron microscopy (TEM) were applied in the investigation of thermally treated reactor pressure vessel steels (RPV). Results of these methods are discussed and correlated with hardness measurement. PAS and MS measurements have been performed also on the original RPV specimens which are used in frame of the "Extended surveillance specimen program" at the 3rd and 4th units of NPP Jaslovské Bohunice (Slovakia). PAS angular correlation (1D-ACAR) and lifetime spectra (PLEPS) showed that the degradation of the steel properties caused by neutron irradiation can be detected. General discussion about the contribution of PAS to micro structural study of RPV-steels is included as well.</td>
</tr>
<tr id="bib_Slugen2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2001,
	  author = {Slugen, V. and Hascik, J. and Gröne, R. and Bartik, P. and Zeman, A. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Investigation of reactor steels},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {47--51},
	  url = {https://www.scientific.net/MSF.363-365.47},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.47}
	}
	</pre></td>
</tr>






<tr id="Slugen2001a" class="entry">

<td>
<em> Pulsed positron beam in investigation of reactor steels</a></em><br />
V. Slugeň, G. Kögel, P. Sperr and W. Triftshäuser; Journal of Electrical Engineering
<b> 52</b>
 (03-04)
 (2001)
 88-91.
<p class="infolinks">
[<a href="javascript:toggleInfo('Slugen2001a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Slugen2001a','bibtex')">BibTeX</a>]
[<a href="http://iris.elf.stuba.sk/cgi-bin/jeeec?act=abs&no=03-04_101&ttl=6">URL</a>]


</td>
</tr> 
<tr id="abs_Slugen2001a" class="abstract noshow">
	<td><b>Abstract</b>: The improved pulsed low-energy positron system (PLEPS) was used for positron lifetime spectroscopy in the investigation of irradiated nuclear reactor pressure vessel (RPV) steels microstructure. This system allows to study the microstructural changes in the region from 20 to 600 nm with small and very thin specimens by reducing the disturbing 60Co contribution to minimum. Such disturbance was the limiting factor for investigation of high-irradiated RPV specimens in the past. In the frame of the so-called "Extended surveillance specimens program'' started at the 3rd and 4th units of the nuclear power plant (NPP) Bohunice (Slovakia) in 1994, well-defined specimens were placed into irradiation channels and taken out after 1, 2 and 3 years in operated VVER-440 reactor, respectively. Samples from RPV base material (15Kh2MFA) and weld material (Sv10KhMFT) were measured before and after irradiation by neutron fluency in the range from 7.8x1023m-2 up to 2.3x1024m-2. Results from PLEPS measurements were correlated with those from other spectroscopic methods (Mössbauer spectroscopies and HV10) and discussed in detail.</td>
</tr>
<tr id="bib_Slugen2001a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Slugen2001a,
	  author = {Slugeň, Vladimír and Kögel, Gottfried and Sperr, Peter and Triftshäuser, Werner},
	  title = {Pulsed positron beam in investigation of reactor steels},
	  journal = {Journal of Electrical Engineering},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {52},
	  number = {03-04},
	  pages = {88--91},
	  url = {http://iris.elf.stuba.sk/cgi-bin/jeeec?act=abs&amp;no=03-04_101&amp;ttl=6}
	}
	</pre></td>
</tr>






<tr id="Sperr2001" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.532">'Smart cut' silicon by proton implantation: Lifetime studies with a pulsed positron beam</a></em><br />
P. Sperr, G. Kögel, W. Bauer-Kugelmann, W. Triftshäuser and M. Fujinami; Materials Science Forum
<b> 363-365</b>

 (2001)
 532-536.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sperr2001','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sperr2001','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.363-365.532">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.363-365.532">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sperr2001.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sperr2001" class="abstract noshow">
	<td><b>Abstract</b>: High dose implantation of hydrogen into silicon and subsequent annealing induce a splitting of silicon. The state of hydrogen and the implantation induced defects are of scientific and technological interest. Samples implanted with 1 · 1016 and 5 · 1016 H+/cm2 at an energy of 60 keV were investigated after different thermal annealing treatments with the pulsed positron beam as a function of the positron energy and the specimen temperature (80K to 500K). There is clear evidence of growth of defect clusters with increasing annealing temperature which correspond in depth with the mean projected range of the implanted hydrogen atoms. In addition to the large defect agglomerates, there are most likely shallow positron traps which are effective only when the specimens are measured at low temperature.</td>
</tr>
<tr id="bib_Sperr2001" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sperr2001,
	  author = {Sperr, P. and Kögel, G. and Bauer-Kugelmann, W. and Triftshäuser, W. and Fujinami, M.},
	  title = {'Smart cut' silicon by proton implantation: Lifetime studies with a pulsed positron beam},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2001},
	  volume = {363-365},
	  pages = {532--536},
	  url = {https://www.scientific.net/MSF.363-365.532},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.363-365.532}
	}
	</pre></td>
</tr>




<tr id="2000" class="entry"><td><h1>2000</h1></td></tr>

<tr id="Britton2000" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0168-583X(99)01053-8">Structural characterization of hydrogenated a-Si using slow positron beam techniques</a></em><br />
D. Britton, A. Hempel, D. Knoesen, W. Bauer-Kugelmann and W. Triftshäuser; Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms
<b> 164</b>

 (2000)
 1010-1015.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton2000','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton2000','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168583X99010538">URL</a>]
[<a href="https://doi.org/10.1016/S0168-583X(99)01053-8">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton2000.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton2000" class="abstract noshow">
	<td><b>Abstract</b>: Hydrogenated amorphous silicon (a-Si:H) grown by hot wire chemical vapour deposition is a promising candidate for robust inexpensive solar cells. However, prolonged exposure to light is known to lead to a reduction in efficiency of a-Si:H devices. The causes for this ageing effect are still unclear, but may be related to a structural relaxation or change in hydrogen content. In this work, results are presented for positron beam studies of the defect structure, using both lifetime and Doppler-broadening spectroscopy, of a-Si:H grown under different conditions.</td>
</tr>
<tr id="bib_Britton2000" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton2000,
	  author = {Britton, D.T. and Hempel, A. and Knoesen, D. and Bauer-Kugelmann, W. and Triftshäuser, W.},
	  title = {Structural characterization of hydrogenated a-Si using slow positron beam techniques},
	  journal = {Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2000},
	  volume = {164},
	  pages = {1010--1015},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168583X99010538},
	  doi = {https://doi.org/10.1016/S0168-583X(99)01053-8}
	}
	</pre></td>
</tr>






<tr id="Gebauer2000" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.373549">Defect identification in GaAs grown at low temperatures by positron annihilation</a></em><br />
J. Gebauer, F. Börner, R. Krause-Rehberg, T. Staab, W. Bauer-Kugelmann, G. Kögel, W. Triftshäuser, P. Specht, R. Lutz, E. Weber and M. Luysberg; Journal of Applied Physics
<b> 87</b>
 (12)
 (2000)
 8368-8379.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gebauer2000','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gebauer2000','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.373549">URL</a>]
[<a href="https://doi.org/10.1063/1.373549">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gebauer2000.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gebauer2000" class="abstract noshow">
	<td><b>Abstract</b>: We use positron annihilation to study vacancy defects in GaAs grown at low temperatures (LT-GaAs). The vacancies in as-grown LT-GaAs can be identified to be Ga monovacancies, VGa, according to their positron lifetime and annihilation momentum distribution. The charge state of the vacancies is neutral. This is ascribed to the presence of positively charged As+ Ga antisite defects in vicinity to the vacancies. Theoretical calculations of the annihilation parameters show that this assignment is consistent with the data. The density of VGa is related to the growth stoichiometry in LT-GaAs, i.e., it increases with the As/Ga beam equivalent pressure (BEP) and saturates at 2×1018 cm-3 for a BEP≥20 and a low growth temperature of 200°C. Annealing at 600°C removes VGa. Instead, larger vacancy agglomerates with a size of approximately four vacancies are found. It will be shown that these vacancy clusters are associated with the As precipitates formed during annealing. © 2000 American Institute of Physics.</td>
</tr>
<tr id="bib_Gebauer2000" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gebauer2000,
	  author = {Gebauer, J. and Börner, F. and Krause-Rehberg, R. and Staab, T.E.M. and Bauer-Kugelmann, W. and Kögel, G. and Triftshäuser, W. and Specht, P. and Lutz, R.C. and Weber, E.R. and Luysberg, M.},
	  title = {Defect identification in GaAs grown at low temperatures by positron annihilation},
	  journal = {Journal of Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2000},
	  volume = {87},
	  number = {12},
	  pages = {8368--8379},
	  url = {http://aip.scitation.org/doi/10.1063/1.373549},
	  doi = {https://doi.org/10.1063/1.373549}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser2000" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0042-207X(99)00198-0">Positron annihilation in near-surface regions and layered structures</a></em><br />
W. Triftshäuser; Vacuum
<b> 58</b>
 (1)
 (2000)
 33-44.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser2000','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser2000','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0042207X99001980">URL</a>]
[<a href="https://doi.org/10.1016/S0042-207X(99)00198-0">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser2000.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser2000" class="abstract noshow">
	<td><b>Abstract</b>: Positrons are very sensitive probes for vacancy-type defects of atomic dimensions, e.g. vacancies, vacancy agglomerates, dislocations or inner surfaces. It is well established that positrons can be trapped at these defects and, because of the locally reduced electron density, the lifetime of the positron localized at the defect increases. This lifetime has characteristic values for each defect type and therefore it is possible to separate out various atomic defect configurations and their relative abundance with very high sensitivity (approx. 1 ppm) and in a nondestructive way. With a pulsed positron beam (approx. 3 mm diameter) of variable energy, lifetime studies can be performed as a function of the positron energy and hence the penetrations depth. Results on silicon and silicon carbide subjected to different treatments will be discussed. For many applications in materials science a positron beam in the micrometer range is desirable. This leads to a scanning positron microscope consisting of a pulsed positron beam of micrometer dimension with a scanning facility. The design and the performance of this first system of its kind will be presented.</td>
</tr>
<tr id="bib_Triftshaeuser2000" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser2000,
	  author = {Triftshäuser, W.},
	  title = {Positron annihilation in near-surface regions and layered structures},
	  journal = {Vacuum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {2000},
	  volume = {58},
	  number = {1},
	  pages = {33--44},
	  url = {http://www.sciencedirect.com/science/article/pii/S0042207X99001980},
	  doi = {https://doi.org/10.1016/S0042-207X(99)00198-0}
	}
	</pre></td>
</tr>




<tr id="1999" class="entry"><td><h1>1999</h1></td></tr>

<tr id="Hugenschmidt1999" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(99)00163-4">High intense positron beam at the new Munich research reactor FRM-II</a></em><br />
C. Hugenschmidt, G. Kögel, K. Schreckenbach, P. Sperr, M. Springer, B. Straßer and W. Triftshäuser; Applied Surface Science
<b> 149</b>
 (1)
 (1999)
 7-10.
<p class="infolinks">
[<a href="javascript:toggleInfo('Hugenschmidt1999','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Hugenschmidt1999','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433299001634">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(99)00163-4">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Hugenschmidt1999.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Hugenschmidt1999" class="abstract noshow">
	<td><b>Abstract</b>: The Munich Intense POsitron Source (MIPOS) facility for producing a high intense positron beam at the new Munich research reactor (Forschungs-Reaktor Muenchen II) FRM-II is presented. Positrons are generated by pair production of high energy prompt γ-rays from neutron capture in cadmium: 113Cd(n,γ)114Cd. A cadmium cap will be located inside a beamtube at an undisturbed thermal neutron flux of 2×1014 n cm-2 s-1. Model calculation showed that this would lead to a mean capture rate of 1.2×1013 n cm-2 s-1. Thermal load resulting from absorbed γ-rays is expected to be less than 4 W cm-2. Inside the cadmium cap a structure of platinum and a stack of tungsten foils is placed for converting the γ-rays into positron-electron pairs. Platinum is used as converting material, since the cross section for pair production is even higher (+11%) than in tungsten. The maximum of the energy spectrum of the positrons produced is about 800 keV. The tungsten foils also act as moderator. The positrons will be accelerated by electric lenses and guided by magnetic fields. Various arrangements are tested to improve the efficiency of the system. After remoderation of the positron beam an intensity of about 109 slow positrons per second is expected.</td>
</tr>
<tr id="bib_Hugenschmidt1999" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Hugenschmidt1999,
	  author = {Hugenschmidt, C. and Kögel, G. and Schreckenbach, K. and Sperr, P. and Springer, M. and Straßer, B. and Triftshäuser, W.},
	  title = {High intense positron beam at the new Munich research reactor FRM-II},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1999},
	  volume = {149},
	  number = {1},
	  pages = {7--10},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433299001634},
	  doi = {https://doi.org/10.1016/S0169-4332(99)00163-4}
	}
	</pre></td>
</tr>






<tr id="Osipowicz1999" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(99)00200-7">Characterization of RF-sputtered platinum films from industrial production plants using slow positrons</a></em><br />
A. Osipowicz, M. Härting, M. Hempel, D. Britton, W. Bauer-Kugelmann and W. Triftshäuser; Applied Surface Science
<b> 149</b>
 (1)
 (1999)
 198-203.
<p class="infolinks">
[<a href="javascript:toggleInfo('Osipowicz1999','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Osipowicz1999','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433299002007">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(99)00200-7">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Osipowicz1999.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Osipowicz1999" class="abstract noshow">
	<td><b>Abstract</b>: Platinum films, used in thin film technology, produced by radiofrequency sputter deposition on alumina substrates under different conditions, have been studied by positron beam and other techniques, before and after production annealing. The defect structure in the layers has been characterized using both positron lifetime and Doppler broadening spectroscopy, and compared with X-ray studies of crystallinity and texture. The films are topographically irregular, with a grain size comparable to the thickness of the layer. All layers show pronounced crystallographic texture but this does not appear to be related to the sample processing.</td>
</tr>
<tr id="bib_Osipowicz1999" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Osipowicz1999,
	  author = {Osipowicz, A. and Härting, M. and Hempel, M. and Britton, D.T. and Bauer-Kugelmann, W. and Triftshäuser, W.},
	  title = {Characterization of RF-sputtered platinum films from industrial production plants using slow positrons},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1999},
	  volume = {149},
	  number = {1},
	  pages = {198--203},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433299002007},
	  doi = {https://doi.org/10.1016/S0169-4332(99)00200-7}
	}
	</pre></td>
</tr>






<tr id="Sperr1999" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0168-9002(99)00240-5">A variable nanosecond delay for fast signals</a></em><br />
P. Sperr and M. Maier; Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment
<b> 431</b>
 (1)
 (1999)
 234-235.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sperr1999','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sperr1999','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168900299002405">URL</a>]
[<a href="https://doi.org/10.1016/S0168-9002(99)00240-5">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sperr1999.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sperr1999" class="abstract noshow">
	<td><b>Abstract</b>: A simple continuously variable nanosecond delay for fast signals has been devised. In this concept, the alignment of the fast channels may be performed manually or by a computer set control voltages. The performance of the design has been confirmed using conventional fast timing systems. Results from this application show that the simple delay generator is well applicable in fast timing measurements where a controllable continuous delay is needed.</td>
</tr>
<tr id="bib_Sperr1999" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sperr1999,
	  author = {Sperr, P. and Maier, M.R.},
	  title = {A variable nanosecond delay for fast signals},
	  journal = {Nuclear Instruments and Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors and Associated Equipment},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1999},
	  volume = {431},
	  number = {1},
	  pages = {234--235},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168900299002405},
	  doi = {https://doi.org/10.1016/S0168-9002(99)00240-5}
	}
	</pre></td>
</tr>




<tr id="1998" class="entry"><td><h1>1998</h1></td></tr>

<tr id="Wilhelm1998" class="entry">

<td>
<em> <a href="https://doi.org/10.1006/jcht.1998.0427">Thermodynamics of liquid mixtures consisting of a very polar and a non-polar aromatic: (Benzonitrile + benzene, or toluene)</a></em><br />
E. Wilhelm, W. Egger, M. Vencour, A. Roux, M. Polednicek and J.-P. Grolier; Journal of Chemical Thermodynamics
<b> 30</b>
 (12)
 (1998)
 1509-1532.
<p class="infolinks">
[<a href="javascript:toggleInfo('Wilhelm1998','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Wilhelm1998','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S002196149890427X">URL</a>]
[<a href="https://doi.org/10.1006/jcht.1998.0427">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Wilhelm1998.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Wilhelm1998" class="abstract noshow">
	<td><b>Abstract</b>: For the two binary liquid systems xC6H5CN + (1 - x)C6H6 and xC6H5CN + (1 - x) C6H5CH3, excess molar volumes VEm, excess molar enthalpies HEm, and excess molar heat capacities CEp,m at constant pressure have been measured as a function of mole fraction x. Values of VEm were determined at T = (298.15, 308.15, and 318.15) K, HEm was determined at T = (293.15, 298.15, and 303.15)K, and CEp,m was determined at T = 298.15K (all at atmospheric pressure). The instruments used were, respectively, a vibrating-tube densimeter (from Sodev), an LKB differential flow microcalorimeter equipped with two computer-controlled h.p.l.c. piston pumps (from Gilson), and a Picker flow microcalorimeter (from Setaram). In addition, isobaric heat capacities divided by volume C p,m/Vm of the pure liquids, as well as several selected mixtures, were measured with a programmable differential scanning calorimeter of the Calvet type (micro-d.s.c., from Setaram) between approximately T = 280K and T = 350K. Both systems show relatively small negative excess molar volumes, which become more negative with increasing temperature. The excess molar enthalpies are highly unusual in that for both systems an M-shaped composition dependence is observed (two maxima and one minimum). The M-shape is much more prenounced for (benzonitrile + toluene) than for (benzonitrile + benzene), and appears to vanish for the latter system below T = 298.15K. The results can be understood in terms of a simple theory of complex formation (Guggenheim-McGlashan). The excess molar heat capacity at constant pressure at T = 298.15K of (benzonitrile + toluene) is positive at all compositions, while that of (benzonitrile + benzene) is positive only for 0 &amp;lt; x &amp;lt; 0.071, and negative otherwise (sigmoidal shape). Combining the heat capacities obtained with the Picker calorimeter at T = 298.15 K with our results for Cp,m/Vm obtained with the micro-d.s.c. in conjunction with our density data, excess molar heat capacities have also been derived for (benzonitrile + toluene) at T = (288.15, 308.15, 318.15, and 328.15) K. For this system, the maximum of the curve CEp,m against x becomes somewhat smaller with increasing temperature and is shifted towards larger values of x, i.e. the curves become more symmetric. © 1998 Academic Press.</td>
</tr>
<tr id="bib_Wilhelm1998" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Wilhelm1998,
	  author = {Wilhelm, E. and Egger, W. and Vencour, M. and Roux, A.H. and Polednicek, M. and Grolier, J.-P.E.},
	  title = {Thermodynamics of liquid mixtures consisting of a very polar and a non-polar aromatic: (Benzonitrile + benzene, or toluene)},
	  journal = {Journal of Chemical Thermodynamics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1998},
	  volume = {30},
	  number = {12},
	  pages = {1509--1532},
	  url = {http://www.sciencedirect.com/science/article/pii/S002196149890427X},
	  doi = {https://doi.org/10.1006/jcht.1998.0427}
	}
	</pre></td>
</tr>






<tr id="Zhou1998" class="entry">

<td>
<em> Low energy positron lifetime studies on open-volume defects of epitaxial high temperature superconductor thin film YBa2Cu3O 7-x</a></em><br />
X. Zhou and W. Triftshäuser; He Jishu/Nuclear Techniques
<b> 21</b>
 (2)
 (1998)
.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zhou1998','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zhou1998','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="abs_Zhou1998" class="abstract noshow">
	<td><b>Abstract</b>: By using a pulsed low energy positron lifetime system, the positron lifetime spectra were measured of the high-temperature superconducting epitaxial thin film YBa2Cu3O7-x samples prepared by the pulsed laser deposition (PLD), magnetron-sputtering method and evaporation method, respectively. It is found that besides shallow positron trapping centers there are a number of deep trapping centers which the bulk material lacks. At low temperature the deep trapping centers have a tendency to enlarge. The relationship between positron lifetime and the deposition conditions (substrate temperature and partial air pressure) of the PLD films indicates that the defect type is independent of the deposition conditions and the defect concentration increases with decreasing substrate temperature or rising partial air pressure.</td>
</tr>
<tr id="bib_Zhou1998" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zhou1998,
	  author = {Zhou, X. and Triftshäuser, W.},
	  title = {Low energy positron lifetime studies on open-volume defects of epitaxial high temperature superconductor thin film YBa2Cu3O 7-x},
	  journal = {He Jishu/Nuclear Techniques},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1998},
	  volume = {21},
	  number = {2}
	}
	</pre></td>
</tr>






<tr id="Zhou1998a" class="entry">

<td>
<em> Temperature dependence of positron lifetime in a laser-ablated YBa_2Cu_3O_7 - X film</a></em><br />
X.Y. Zhou, B.Y. Li, G. Kögel and W. Triftshäuser; Chinese Journal of Low Temperature Physics
<b> 20</b>
 (5)
 (1998)
 348-355.
<p class="infolinks">


[<a href="javascript:toggleInfo('Zhou1998a','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Zhou1998a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zhou1998a,
	  author = {Zhou, X. Y. and Li, B. Y. and Kögel, G. and Triftshäuser, W.},
	  title = {Temperature dependence of positron lifetime in a laser-ablated YBa_2Cu_3O_7 - X film},
	  journal = {Chinese Journal of Low Temperature Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1998},
	  volume = {20},
	  number = {5},
	  pages = {348--355}
	}
	</pre></td>
</tr>




<tr id="1997" class="entry"><td><h1>1997</h1></td></tr>

<tr id="Bauer-Kugelmann1997" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(96)01060-4">Diffusivity and surface transition rate of positrons in crystalline silicon as a function of dopant concentration</a></em><br />
W. Bauer-Kugelmann, J. Duffy, J. Störmer, G. Kögel and W. Triftshäuser; Applied Surface Science
<b> 116</b>

 (1997)
 231-235.
<p class="infolinks">
[<a href="javascript:toggleInfo('Bauer-Kugelmann1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Bauer-Kugelmann1997','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433296010604?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(96)01060-4">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Bauer-Kugelmann1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Bauer-Kugelmann1997" class="abstract noshow">
	<td><b>Abstract</b>: Positron lifetime measurements have been performed on silicon as a function of dopant concentration with the pulsed low-energy positron system (PLEPS II). The lifetime spectra were analysed with a modified version of Positronfit. Values have been obtained for the lifetimes and the corresponding intensities as a function of implantation energy for each sample. Using a new approach for the solution of the diffusion-trapping-model, the mean lifetime and the surface lifetime intensity are used to calculate the diffusion coefficient D and surface transition rate v. Both parameters vary only smoothly in n-doped and weakly p-doped material. For p-type silicon in the concentration range from 1015 to 1021 cm-3 both values first decrease by two orders of magnitude, leading to a minimum in D and v at ca= 1018 cm-3. For higher acceptor concentrations the values for D and v increase again by one order of magnitude. We believe that the accumulation of positrons in so-called Debye-Hückel clouds around negatively charged acceptors in the crystal is the most important contribution.</td>
</tr>
<tr id="bib_Bauer-Kugelmann1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Bauer-Kugelmann1997,
	  author = {Bauer-Kugelmann, W. and Duffy, J.A. and Störmer, J. and Kögel, G. and Triftshäuser, W.},
	  title = {Diffusivity and surface transition rate of positrons in crystalline silicon as a function of dopant concentration},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {116},
	  pages = {231--235},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433296010604?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0169-4332(96)01060-4}
	}
	</pre></td>
</tr>






<tr id="Bauer-Kugelmann1997a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.662">Positron lifetimes and positron moderation of 4H-SiC subjected to various treatments</a></em><br />
W. Bauer-Kugelmann, G. Kögel, P. Sperr and W. Triftshäuser; Materials Science Forum
<b> 255-257</b>

 (1997)
 662-664.
<p class="infolinks">
[<a href="javascript:toggleInfo('Bauer-Kugelmann1997a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Bauer-Kugelmann1997a','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.255-257.662">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.662">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Bauer-Kugelmann1997a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Bauer-Kugelmann1997a" class="abstract noshow">
	<td><b>Abstract</b>: Epitaxial p-SiC layers on n-SiC substrates have been exposed to ion implantation, surface oxidation and post irradiation annealing prior to investigation by the Munich pulsed positron beam in order to obtain a better understanding of positron diffusion, defect trapping and positron re-emission. In the oxide layer, a fraction of up to 40% of the positrons annihilate with a very high lifetime of about 1600 ps, due to positronium formation. At intermediate energies all but the irradiated sample show a minimum in the mean lifetime which can be attributed to annihilation from the bulk. For higher positron implantation energies the mean lifetime is increasing again and the two component fit reveals a second lifetime of about 560 ps in this energy range. Therefore we conclude on defects close to the substrate surface which could be introduced in the nucleation period of epitaxy. In the Al-implanted layer we find trapping at defects with a positron lifetime of about 218 ps. After annealing these defects are almost completely removed. All the unoxidized samples show reemission of positrons at positron energies < 5 keV. Re-emission in the Al-implanted and annealed sample exceeds the one of a p-SiC wafer by a factor of more than 10. A reverse biased pin diode based on SiC with an Al-implanted 4H-SiC surface layer would act as a field assisted moderator.</td>
</tr>
<tr id="bib_Bauer-Kugelmann1997a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Bauer-Kugelmann1997a,
	  author = {Bauer-Kugelmann, W. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Positron lifetimes and positron moderation of 4H-SiC subjected to various treatments},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {255-257},
	  pages = {662--664},
	  url = {https://www.scientific.net/MSF.255-257.662},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.255-257.662}
	}
	</pre></td>
</tr>






<tr id="David1997" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.741">Progress report from the Munich Scanning Positron Microscope</a></em><br />
A. David, G. Kögel, P. Sperr and W. Triftshäuser; Materials Science Forum
<b> 255-257</b>

 (1997)
 741-743.
<p class="infolinks">
[<a href="javascript:toggleInfo('David1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('David1997','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.255-257.741">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.741">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/David1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_David1997" class="abstract noshow">
	<td><b>Abstract</b>: A first prototype of a Scanning Positron Microscope (SPM) with a pulsed beam has been developed in Munich. Besides of the positron beam also an electron beam is provided which produces a conventional electron image of the specimen. Currently we are setting the SPM in operation. A number of problems have been encountered in this process, particularly with the beam control, with various deflection systems and with instabilities due to fluctuating magnetic fields. The technical modifications to overcome these problems and the improvements achieved in this way will be reported.</td>
</tr>
<tr id="bib_David1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{David1997,
	  author = {David, A. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Progress report from the Munich Scanning Positron Microscope},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {255-257},
	  pages = {741--743},
	  url = {https://www.scientific.net/MSF.255-257.741},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.255-257.741}
	}
	</pre></td>
</tr>






<tr id="Duffy1997" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(96)01062-8">Investigation of band bending in silicon by slow positron lifetime measurements</a></em><br />
J. Duffy, W. Bauer-Kugelmann, G. Kögel and W. Triftshäuser; Applied Surface Science
<b> 116</b>

 (1997)
 241-246.
<p class="infolinks">
[<a href="javascript:toggleInfo('Duffy1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Duffy1997','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433296010628?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(96)01062-8">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Duffy1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Duffy1997" class="abstract noshow">
	<td><b>Abstract</b>: A novel approach to the analysis of positron lifetime data in depth sensitive studies using a pulsed positron beam is applied to model the diffusion of positrons in silicon. By examining only the observable lifetime parameters, inhomogeneous effects can be studied without the need to solve the time dependent diffusion equation. In particular, we study the effect of band bending near the sample surface, which creates an internal electric field. We present our first results of this analysis on p- and n-type bulk silicon samples. No band-bending could be measured for samples covered with a natural oxide. After surface treatment with HF(aq), p-type samples exhibited band bending, but the results for n-type samples were not significantly affected. In only one case, a p-type Si(B) sample with acceptor concentration ca = 1020 cm-3 and with a H terminated surface, is evidence of Fermi level pinning observed.</td>
</tr>
<tr id="bib_Duffy1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Duffy1997,
	  author = {Duffy, J.A. and Bauer-Kugelmann, W. and Kögel, G. and Triftshäuser, W.},
	  title = {Investigation of band bending in silicon by slow positron lifetime measurements},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {116},
	  pages = {241--246},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433296010628?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0169-4332(96)01062-8}
	}
	</pre></td>
</tr>






<tr id="Gebauer1997" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.204">Vacancy defects in low-temperature-grown GaAs observed by continuous and pulsed slow positrons</a></em><br />
J. Gebauer, R. Krause-Rehberg, S. Eichler, W. Bauer-Kugelmann, G. Kögel, W. Trifthäuser, M. Luysberg, H. Sohn and E. Weber; Materials Science Forum
<b> 255-257</b>

 (1997)
 204-208.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gebauer1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gebauer1997','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.255-257.204">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.204">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gebauer1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gebauer1997" class="abstract noshow">
	<td><b>Abstract</b>: A systematic investigation of GaAs grown at low temperatures (LT-GaAs) was carried out. The vacancy defects in the as-grown material were identified to be mainly Ga vacancies by comparing the core-(W) and valence-(S) annihilation parameters to that of Ga vacancies in highly Si-doped GaAs. The vacancy concentration increases up to 1018 cm-3. Isochronal annealing was done at various samples. The S parameter in the samples increases with annealing, suggesting the formation of new defects. By checking the correlation between S and W we estimated that the defects seen in annealed LT-GaAs are physically different from that in the as-grown state. The annealed samples showed nearly saturated trapping with a defect related positron lifetime of 345 ps, which can be attributed to vacancy clusters or the As precipitates found by correlated TEM measurements.</td>
</tr>
<tr id="bib_Gebauer1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gebauer1997,
	  author = {Gebauer, J. and Krause-Rehberg, R. and Eichler, S. and Bauer-Kugelmann, W. and Kögel, G. and Trifthäuser, W. and Luysberg, M. and Sohn, H. and Weber, E.R.},
	  title = {Vacancy defects in low-temperature-grown GaAs observed by continuous and pulsed slow positrons},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {255-257},
	  pages = {204--208},
	  url = {https://www.scientific.net/MSF.255-257.204},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.255-257.204}
	}
	</pre></td>
</tr>






<tr id="Kauffmann1997" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.680">Preparation of intense positron sources for beam applications</a></em><br />
A. Kauffmann, P. Sperr, G. Kögel and W. Triftshäuser; Materials Science Forum
<b> 255-257</b>

 (1997)
 680-682.
<p class="infolinks">
[<a href="javascript:toggleInfo('Kauffmann1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Kauffmann1997','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.255-257.680">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.680">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Kauffmann1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Kauffmann1997" class="abstract noshow">
	<td><b>Abstract</b>: Radioactive isotopes are most frequently used as primary positron sources for low energy positron beam systems. In order to obtain optimum positron beam conditions, small source diameters with high intensities are desirable. Two different types of sources were prepared and investigated. 58Co was produced in a nuclear reactor via the reaction 58Ni(n,p)58Co. The bulk material was chemically separated and the 58Co was electrochemically deposited on a 1 mm diameter gold surface. The other type of source was obtained from sodium-acetate, which is commercially available. The solution was deposited on various surfaces. The prepared sources were investigated regarding the influence of inactive carrier material, internal and capsule absorption as well as backing materials by direct measurements of the positron energy spectra using a PIN-diode. In order to avoid the problem of handling very high activities, which should be applicable in these preparations, inactive material was added to simulate the absorption processes in the source.</td>
</tr>
<tr id="bib_Kauffmann1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Kauffmann1997,
	  author = {Kauffmann, A. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Preparation of intense positron sources for beam applications},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {255-257},
	  pages = {680--682},
	  url = {https://www.scientific.net/MSF.255-257.680},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.255-257.680}
	}
	</pre></td>
</tr>






<tr id="Koegel1997a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(96)01038-0">The München scanning positron microscope</a></em><br />
G. Kögel, W. Triftshäuser, P. Sperr, K. Uhlmann, D. Britton, P. Willutzki, R. Steindl, W. Junker, A. Zecca, R. Brusa, M. Duarte-Naia, G. Karwasz, J. Paridaens and A. Piazza; Applied Surface Science
<b> 116</b>

 (1997)
 108-113.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1997a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1997a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433296010380?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(96)01038-0">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1997a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1997a" class="abstract noshow">
	<td><b>Abstract</b>: For the first time a scanning positron microscope (SPM) using a pulsed positron beam for the nondestructive, three-dimensionally resolved investigation of defect distributions has been constructed. A positron beam with variable energy from 0.5 to 30 keV, with a spot diameter of 1 μm or below, can be scanned over an area of 0.6 × 0.6 mm2. Beam pulsing enables positron lifetime studies with a time resolution of 200 ps FWHM. The beam is formed by double stage stochastic cooling (moderation) of the positrons emitted from a radioactive isotope. Included in the system is a conventional scanning electron microprobe for easy alignment of the optical column and for surface analysis. The design of the entire SPM is determined by the special demands of positron physics, which are discussed briefly.</td>
</tr>
<tr id="bib_Koegel1997a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1997a,
	  author = {Kögel, G. and Triftshäuser, W. and Sperr, P. and Uhlmann, K. and Britton, D.T. and Willutzki, P. and Steindl, R. and Junker, W. and Zecca, A. and Brusa, R.S. and Duarte-Naia, M.P. and Karwasz, G.P. and Paridaens, J. and Piazza, A.},
	  title = {The München scanning positron microscope},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {116},
	  pages = {108--113},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433296010380?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0169-4332(96)01038-0}
	}
	</pre></td>
</tr>






<tr id="Koegel1997b" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.243">Recent investigations on the reconstruction of defect profiles from data obtained by pulsed positron beams</a></em><br />
G. Kögel; Materials Science Forum
<b> 255-257</b>

 (1997)
 243-247.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1997b','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1997b','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.255-257.243">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.243">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1997b.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1997b" class="abstract noshow">
	<td><b>Abstract</b>: A general procedure is presented for the systematic determination of the microscopic defect structure from lifetime measurements with pulsed positron beams. The proposed procedure is based on exact relations with full regard of counting statistics. Initially, a deterministic search for characteristic features of the depth profile is performed in the correlation matrix of the experimental data. On this basis the entire problem is decomposed into a set of small subproblems which can be handled by well established iterative search methods.</td>
</tr>
<tr id="bib_Koegel1997b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1997b,
	  author = {Kögel, G.},
	  title = {Recent investigations on the reconstruction of defect profiles from data obtained by pulsed positron beams},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {255-257},
	  pages = {243--247},
	  url = {https://www.scientific.net/MSF.255-257.243},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.255-257.243}
	}
	</pre></td>
</tr>






<tr id="Shi1997" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(96)01055-0">Defect spectroscopy in diamond, a new model for positron trapping in insulators</a></em><br />
M. Shi, W. Waeber and W. Triftshäuser; Applied Surface Science
<b> 116</b>

 (1997)
 203-210.
<p class="infolinks">
[<a href="javascript:toggleInfo('Shi1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Shi1997','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433296010550?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(96)01055-0">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Shi1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Shi1997" class="abstract noshow">
	<td><b>Abstract</b>: The purpose of this contribution is double. The first aim is an attempt to understand the positron's behavior in diamond, i.e. the positron annihilation rate in its delocalized states and the trapping process to vacancy-type defects. The second purpose is to qualify diamond membranes which have been produced for the application of field-assisted positron moderation. The results obtained from this comprehensive study of diamond single crystals and diamond membranes by using positron annihilation techniques are presented. The proposed mechanism for the trapping of positrons to vacancy-type defects, namely through positronium formation, gives a new picture for understanding the trapping process in insulators. It can be used to interpret the discrepancies in the earlier experimental results. The obtained results for diamond membranes indicate that they have sufficient quality to be used as the main body of field-assisted moderators.</td>
</tr>
<tr id="bib_Shi1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Shi1997,
	  author = {Shi, M. and Waeber, W.B. and Triftshäuser, W.},
	  title = {Defect spectroscopy in diamond, a new model for positron trapping in insulators},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {116},
	  pages = {203--210},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433296010550?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0169-4332(96)01055-0}
	}
	</pre></td>
</tr>






<tr id="Sperr1997" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(96)01032-X">Pulsing of low energy positron beams</a></em><br />
P. Sperr, G. Kögel, P. Willutzki and W. Triftshäuser; Applied Surface Science
<b> 116</b>

 (1997)
 78-81.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sperr1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sperr1997','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S016943329601032X?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(96)01032-X">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sperr1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sperr1997" class="abstract noshow">
	<td><b>Abstract</b>: In this contribution we report on the pulsing components and on the timing performance of our new positron beam facility (the first stage of the scanning positron microscope). Some details of the timing elements and the mechanical construction of the pulsing (bunching) elements are given. First experimental results of the timing measurements of the single stages of the pulsing elements are given.</td>
</tr>
<tr id="bib_Sperr1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sperr1997,
	  author = {Sperr, P. and Kögel, G. and Willutzki, P. and Triftshäuser, W.},
	  title = {Pulsing of low energy positron beams},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {116},
	  pages = {78--81},
	  url = {http://www.sciencedirect.com/science/article/pii/S016943329601032X?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0169-4332(96)01032-X}
	}
	</pre></td>
</tr>






<tr id="Sperr1997a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.109">Present performance limits of pulsed positron beams</a></em><br />
P. Sperr and G. Kögel; Materials Science Forum
<b> 255-257</b>

 (1997)
 109-113.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sperr1997a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sperr1997a','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.255-257.109">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.109">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sperr1997a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sperr1997a" class="abstract noshow">
	<td><b>Abstract</b>: Pulsed positron beams can out perform conventional positron lifetime systems by orders of magnitude in both event rate and peak to background ratio. The actual performance of low energy pulsed positron beams, however, is is still far from its limits. The technical reasons are spotted and possible improvements are discussed with respect to over ten years of technical developments performed at Munich. Improvements like reduction of the pulse period to 50 MHz, saw-tooth prebuncher, pre-chopper and redesign of the sample chamber which were performed in our currently running system (version 2) are shown. It is argued, that the third version (now under construction) will finally accumulate 104 counts/s at a peak to background ratio of 105. We also show plans of a rf-accelerator for a pulsed variable energy positron beam with source and sample on ground potential.</td>
</tr>
<tr id="bib_Sperr1997a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sperr1997a,
	  author = {Sperr, P. and Kögel, G.},
	  title = {Present performance limits of pulsed positron beams},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {255-257},
	  pages = {109--113},
	  url = {https://www.scientific.net/MSF.255-257.109},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.255-257.109}
	}
	</pre></td>
</tr>






<tr id="Springer1997" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.695">Intense positron source at the Munich research reactor</a></em><br />
M. Springer, G. Kögel, B. Straßer, W. Triftshäuser and K. Schreckenbach; Materials Science Forum
<b> 255-257</b>

 (1997)
 695-697.
<p class="infolinks">
[<a href="javascript:toggleInfo('Springer1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Springer1997','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.255-257.695">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.255-257.695">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Springer1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Springer1997" class="abstract noshow">
	<td><b>Abstract</b>: An in-pile slow positron source was recently installed at the FRM research reactor of the Technical University of Munich. Neutron capture gamma rays of 113 Cd (n,γ) 114 Cd are converted into e+ - e- pairs by absorption in tungsten foils. Moderated positrons are emitted from the foil surface, accelerated by electric lenses to a few keV and guided to a remoderator outside the reactor pool by a magnetic solenoid. In a first approach the beam at the entrance of the remoderator yielded an intensity of 2.108 slow positrons per sec. The remoderator stage is already constructed and presently tested with electrons. The source will provide an order of magnitude more intensity when it will be installed at the FRM-II high flux reactor, which is under construction.</td>
</tr>
<tr id="bib_Springer1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Springer1997,
	  author = {Springer, M. and Kögel, G. and Straßer, B. and Triftshäuser, W. and Schreckenbach, K.},
	  title = {Intense positron source at the Munich research reactor},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {255-257},
	  pages = {695--697},
	  url = {https://www.scientific.net/MSF.255-257.695},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.255-257.695}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1997" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0169-4332(96)00972-5">A high intense reactor based positron source</a></em><br />
G. Triftshäuser, G. Kögel, W. Triftshäuser, M. Springer, B. Straßer and K. Schreckenbach; Applied Surface Science
<b> 116</b>

 (1997)
 45-48.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser1997','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0169433296009725?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0169-4332(96)00972-5">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser1997" class="abstract noshow">
	<td><b>Abstract</b>: An intense source of monoenergetic, low energy positrons is presented. The positrons are produced by pair production from high energy γ-rays after the capture of thermal neutrons in cadmium. The pair production itself takes place in a stack of layers, each consisting of two concentric rings made of tungsten foils. The source is placed in a beam tube at the Research Reactor Munich at Garching. From first experimental data, we can extrapolate an intensity of 2 × 108 slow positrons per second and a spot size of less than 26 mm.</td>
</tr>
<tr id="bib_Triftshaeuser1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1997,
	  author = {Triftshäuser, G. and Kögel, G. and Triftshäuser, W. and Springer, M. and Straßer, B. and Schreckenbach, K.},
	  title = {A high intense reactor based positron source},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {116},
	  pages = {45--48},
	  url = {http://www.sciencedirect.com/science/article/pii/S0169433296009725?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0169-4332(96)00972-5}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1997a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0168-583X(97)00174-2">A scanning positron microscope for defect analysis in materials science</a></em><br />
W. Triftshäuser, G. Kögel, P. Sperr, D. Britton, K. Uhlmann and P. Willutzki; Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms
<b> 130</b>
 (1-4)
 (1997)
 264-269.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser1997a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser1997a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0168583X97001742?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0168-583X(97)00174-2">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1997a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser1997a" class="abstract noshow">
	<td><b>Abstract</b>: The realisation of a scanning positron microscope will be presented and discussed. A positron beam with a variable energy from 0.5 to 30 keV, with a spot diameter of 1 μm or below, can be scanned over an area of 0.6 × 0.6 mm2. This beam is formed after a double stage stochastic cooling (moderation) of positrons emitted from a radioactive isotope. In addition the positron beam will be pulsed in order to have a well-defined time base for positron lifetime measurements. In the system included is a conventional scanning electron microprobe for surface analysis. The design of the scanning positron microscope is dominated by the special demands of positron physics.</td>
</tr>
<tr id="bib_Triftshaeuser1997a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1997a,
	  author = {Triftshäuser, W. and Kögel, G. and Sperr, P. and Britton, D.T. and Uhlmann, K. and Willutzki, P.},
	  title = {A scanning positron microscope for defect analysis in materials science},
	  journal = {Nuclear Instruments and Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {130},
	  number = {1-4},
	  pages = {264--269},
	  url = {http://www.sciencedirect.com/science/article/pii/S0168583X97001742?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0168-583X(97)00174-2}
	}
	</pre></td>
</tr>






<tr id="Zhou1997" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0953-8984/9/6/003">The relationship between open volume defects and deposition conditions of superconducting thin-film YBa2Cu3O7-x</a></em><br />
X. Zhou, X. Lu, H. Jiang, W. Bauer-Kugelmann, J. Duffy, G. Kögel and W. Triftshäuser; Journal of Physics: Condensed Matter
<b> 9</b>
 (6)
 (1997)
 L61-L66.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zhou1997','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zhou1997','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0953-8984/9/6/003/meta">URL</a>]
[<a href="https://doi.org/10.1088/0953-8984/9/6/003">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zhou1997.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zhou1997" class="abstract noshow">
	<td><b>Abstract</b>: The relationship between the open volume defects and the deposition conditions of superconducting thin-film YBa2Cu3O7-x was studied by the position lifetime technique. Using a low-energy pulsed positron system, positron lifetime as a function of implantation energy was measured on epitaxial superconducting thin-film YBa2Cu3O7-x deposited on yttrium stabilized cubic zirconia substrates (YSZ) with pulsed laser deposition in a partial pressure of air under different conditions. The results show that the type of open volume defect is independent of deposition conditions such as the substrate temperature, Ts, and the air pressure, pa. The defect concentration increases with decreasing Ts and increasing pa.</td>
</tr>
<tr id="bib_Zhou1997" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zhou1997,
	  author = {Zhou, X.Y. and Lu, X. and Jiang, H. and Bauer-Kugelmann, W. and Duffy, J.A. and Kögel, G. and Triftshäuser, W.},
	  title = {The relationship between open volume defects and deposition conditions of superconducting thin-film YBa2Cu3O7-x},
	  journal = {Journal of Physics: Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {9},
	  number = {6},
	  pages = {L61-L66},
	  url = {http://iopscience.iop.org/article/10.1088/0953-8984/9/6/003/meta},
	  doi = {https://doi.org/10.1088/0953-8984/9/6/003}
	}
	</pre></td>
</tr>






<tr id="Zhou1997a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/S0375-9601(96)00856-0">Positron trapping in a co-evaporation epitaxial superconducting thin film YBa2Cu3O7-x</a></em><br />
X. Zhou, W. Bauer-Kugelmann, J. Störmer, G. Kögel and W. Triftshäuser; Physics Letters, Section A: General, Atomic and Solid State Physics
<b> 225</b>
 (1-3)
 (1997)
 143-148.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zhou1997a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zhou1997a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/S0375960196008560?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/S0375-9601(96)00856-0">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zhou1997a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zhou1997a" class="abstract noshow">
	<td><b>Abstract</b>: The positron lifetime as a function of implantation energy was measured on a co-evaporation epitaxial superconducting thin film YBa2Cu3O7-x by using a pulsed low energy positron beam system in Munich. Detailed analysis shows that (i) there are both shallow and deep trapping centers in the film; (ii) the defects concerning the long-lived lifetime, τ2, have an enlargement trend at lower temperature and may become one of the effective flux pinning centers. The variation of the mean lifetime with temperature indicates that almost all positrons escape from the shallow trapping centers at a temperature higher than the room temperature. At temperatures higher than 373 K, an annealing effect should be considered.</td>
</tr>
<tr id="bib_Zhou1997a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zhou1997a,
	  author = {Zhou, X.Y. and Bauer-Kugelmann, W. and Störmer, J. and Kögel, G. and Triftshäuser, W.},
	  title = {Positron trapping in a co-evaporation epitaxial superconducting thin film YBa2Cu3O7-x},
	  journal = {Physics Letters, Section A: General, Atomic and Solid State Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1997},
	  volume = {225},
	  number = {1-3},
	  pages = {143--148},
	  url = {http://www.sciencedirect.com/science/article/pii/S0375960196008560?via%3Dihub},
	  doi = {https://doi.org/10.1016/S0375-9601(96)00856-0}
	}
	</pre></td>
</tr>




<tr id="1996" class="entry"><td><h1>1996</h1></td></tr>

<tr id="Koegel1996" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF01567874">Positron diffusion in solids and the reconstruction of inhomogeneous defect distributions from lifetime measurements</a></em><br />
G. Kögel; Applied Physics A
<b> 63</b>
 (3)
 (1996)
 227-235.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1996','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1996','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2FBF01567874">URL</a>]
[<a href="https://doi.org/10.1007/BF01567874">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1996.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1996" class="abstract noshow">
	<td><b>Abstract</b>: The time dependent diffusion trapping equations for positrons implanted into inhomogeneous solids are analyzed. This problem is of central importance in the study of polycrystalline materials and for the application of pulsed positron beams to defect studies in materials research. The main problem in previous investigations was the necessity to solve the time-dependent diffusion equation. It prevented analytical treatment in all but the simplest applications. For the first time this difficulty is eliminated by invoking a new concept, the observable local annihilation characteristics for local implantation of positrons into the thermalized ensemble. It will be shown that the local annihilation characteristics are governed by field equations which reduce to the well known quantities of the standard trapping model in the case of homogeneous defect distributions. Furthermore, inhomogeneous defect distributions are uniquely determined from the field equations provided the local annihilation characteristics are known. Analytical solutions are derived and applied successfully to recent experimental results for a selection of simple, but realistic problems. The formal procedure includes internal drift fields and could be extended to cover also the epithermal period of positron thermalization, if necessary.</td>
</tr>
<tr id="bib_Koegel1996" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1996,
	  author = {Kögel, G.},
	  title = {Positron diffusion in solids and the reconstruction of inhomogeneous defect distributions from lifetime measurements},
	  journal = {Applied Physics A},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1996},
	  volume = {63},
	  number = {3},
	  pages = {227--235},
	  url = {http://link.springer.com/article/10.1007%2FBF01567874},
	  doi = {https://doi.org/10.1007/BF01567874}
	}
	</pre></td>
</tr>






<tr id="Stoermer1996" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.117460">Vacancy-type defects in molecular beam epitaxy low temperature grown GaAs, a positron beam lifetime study</a></em><br />
J. Störmer, W. Triftshäuser, N. Hozhabri and K. Alavi; Applied Physics Letters
<b> 69</b>
 (13)
 (1996)
 1867-1869.
<p class="infolinks">
[<a href="javascript:toggleInfo('Stoermer1996','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Stoermer1996','bibtex')">BibTeX</a>]
[<a href="http://aip.scitation.org/doi/10.1063/1.117460">URL</a>]
[<a href="https://doi.org/10.1063/1.117460">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Stoermer1996.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Stoermer1996" class="abstract noshow">
	<td><b>Abstract</b>: Positron beam lifetime spectroscopy has been utilized to study the depth distribution of vacancy-type defects in molecular beam epitaxy GaAs grown at low temperature. Lifetime spectra were measured as a function of positron energy. From the analysis of the positron lifetime in as-grown and annealed low temperature grown GaAs, the concentrations of Ga monovacancies and voids are estimated. Our results show that in an as-grown sample the Ga monovacancy concentration is &amp;gt;3×1018 cm-3. It is also known that vacancy-cluster concentration in an annealed sample exceeds 1018 cm-3 with a nonuniform spatial distribution. © 1996 American Institute of Physics.</td>
</tr>
<tr id="bib_Stoermer1996" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Stoermer1996,
	  author = {Störmer, J. and Triftshäuser, W. and Hozhabri, N. and Alavi, K.},
	  title = {Vacancy-type defects in molecular beam epitaxy low temperature grown GaAs, a positron beam lifetime study},
	  journal = {Applied Physics Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1996},
	  volume = {69},
	  number = {13},
	  pages = {1867--1869},
	  url = {http://aip.scitation.org/doi/10.1063/1.117460},
	  doi = {https://doi.org/10.1063/1.117460}
	}
	</pre></td>
</tr>






<tr id="Stoermer1996a" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0953-8984/8/7/002">Silicon carbide: A new positron moderator</a></em><br />
J. Störmer, A. Goodyear, W. Anwand, G. Brauer, P. Coleman and W. Triftshäuser; Journal of Physics Condensed Matter
<b> 8</b>
 (7)
 (1996)
 L89-L94.
<p class="infolinks">
[<a href="javascript:toggleInfo('Stoermer1996a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Stoermer1996a','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0953-8984/8/7/002/meta">URL</a>]
[<a href="https://doi.org/10.1088/0953-8984/8/7/002">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Stoermer1996a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Stoermer1996a" class="abstract noshow">
	<td><b>Abstract</b>: Observation of copious positron re-emission from crystalline 6H-SiC, with no pretreatment and without the need for ultra-high-vacuum conditions, suggests that this material may form the basis of an important new moderator for the production of monoenergetic positrons. Its positron work function is measured to be -3.0 ± 0.2 eV. Its electrical characteristics point to SiC as a prime candidate for development as a field-assisted positron moderator, producing moderately intense slow-positron beams in laboratory-based systems and enabling a new generation of positron experimentation.</td>
</tr>
<tr id="bib_Stoermer1996a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Stoermer1996a,
	  author = {Störmer, J. and Goodyear, A. and Anwand, W. and Brauer, G. and Coleman, P.G. and Triftshäuser, W.},
	  title = {Silicon carbide: A new positron moderator},
	  journal = {Journal of Physics Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1996},
	  volume = {8},
	  number = {7},
	  pages = {L89-L94},
	  url = {http://iopscience.iop.org/article/10.1088/0953-8984/8/7/002/meta},
	  doi = {https://doi.org/10.1088/0953-8984/8/7/002}
	}
	</pre></td>
</tr>






<tr id="Zhou1996" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.54.1398">Positron annihilation in the epitaxial superconducting thin-film GdBa2Cu3O7-δ studied by using a pulsed positron beam</a></em><br />
X. Zhou, J. Störmer, R. Wang, J. Keimel, H. Li, G. Kögel and W. Triftshäuser; Physical Review B - Condensed Matter and Materials Physics
<b> 54</b>
 (2)
 (1996)
 1398-1403.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zhou1996','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zhou1996','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.54.1398">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.54.1398">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zhou1996.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zhou1996" class="abstract noshow">
	<td><b>Abstract</b>: The positron lifetime as a function of implantation energy was measured on the epitaxial superconducting thin film GdBa2Cu3O7-δ at different temperatures. The coexistence of both shallow and deep positron trapping centers was observed in the film. The shallow trapping centers include the screw dislocations and twin boundaries. The binding energy of the shallow trapping centers was estimated to be 56±12 meV. The deep trapping centers are assigned the cation vacancies, especially barium vacancies. On the surface of the sample there are macroscopic free volume holes in which positronium could be formed.</td>
</tr>
<tr id="bib_Zhou1996" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zhou1996,
	  author = {Zhou, X.Y. and Störmer, J. and Wang, R.L. and Keimel, J. and Li, H.C. and Kögel, G. and Triftshäuser, W.},
	  title = {Positron annihilation in the epitaxial superconducting thin-film GdBa2Cu3O7-δ studied by using a pulsed positron beam},
	  journal = {Physical Review B - Condensed Matter and Materials Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1996},
	  volume = {54},
	  number = {2},
	  pages = {1398--1403},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.54.1398},
	  doi = {https://doi.org/10.1103/PhysRevB.54.1398}
	}
	</pre></td>
</tr>




<tr id="1995" class="entry"><td><h1>1995</h1></td></tr>

<tr id="Brauer1995" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0953-8984/7/47/025">Positron studies of polycrystalline TiC</a></em><br />
G. Brauer, W. Anwand, E. Nicht, P. Coleman, A. Knights, H. Schut, G. Kögel and N. Wagner; Journal of Physics: Condensed Matter
<b> 7</b>
 (47)
 (1995)
 9091-9099.
<p class="infolinks">
[<a href="javascript:toggleInfo('Brauer1995','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Brauer1995','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0953-8984/7/47/025/meta">URL</a>]
[<a href="https://doi.org/10.1088/0953-8984/7/47/025">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Brauer1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Brauer1995" class="abstract noshow">
	<td><b>Abstract</b>: The mean positron lifetime tau , positron diffusion length L, and the positron and electron work functions ( phi + and phi -) for polycrystalline TiC have been experimentally determined. The results were tau =160(2) ps, L+=138(27) nm and phi -=3.96(0.08) eV; phi + was shown to be almost certainly positive. These results strongly support the suggestion from recent first-principles electronic structure and positron state calculations that positions are trapped by and annihilate in metal vacancies in this material. XPS measurements indicate that the trapping sites may be predominantly in thin carbon-rich layers between grains, a picture which may also explain the long near-surface diffusion length.</td>
</tr>
<tr id="bib_Brauer1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Brauer1995,
	  author = {Brauer, G. and Anwand, W. and Nicht, E. and Coleman, P.G. and Knights, A.P. and Schut, H. and Kögel, G. and Wagner, N.},
	  title = {Positron studies of polycrystalline TiC},
	  journal = {Journal of Physics: Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {7},
	  number = {47},
	  pages = {9091--9099},
	  url = {http://iopscience.iop.org/article/10.1088/0953-8984/7/47/025/meta},
	  doi = {https://doi.org/10.1088/0953-8984/7/47/025}
	}
	</pre></td>
</tr>






<tr id="Britton1995" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0169-4332(94)00326-2">Magnetic positron optics</a></em><br />
D. Britton, K. Uhlmann and G. Kögel; Applied Surface Science
<b> 85</b>
 (C)
 (1995)
 158-164.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton1995','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton1995','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0169433294003262?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/0169-4332(94)00326-2">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton1995" class="abstract noshow">
	<td><b>Abstract</b>: Two different magnetic lenses, suitable for use as objective lenses in positron beams, which can be positioned outside the vacuum system, behind the target are presented. The first is a single-pole lens, optimised as a parallising objective for the reemission of slow positrons from a remoderator. The second is a side-gap lens designed as a probe-forming lens for variable incident energy up to 30 keV with no change in its optical properties. Additionally the effect of an additional solenoid field on the properties of the probe-forming lens has been investigated. © 1995.</td>
</tr>
<tr id="bib_Britton1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton1995,
	  author = {Britton, D.T. and Uhlmann, K. and Kögel, G.},
	  title = {Magnetic positron optics},
	  journal = {Applied Surface Science},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {85},
	  number = {C},
	  pages = {158--164},
	  url = {http://www.sciencedirect.com/science/article/pii/0169433294003262?via%3Dihub},
	  doi = {https://doi.org/10.1016/0169-4332(94)00326-2}
	}
	</pre></td>
</tr>






<tr id="Koegel1995" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.175-178.107">Defect Profiling with Pulsed e+-Beams</a></em><br />
G. Kögel; Materials Science Forum
<b> 175-178</b>

 (1995)
 107-114.
<p class="infolinks">


[<a href="javascript:toggleInfo('Koegel1995','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.175-178.107">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.175-178.107">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Koegel1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1995,
	  author = {Kögel, Gottfried},
	  title = {Defect Profiling with Pulsed e+-Beams},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {175-178},
	  pages = {107--114},
	  url = {https://www.scientific.net/MSF.175-178.107},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.175-178.107}
	}
	</pre></td>
</tr>






<tr id="Stoermer1995" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF01538214">A slow positron lifetime study of the annealing behaviour of an amorphous silicon layer grown by MBE</a></em><br />
J. Störmer, P. Willutzki, D. Britton, G. Kögel, W. Triftshäuser, W. Kiunke, F. Wittmann and I. Eisele; Applied Physics A Materials Science &amp; Processing
<b> 61</b>
 (1)
 (1995)
 71-74.
<p class="infolinks">
[<a href="javascript:toggleInfo('Stoermer1995','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Stoermer1995','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2FBF01538214">URL</a>]
[<a href="https://doi.org/10.1007/BF01538214">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Stoermer1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Stoermer1995" class="abstract noshow">
	<td><b>Abstract</b>: We have studied MBE grown amorphous silicon, which was recrystallized at different temperatures for one hour, with a pulsed positron beam. A positron lifetime of 538±10 ps in the as-grown state is attributed to microvoids containing at least 10 vacancies. An incompletely recrystallized sample annealed at 500°C shows an additional long lifetime from ortho-positronium (o-Ps) pick-off annihilation. The o-Ps component disappears for samples, recrystallized at 700°C and above, and the defect lifetime steadily decreases with higher annealing temperature until a value of 310 ps is reached for the layer annealed at 1200°C. This value is explained by positron trapping at dislocations or small vacancy defects stabilized by dislocations or impurities. © 1995 Springer-Verlag.</td>
</tr>
<tr id="bib_Stoermer1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Stoermer1995,
	  author = {Störmer, J. and Willutzki, P. and Britton, D.T. and Kögel, G. and Triftshäuser, W. and Kiunke, W. and Wittmann, F. and Eisele, I.},
	  title = {A slow positron lifetime study of the annealing behaviour of an amorphous silicon layer grown by MBE},
	  journal = {Applied Physics A Materials Science &amp; Processing},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {61},
	  number = {1},
	  pages = {71--74},
	  url = {http://link.springer.com/article/10.1007%2FBF01538214},
	  doi = {https://doi.org/10.1007/BF01538214}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1995" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.175-178.221">A High Intense Positron Source at the Munich Research Reactor</a></em><br />
G. Triftshäuser, G. Kögel, W. Triftshäuser, M. Springer, T. Hagner and K. Schreckenbach; Materials Science Forum
<b> 175-178</b>

 (1995)
 221-224.
<p class="infolinks">


[<a href="javascript:toggleInfo('Triftshaeuser1995','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.175-178.221">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.175-178.221">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Triftshaeuser1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1995,
	  author = {Triftshäuser, G. and Kögel, Gottfried and Triftshäuser, Werner and Springer, M. and Hagner, T. and Schreckenbach, K.},
	  title = {A High Intense Positron Source at the Munich Research Reactor},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {175-178},
	  pages = {221--224},
	  url = {https://www.scientific.net/MSF.175-178.221},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.175-178.221}
	}
	</pre></td>
</tr>






<tr id="Uhlmann1995" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF00321331">A concept of a scanning positron microscope</a></em><br />
K. Uhlmann, W. Triftshäuser, G. Kögel, P. Sperr, D. Britton, A. Zecca, R. Brusa and G. Karwasz; Fresenius' Journal of Analytical Chemistry
<b> 353</b>
 (5-8)
 (1995)
 594-597.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uhlmann1995','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uhlmann1995','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2FBF00321331">URL</a>]
[<a href="https://doi.org/10.1007/BF00321331">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uhlmann1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uhlmann1995" class="abstract noshow">
	<td><b>Abstract</b>: The concept of a scanning positron microscope which is under construction in München and Trento will be shown. A beam with a variable energy from 1 to 30 keV and a spot diameter of 1 μm, which can be scanned over an area of (0.6×0.6) mm2, is formed after a double stage stochastic cooling of the positrons emitted from a radioactive source. Additionally, the beam will be pulsed to have a well-defined time base for positron lifetime measurements. The design of the microscope is dominated by special demands of positron physics. Therefore, the microscope contains electron optical elements which are well known but rarely used. These are the through the lens reflection remoderator and the optical column with a magnetic side gap lens as probe forming lens.</td>
</tr>
<tr id="bib_Uhlmann1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uhlmann1995,
	  author = {Uhlmann, K. and Triftshäuser, W. and Kögel, G. and Sperr, P. and Britton, D.T. and Zecca, A. and Brusa, R.S. and Karwasz, G.},
	  title = {A concept of a scanning positron microscope},
	  journal = {Fresenius' Journal of Analytical Chemistry},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {353},
	  number = {5-8},
	  pages = {594--597},
	  url = {http://link.springer.com/article/10.1007%2FBF00321331},
	  doi = {https://doi.org/10.1007/BF00321331}
	}
	</pre></td>
</tr>






<tr id="Uhlmann1995a" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0957-0233/6/7/012">A new optical column for a scanning positron microscope</a></em><br />
K. Uhlmann, D. Britton and G. Kögel; Measurement Science and Technology
<b> 6</b>
 (7)
 (1995)
 932-938.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uhlmann1995a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uhlmann1995a','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0957-0233/6/7/012/meta">URL</a>]
[<a href="https://doi.org/10.1088/0957-0233/6/7/012">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Uhlmann1995a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Uhlmann1995a" class="abstract noshow">
	<td><b>Abstract</b>: An optical column for a scanning positron microprobe is described. A beam of variable energy from 1 to 30 keV and a spot diameter of 1 mu m, that can be scanned over an area of 0.6*0.6 mm2 is formed using electron optical elements that are already well known but rarely used in an optical column. The idea allows the construction of a sample chamber free of material and electric fields in a hemisphere above the sample with a radius of some 100 mm or more. The absence of diaphragms and the comfortable inner diameter of the lenses used makes it possible to work with a beam of comparatively large diameter and aperture. This is necessary because of the low intensity of the positron sources available, which makes a system with a very high transmission essential. Although the idea was created for a positron microprobe, other applications, such as with a retarding field analyser introduced into the sample chamber, are conceivable.</td>
</tr>
<tr id="bib_Uhlmann1995a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uhlmann1995a,
	  author = {Uhlmann, K. and Britton, D.T. and Kögel, G.},
	  title = {A new optical column for a scanning positron microscope},
	  journal = {Measurement Science and Technology},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {6},
	  number = {7},
	  pages = {932--938},
	  url = {http://iopscience.iop.org/article/10.1088/0957-0233/6/7/012/meta},
	  doi = {https://doi.org/10.1088/0957-0233/6/7/012}
	}
	</pre></td>
</tr>






<tr id="Willutzki1995" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF01538197">Investigations of positron lifetimes in InP with a pulsed positron beam</a></em><br />
P. Willutzki, J. Störmer, D. Britton and W. Triftshäuser; Applied Physics A Materials Science &amp; Processing
<b> 61</b>
 (3)
 (1995)
 321-324.
<p class="infolinks">
[<a href="javascript:toggleInfo('Willutzki1995','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Willutzki1995','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2FBF01538197">URL</a>]
[<a href="https://doi.org/10.1007/BF01538197">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Willutzki1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Willutzki1995" class="abstract noshow">
	<td><b>Abstract</b>: Indium Phosphide layers grown by gas source Molecular Beam Epitaxy, (MBE) have been studied by positron lifetime spectroscopy using the recently modified pulsed positron beam in Munich. The as-grown samples are known to be phosphorous rich and contain a high concentration of vacancy-type defects. On annealing, phosphorous precipitates are formed and the concentration of free volume defects increases. Positron lifetime spectroscopy has identified the grown in defects to be indium vacancies at a concentration around 1018cm-3. The dominant defects after annealing exhibit a positron lifetime characteristic of divacancies and are present at concentrations in excess of 5×1019cm-3. © 1995 Springer-Verlag.</td>
</tr>
<tr id="bib_Willutzki1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Willutzki1995,
	  author = {Willutzki, P. and Störmer, J. and Britton, D.T. and Triftshäuser, W.},
	  title = {Investigations of positron lifetimes in InP with a pulsed positron beam},
	  journal = {Applied Physics A Materials Science &amp; Processing},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {61},
	  number = {3},
	  pages = {321--324},
	  url = {http://link.springer.com/article/10.1007%2FBF01538197},
	  doi = {https://doi.org/10.1007/BF01538197}
	}
	</pre></td>
</tr>






<tr id="Willutzki1995a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.175-178.237">An Upgraded Version of a Pulsed Positron Beam</a></em><br />
P. Willutzki, J. Störmer, G. Kögel, P. Sperr, D. Britton, R. Steindl and W. Triftshäuser; Materials Science Forum
<b> 175-178</b>

 (1995)
 237-240.
<p class="infolinks">


[<a href="javascript:toggleInfo('Willutzki1995a','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.175-178.237">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.175-178.237">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Willutzki1995a.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Willutzki1995a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Willutzki1995a,
	  author = {Willutzki, P. and Störmer, J. and Kögel, Gottfried and Sperr, Peter and Britton, D.T. and Steindl, R. and Triftshäuser, Werner},
	  title = {An Upgraded Version of a Pulsed Positron Beam},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {175-178},
	  pages = {237--240},
	  url = {https://www.scientific.net/MSF.175-178.237},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.175-178.237}
	}
	</pre></td>
</tr>






<tr id="Zecca1995" class="entry">

<td>
<em> <a href="https://doi.org/10.1209/0295-5075/29/8/005">A Pulsed Positron Microbeam</a></em><br />
A. Zecca, R.S. Brusa, M.P. Duarte-Naia, G.P. Karwasz, J. Paridaens, A. Piazza, G. Kögel, P. Sperr, D.T. Britton, K. Uhlmann, P. Willutzki and W. Triftshäuser; Europhysics Letters (EPL)
<b> 29</b>
 (8)
 (1995)
 617-622.
<p class="infolinks">
[<a href="javascript:toggleInfo('Zecca1995','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Zecca1995','bibtex')">BibTeX</a>]
[<a href="http://stacks.iop.org/0295-5075/29/i=8/a=005">URL</a>]
[<a href="https://doi.org/10.1209/0295-5075/29/8/005">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zecca1995.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Zecca1995" class="abstract noshow">
	<td><b>Abstract</b>: he first pulsed microbeam for positrons in the keV energy range is described. The principle of operation and the construction details are given. The performance achieved is: 20 μm (FWHM) spot diameter; 350 ps (FWHM) time resolution; 5000 e + /(s mCi) at 5 keV final energy.</td>
</tr>
<tr id="bib_Zecca1995" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zecca1995,
	  author = {Zecca, A. and Brusa, R. S. and Duarte-Naia, M. P. and Karwasz, G. P. and Paridaens, J. and Piazza, A. and Kögel, G. and Sperr, P. and Britton, D. T. and Uhlmann, K. and Willutzki, P. and Triftshäuser, W.},
	  title = {A Pulsed Positron Microbeam},
	  journal = {Europhysics Letters (EPL)},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1995},
	  volume = {29},
	  number = {8},
	  pages = {617--622},
	  url = {http://stacks.iop.org/0295-5075/29/i=8/a=005},
	  doi = {https://doi.org/10.1209/0295-5075/29/8/005}
	}
	</pre></td>
</tr>




<tr id="1994" class="entry"><td><h1>1994</h1></td></tr>

<tr id="Britton1994" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF00323615">On the sensitivity of positrons to electric fields and defects in MBE-grown silicon structures</a></em><br />
D. Britton, P. Willutzki, W. Triftshäuser, E. Hammerl, W. Hansch and I. Eisele; Applied Physics A Solids and Surfaces
<b> 58</b>
 (4)
 (1994)
 389-393.
<p class="infolinks">
[<a href="javascript:toggleInfo('Britton1994','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Britton1994','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2FBF00323615">URL</a>]
[<a href="https://doi.org/10.1007/BF00323615">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Britton1994.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Britton1994" class="abstract noshow">
	<td><b>Abstract</b>: The sensitivity of the positron to the internal electric fields in good quality thin (≈100 nm) Molecular Beam Epitaxy (MBE)-grown layers is experimentally demonstrated. Both a thin intrinsic layer grown on a p-type substrate and a highly n-doped δ profile buried in intrinsic silicon form effective barriers to positron diffusion although no defects can be detected. We also extract, from a full treatment of the positron diffusion, a quantitative estimate of the concentration, below the detection limits of other methods, of large vacancy clusters in a thick (680 nm) film. © 1994 Springer-Verlag.</td>
</tr>
<tr id="bib_Britton1994" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Britton1994,
	  author = {Britton, D.T. and Willutzki, P. and Triftshäuser, W. and Hammerl, E. and Hansch, W. and Eisele, I.},
	  title = {On the sensitivity of positrons to electric fields and defects in MBE-grown silicon structures},
	  journal = {Applied Physics A Solids and Surfaces},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1994},
	  volume = {58},
	  number = {4},
	  pages = {389--393},
	  url = {http://link.springer.com/article/10.1007%2FBF00323615},
	  doi = {https://doi.org/10.1007/BF00323615}
	}
	</pre></td>
</tr>






<tr id="Sperr1994" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.175-178.993">On the electronic design and the performance of a ramp generator for a pulsed low energy positron beam</a></em><br />
P. Sperr, P. Willutzki and M. Maier; Materials Science Forum
<b> 175-178</b>
 (pt 2)
 (1994)
 993-996.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sperr1994','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sperr1994','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.175-178.993">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.175-178.993">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sperr1994.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sperr1994" class="abstract noshow">
	<td><b>Abstract</b>: In this work we report on the electronic design of a simple ramp generator for pulsed low energy positron beams. The generator is realized using ECL integrated circuits, fast comparators and special voltage programmable current sources. With the achieved sawtooth output signal of a frequency of 50MHz, up to 70% of a dc positron beam can be compressed into pulses of about 1.8ns (FWHM). The performance of the generator in a pulsed positron beam system is shown.</td>
</tr>
<tr id="bib_Sperr1994" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sperr1994,
	  author = {Sperr, P. and Willutzki, P. and Maier, M.R.},
	  title = {On the electronic design and the performance of a ramp generator for a pulsed low energy positron beam},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1994},
	  volume = {175-178},
	  number = {pt 2},
	  pages = {993--996},
	  url = {https://www.scientific.net/MSF.175-178.993},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.175-178.993}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1994" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF03156559">Intense sources for positron research</a></em><br />
W. Triftshäuser; Acta Physica Hungarica
<b> 75</b>
 (1-4)
 (1994)
 61-69.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser1994','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser1994','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007/BF03156559">URL</a>]
[<a href="https://doi.org/10.1007/BF03156559">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1994.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser1994" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation is a well-established method in solid state physics and material science. The positron being a very sensitive probe, can give very precise information on the momentum distribution of electrons in metals and alloys as well as on lattice defects in crystals. Starting with the energy distribution of positrons from a radioactive decay, the current development is directed more to monoenergetic positrons of variable energy and of high intensity. The impact of intense positron beams is straightforward: a decrease of the counting time. There are various possibilities and approaches to realize intense positron beams. The aim is to obtain a beam intensity in the order of ∼ 1010 positrons/s. Parallel to the instalment of intense positron beams, the development of positron microscopes is pursued. © 1994 Akadémiai Kiadó.</td>
</tr>
<tr id="bib_Triftshaeuser1994" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1994,
	  author = {Triftshäuser, W.},
	  title = {Intense sources for positron research},
	  journal = {Acta Physica Hungarica},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1994},
	  volume = {75},
	  number = {1-4},
	  pages = {61--69},
	  url = {http://link.springer.com/article/10.1007/BF03156559},
	  doi = {https://doi.org/10.1007/BF03156559}
	}
	</pre></td>
</tr>






<tr id="Uhlmann1994" class="entry">

<td>
<em> Through the lens reflection remoderator for positrons</a></em><br />
K. Uhlmann, D. Britton and G. Kögel; Optik (Jena)
<b> 98</b>
 (1)
 (1994)
 5-10.
<p class="infolinks">
[<a href="javascript:toggleInfo('Uhlmann1994','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Uhlmann1994','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="abs_Uhlmann1994" class="abstract noshow">
	<td><b>Abstract</b>: A magnetic remoderation system with both incident and reemitted positron beams normal to the moderator surface is presented. Incoming 5 keV positrons are focussed by a single pole lens to an aberration limited spot on the remoderator. Reemitted positrons are extracted along the same axis at a lower energy before being separated from the incoming beam by a toroidal deflector. The single pole lens used is very well suited to different types of positron beam measurements. Its major advantage being that the space around the target can be kept free of both material and electric fields, while maintaining a short focal length. For the outgoing beam, the lens has a parallising action, suggesting applications in reemission positron and positron annihilation Auger electron spectroscopy.</td>
</tr>
<tr id="bib_Uhlmann1994" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Uhlmann1994,
	  author = {Uhlmann, K. and Britton, D.T. and Kögel, G.},
	  title = {Through the lens reflection remoderator for positrons},
	  journal = {Optik (Jena)},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1994},
	  volume = {98},
	  number = {1},
	  pages = {5--10}
	}
	</pre></td>
</tr>






<tr id="Willutzki1994" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0957-0233/5/5/013">An improved pulsed low-energy positron system</a></em><br />
P. Willutzki, J. Störmer, G. Kögel, P. Sperr, D. Britton, R. Steindl and W. Triftshäuser; Measurement Science and Technology
<b> 5</b>
 (5)
 (1994)
 548-554.
<p class="infolinks">
[<a href="javascript:toggleInfo('Willutzki1994','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Willutzki1994','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0957-0233/5/5/013/meta">URL</a>]
[<a href="https://doi.org/10.1088/0957-0233/5/5/013">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Willutzki1994.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Willutzki1994" class="abstract noshow">
	<td><b>Abstract</b>: A pulsed low-energy positron system for positron-lifetime spectroscopy has been up-graded and modified with regard to its three main components. A new moderator preparation chamber has been added, the radiofrequency pulsing concept has been modified using a pre-buncher and a pre-chopper in front of the existing chopper-buncher section. Furthermore, a new target station allowing measurements at variable temperatures has been incorporated. The lifetime spectra now reveal a strongly increased ratio of peak to background and of peak to satellite peak.</td>
</tr>
<tr id="bib_Willutzki1994" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Willutzki1994,
	  author = {Willutzki, P. and Störmer, J. and Kögel, G. and Sperr, P. and Britton, D.T. and Steindl, R. and Triftshäuser, W.},
	  title = {An improved pulsed low-energy positron system},
	  journal = {Measurement Science and Technology},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1994},
	  volume = {5},
	  number = {5},
	  pages = {548--554},
	  url = {http://iopscience.iop.org/article/10.1088/0957-0233/5/5/013/meta},
	  doi = {https://doi.org/10.1088/0957-0233/5/5/013}
	}
	</pre></td>
</tr>






<tr id="Willutzki1994a" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/MSF.175-178.237">Upgraded version of a pulsed positron beam</a></em><br />
P. Willutzki, J. Störmer, G. Kögel, P. Sperr, D. Britton, R. Steindl and W. Triftshäuser; Materials Science Forum
<b> 175-178</b>
 (pt 1)
 (1994)
 237-240.
<p class="infolinks">
[<a href="javascript:toggleInfo('Willutzki1994a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Willutzki1994a','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.175-178.237">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/MSF.175-178.237">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Willutzki1994a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Willutzki1994a" class="abstract noshow">
	<td><b>Abstract</b>: In this paper an overview on the modifications of the Munich pulsed low energy positron system is given. In particular the moderator section and the new prebuncher are described in detail. With a new preparation chamber for in situ annealing of the moderator and a new prebuncher the count rate has been increased by a factor of five. Due to the new master frequency of 50MHz (old system: 200MHz) the lifetime spectra have a length of 20ns. Long positron lifetimes can now be easily analysed. A faraday cage in front of the target station reduces strongly the perturbations of the spectra (high background, satellite peaks). Finally a new target station allows lifetime measurements at variable temperatures. The time resolution of the new system is 230ps (FWHM).</td>
</tr>
<tr id="bib_Willutzki1994a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Willutzki1994a,
	  author = {Willutzki, P. and Störmer, J. and Kögel, G. and Sperr, P. and Britton, D.T. and Steindl, R. and Triftshäuser, W.},
	  title = {Upgraded version of a pulsed positron beam},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1994},
	  volume = {175-178},
	  number = {pt 1},
	  pages = {237--240},
	  url = {https://www.scientific.net/MSF.175-178.237},
	  doi = {https://doi.org/10.4028/www.scientific.net/MSF.175-178.237}
	}
	</pre></td>
</tr>






<tr id="Willutzki1994b" class="entry">

<td>
<em> <a href="https://doi.org/10.1063/1.45536">Retarding field and timing measurements of positrons from a W[100] foil</a></em><br />
P. Willutzki, J. Störmer, D.T. Britton, G. Kögel, P. Sperr, R. Steindl and W. Triftshäuser; AIP Conference Proceedings
<b> 303</b>
 (1)
 (1994)
 542-549.
<p class="infolinks">
[<a href="javascript:toggleInfo('Willutzki1994b','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Willutzki1994b','bibtex')">BibTeX</a>]
[<a href="http://scitation.aip.org/content/aip/proceeding/aipcp/10.1063/1.45536">URL</a>]
[<a href="https://doi.org/10.1063/1.45536">DOI</a>]

</td>
</tr> 
<tr id="abs_Willutzki1994b" class="abstract noshow">
	<td><b>Abstract</b>: Measurements with the new prebuncher for the existing pulsed positron beam (presented at ICPA‐9) show the possibility of bunching a dc‐beam with a time structure of 2.1ns (FWHM). The pulse width is very sensitive to the longitudinal energy distribution of the moderated positrons. A pulse width of 2.1ns corresponds to a longitudinal energy distribution of 0.35(5) eV. With a retarding grid configuration we measured the positron yield. Measurements with inhomogenic magnetic guiding fields clearly show the influence of elastically scattered events. Their fraction is very sensitive to the surface condition of the moderator. The nonscattered positrons are very well represented by a Gaussian distribution function. Its FWHM is in good overall agreement with the timing measurements.</td>
</tr>
<tr id="bib_Willutzki1994b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Willutzki1994b,
	  author = {Willutzki, P. and Störmer, J. and Britton, D. T. and Kögel, G. and Sperr, P. and Steindl, R. and Triftshäuser, W.},
	  title = {Retarding field and timing measurements of positrons from a W[100] foil},
	  journal = {AIP Conference Proceedings},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1994},
	  volume = {303},
	  number = {1},
	  pages = {542--549},
	  url = {http://scitation.aip.org/content/aip/proceeding/aipcp/10.1063/1.45536},
	  doi = {https://doi.org/10.1063/1.45536}
	}
	</pre></td>
</tr>




<tr id="1993" class="entry"><td><h1>1993</h1></td></tr>

<tr id="Koegel1993" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0953-8984/5/23/026">Investigation of defect structures in deformed and helium-irradiated refractory metals by positron annihilation</a></em><br />
G. Kögel, P. Sperr, J. Störmer and W. Triftshäuser; Journal of Physics: Condensed Matter
<b> 5</b>
 (23)
 (1993)
 3987-4006.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1993','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1993','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0953-8984/5/23/026/meta">URL</a>]
[<a href="https://doi.org/10.1088/0953-8984/5/23/026">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1993.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1993" class="abstract noshow">
	<td><b>Abstract</b>: The defect structures in deformed and helium-irradiated refractory metals, vanadium, niobium and tantalum have been investigated by means of positron lifetime and Doppler broadening techniques. The evolution of the defects was studied by performing isochronal annealing programmes. In all three metals after deformation a single, well defined lifetime was observed which was 30 ps to 40 ps lower than that reported for vacancies. The recovery of the deformation-induced defects however, is remarkably different for niobium and tantalum as compared to vanadium. In helium-irradiated vanadium and niobium two distinctly different defect types were observed with characteristic lifetimes of about 190 ps and 375 ps, respectively. The longer lifetime is attributed to large helium bubbles. Both metals showed a similar behaviour in the annealing studies. All measured lifetime data are consistent with the simple trapping model. The influence of oxygen impurities and oxygen resorption during the isochronal annealing procedure is discussed.</td>
</tr>
<tr id="bib_Koegel1993" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1993,
	  author = {Kögel, G. and Sperr, P. and Störmer, J. and Triftshäuser, W.},
	  title = {Investigation of defect structures in deformed and helium-irradiated refractory metals by positron annihilation},
	  journal = {Journal of Physics: Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1993},
	  volume = {5},
	  number = {23},
	  pages = {3987--4006},
	  url = {http://iopscience.iop.org/article/10.1088/0953-8984/5/23/026/meta},
	  doi = {https://doi.org/10.1088/0953-8984/5/23/026}
	}
	</pre></td>
</tr>






<tr id="Rajput1993" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0953-8984/5/35/007">A study of the Fermi surfaces of lithium and disordered lithium-magnesium alloys: Theory and experiment</a></em><br />
S. Rajput, R. Prasad, R. Singru, W. Triftshäuser, A. Eckert, G. Kögel, S. Kaprzyk and A. Bansil; Journal of Physics: Condensed Matter
<b> 5</b>
 (35)
 (1993)
 6419-6432.
<p class="infolinks">
[<a href="javascript:toggleInfo('Rajput1993','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Rajput1993','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0953-8984/5/35/007/meta">URL</a>]
[<a href="https://doi.org/10.1088/0953-8984/5/35/007">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Rajput1993.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Rajput1993" class="abstract noshow">
	<td><b>Abstract</b>: The authors present a theoretical and experimental study of the Fermi surfaces (FSs) of Li and the disordered alloys Li1-xMgx (0.6&amp;gt;or=x&amp;gt;0.0) in the BCC phase. Theoretical calculations employ the first-principles fully charge-self-consistent Korringa-Kohn-Rostoker coherent-potential-approximation scheme within the local-density approximation. The experiments involve the two-dimensional angular correlation of positron annihilation radiation measurements on four Li1-xMgx single-crystal specimens with x=0.0, 0.28, 0.40 and 0.60. Good overall agreement is found between experiment and theory with regard to the size and shape of the FS as x is increased from 0.0 to 0.6, although some discrepancies are noted. The question of the critical Mg concentration x=xc at which the FS first makes contact with the Brillouin zone boundary in Li1-xMg x alloys is considered in some detail.</td>
</tr>
<tr id="bib_Rajput1993" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Rajput1993,
	  author = {Rajput, S.S. and Prasad, R. and Singru, R.M. and Triftshäuser, W. and Eckert, A. and Kögel, G. and Kaprzyk, S. and Bansil, A.},
	  title = {A study of the Fermi surfaces of lithium and disordered lithium-magnesium alloys: Theory and experiment},
	  journal = {Journal of Physics: Condensed Matter},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1993},
	  volume = {5},
	  number = {35},
	  pages = {6419--6432},
	  url = {http://iopscience.iop.org/article/10.1088/0953-8984/5/35/007/meta},
	  doi = {https://doi.org/10.1088/0953-8984/5/35/007}
	}
	</pre></td>
</tr>






<tr id="Zhi-Heng1993" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/1004-423x/2/8/003">Positron annihilation with vacancies in thin surface layer of As heavily doped Si</a></em><br />
L. Zhi-Heng, D.-C. Wang and G. Kögel; Acta Physica Sinica (Overseas Edn)
<b> 2</b>
 (8)
 (1993)
 577-582.
<p class="infolinks">


[<a href="javascript:toggleInfo('Zhi-Heng1993','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/1004-423X/2/8/003/meta">URL</a>]
[<a href="https://doi.org/10.1088/1004-423x/2/8/003">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Zhi-Heng1993.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Zhi-Heng1993" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Zhi-Heng1993,
	  author = {Zhi-Heng, Lu and Wang, Da-Chun and Kögel, G.},
	  title = {Positron annihilation with vacancies in thin surface layer of As heavily doped Si},
	  journal = {Acta Physica Sinica (Overseas Edn)},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1993},
	  volume = {2},
	  number = {8},
	  pages = {577--582},
	  url = {http://iopscience.iop.org/article/10.1088/1004-423X/2/8/003/meta},
	  doi = {https://doi.org/10.1088/1004-423x/2/8/003}
	}
	</pre></td>
</tr>




<tr id="1992" class="entry"><td><h1>1992</h1></td></tr>

<tr id="Koegel1992" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.341">Positron Annihilation at Clean Metallic Surfaces</a></em><br />
G. Kögel; Materials Science Forum
<b> 105-110</b>

 (1992)
 341-348.
<p class="infolinks">


[<a href="javascript:toggleInfo('Koegel1992','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.105-110.341">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.341">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1992.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Koegel1992" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1992,
	  author = {Kögel, Gottfried},
	  title = {Positron Annihilation at Clean Metallic Surfaces},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1992},
	  volume = {105-110},
	  pages = {341--348},
	  url = {https://www.scientific.net/MSF.105-110.341},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.105-110.341}
	}
	</pre></td>
</tr>






<tr id="LopesGil1992" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.1141">Study of Defects Produced by Laser Surface Melting Using Positron Annihilation</a></em><br />
C. Lopes Gil, M. Ferreira Marques, A.P.d. Lima, R. Vilar, A. de Deus and W. Kögel G.and Triftshäuser; Materials Science Forum
<b> 105-110</b>

 (1992)
 1141-1144.
<p class="infolinks">


[<a href="javascript:toggleInfo('LopesGil1992','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.105-110.1141">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.1141">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/LopesGil1992.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_LopesGil1992" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{LopesGil1992,
	  author = {Lopes Gil, C. and Ferreira Marques, M.F. and Lima, Adriano P. de and Vilar, Rui and de Deus, A.M. and Kögel, G.and Triftshäuser, W.},
	  title = {Study of Defects Produced by Laser Surface Melting Using Positron Annihilation},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1992},
	  volume = {105-110},
	  pages = {1141--1144},
	  url = {https://www.scientific.net/MSF.105-110.1141},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.105-110.1141}
	}
	</pre></td>
</tr>






<tr id="Steindl1992" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.1455">Positron Lifetimes on Clean Metallic Surfaces</a></em><br />
R. Steindl, G. Kögel, P. Sperr, P. Willutzki, D. Britton and W. Triftshäuser; Materials Science Forum
<b> 105-110</b>

 (1992)
 1455-1458.
<p class="infolinks">


[<a href="javascript:toggleInfo('Steindl1992','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.105-110.1455">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.1455">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Steindl1992.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Steindl1992" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Steindl1992,
	  author = {Steindl, R. and Kögel, G. and Sperr, P. and Willutzki, P. and Britton, D.T. and Triftshäuser, W.},
	  title = {Positron Lifetimes on Clean Metallic Surfaces},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1992},
	  volume = {105-110},
	  pages = {1455--1458},
	  url = {https://www.scientific.net/MSF.105-110.1455},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.105-110.1455}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1992" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.501">The Electron Momentum Distribution of LiMg Alloys by Positron-Annihilation 2D-ACAR</a></em><br />
W. Triftshäuser, A. Eckert, G. Kögel and P. Sperr; Materials Science Forum
<b> 105-110</b>

 (1992)
 501-510.
<p class="infolinks">


[<a href="javascript:toggleInfo('Triftshaeuser1992','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.105-110.501">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.501">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1992.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Triftshaeuser1992" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1992,
	  author = {Triftshäuser, W. and Eckert, A. and Kögel, G. and Sperr, P.},
	  title = {The Electron Momentum Distribution of LiMg Alloys by Positron-Annihilation 2D-ACAR},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1992},
	  volume = {105-110},
	  pages = {501--510},
	  url = {https://www.scientific.net/MSF.105-110.501},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.105-110.501}
	}
	</pre></td>
</tr>






<tr id="Willutzki1992" class="entry">

<td>
<em> <a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.2009">A New Concept for a Pulsed Positron Source</a></em><br />
P. Willutzki, P. Sperr, D. Britton, G. Kögel, R. Steindl and W. Triftshäuser; Materials Science Forum
<b> 105-110</b>

 (1992)
 2009-2012.
<p class="infolinks">


[<a href="javascript:toggleInfo('Willutzki1992','bibtex')">BibTeX</a>]
[<a href="https://www.scientific.net/MSF.105-110.2009">URL</a>]
[<a href="https://doi.org/10.4028/www.scientific.net/msf.105-110.2009">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Willutzki1992.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Willutzki1992" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Willutzki1992,
	  author = {Willutzki, P. and Sperr, P. and Britton, D.T. and Kögel, Gottfried and Steindl, R. and Triftshäuser, Werner},
	  title = {A New Concept for a Pulsed Positron Source},
	  journal = {Materials Science Forum},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1992},
	  volume = {105-110},
	  pages = {2009--2012},
	  url = {https://www.scientific.net/MSF.105-110.2009},
	  doi = {https://doi.org/10.4028/www.scientific.net/msf.105-110.2009}
	}
	</pre></td>
</tr>




<tr id="1990" class="entry"><td><h1>1990</h1></td></tr>

<tr id="Gil1990" class="entry">

<td>
<em> <a href="https://doi.org/10.1080/10420159008213037">Investigation of defect structures in deuteron irradiated and deformed stainless steel 316 by positron annihilation</a></em><br />
C. Lopes Gil, A.P. De Lima, N.A.D. Campos, P. Sperr, G. Kögel and W. Triftshäuser; Radiation Effects and Defects in Solids
<b> 112</b>
 (4)
 (1990)
 111-118.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gil1990','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gil1990','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/016890029190768L">URL</a>]
[<a href="https://doi.org/10.1080/10420159008213037">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gil1990.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gil1990" class="abstract noshow">
	<td><b>Abstract</b>: Deuteron-irradiated and deformed stainless steel specimens were investigated by positron lifetime and Doppler broadening measurements. The evolution of the defect structures was studied as a function of the isochronal annealing temperature and for various degrees of deformation. A different behaviour was observed for deformed and irradiated stainless steel specimens. Evidence for vacancy clusters was found in the deuteron-irradiated steel. These clusters disappear after annealing around 900 K.</td>
</tr>
<tr id="bib_Gil1990" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gil1990,
	  author = {Lopes Gil, C. and De Lima, A. P. and Campos, N. Ayres De and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Investigation of defect structures in deuteron irradiated and deformed stainless steel 316 by positron annihilation},
	  journal = {Radiation Effects and Defects in Solids},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1990},
	  volume = {112},
	  number = {4},
	  pages = {111--118},
	  url = {http://www.sciencedirect.com/science/article/pii/016890029190768L},
	  doi = {https://doi.org/10.1080/10420159008213037}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1990" class="entry">

<td>
<em> <a href="https://doi.org/10.5169/seals-116227">The pulsed positron beam in Munich and a high intense positron source at Grenoble</a></em><br />
W. Triftshäuser, G. Kögel, K. Schreckenbach and B. Krusche; Helvetica Physica Acta
<b> 63</b>
 (4)
 (1990)
 378-384.
<p class="infolinks">


[<a href="javascript:toggleInfo('Triftshaeuser1990','bibtex')">BibTeX</a>]
[<a href="http://www.e-periodica.ch/digbib/view?var=true&pid=hpa-001:1990:63::1098#379">URL</a>]
[<a href="https://doi.org/10.5169/seals-116227">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1990.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Triftshaeuser1990" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1990,
	  author = {Triftshäuser, W. and Kögel, G. and Schreckenbach, K. and Krusche, B.},
	  title = {The pulsed positron beam in Munich and a high intense positron source at Grenoble},
	  journal = {Helvetica Physica Acta},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1990},
	  volume = {63},
	  number = {4},
	  pages = {378--384},
	  url = {http://www.e-periodica.ch/digbib/view?var=true&amp;pid=hpa-001:1990:63::1098#379},
	  doi = {https://doi.org/10.5169/seals-116227}
	}
	</pre></td>
</tr>




<tr id="1989" class="entry"><td><h1>1989</h1></td></tr>

<tr id="Gil1989" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0022-3115(89)90456-X">Neutron-irradiated reactor pressure vessel steels investigated by positron annihilation</a></em><br />
C. Lopes Gil, A. De Lima, N. De Campos, J. Fernandes, G. Kögel, P. Sperr, W. Triftshäuser and D. Pachur; Journal of Nuclear Materials
<b> 161</b>
 (1)
 (1989)
 1-12.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gil1989','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gil1989','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/002231158990456X?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/0022-3115(89)90456-X">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gil1989.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gil1989" class="abstract noshow">
	<td><b>Abstract</b>: The recovery of the defects produced m neutron-irradiated low alloy ferritic steels has been investigated by positron annihilation techniques during is ochronal annealing programs. A good correlation was found between the annealing stages observed with positrons and the changes of the mechanical properties. A dramatic change in the positron parameters was observed around 400 ° C in the A533B samples irradiated at 290° C with high dose. An interpretative model is proposed which presents good consistency with the results obtained for the non-irradiated and the irradiated steels. © 1989.</td>
</tr>
<tr id="bib_Gil1989" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gil1989,
	  author = {Lopes Gil, C. and De Lima, A.P. and De Campos, N.A. and Fernandes, J.V. and Kögel, G. and Sperr, P. and Triftshäuser, W. and Pachur, D.},
	  title = {Neutron-irradiated reactor pressure vessel steels investigated by positron annihilation},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1989},
	  volume = {161},
	  number = {1},
	  pages = {1--12},
	  url = {http://www.sciencedirect.com/science/article/pii/002231158990456X?via%3Dihub},
	  doi = {https://doi.org/10.1016/0022-3115(89)90456-X}
	}
	</pre></td>
</tr>






<tr id="Koegel1989" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0022-3115(89)90378-4">On the investigation of amorphous hydrogenated carbon by positron annihilation</a></em><br />
G. Kögel, D. Schödlbauer, W. Triftshäuser and J. Winter; Journal of Nuclear Materials
<b> 162-164</b>
 (C)
 (1989)
 876-880.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1989','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1989','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0022311589903784?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/0022-3115(89)90378-4">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1989.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1989" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation studies are presented in order to reveal details in the microstructure of amorphous hydrogenated carbon (a-C : H) which cannot be resolved by transmission electron microscopy (TEM). The first study already shows that micropores with about 0.5 nm in diameter occupy at least 3% of the total volume in a-C : H. However, this result is consistent with quite contrary models for the microstructure of a-C : H. The further clarification by extended positron studies is discussed. © 1989.</td>
</tr>
<tr id="bib_Koegel1989" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1989,
	  author = {Kögel, G. and Schödlbauer, D. and Triftshäuser, W. and Winter, J.},
	  title = {On the investigation of amorphous hydrogenated carbon by positron annihilation},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1989},
	  volume = {162-164},
	  number = {C},
	  pages = {876--880},
	  url = {http://www.sciencedirect.com/science/article/pii/0022311589903784?via%3Dihub},
	  doi = {https://doi.org/10.1016/0022-3115(89)90378-4}
	}
	</pre></td>
</tr>






<tr id="Koegel1989a" class="entry">

<td>
<em> Lifetime spectroscopy in sub-surface defect studies</a></em><br />
G. Kögel;
In: , L. Dorikens-Vanpraet, M. Dorikens and D. Segers (Eds.),
<em>  Proceedings of the 8th International Conference on Positron Annihilation, ICPA-8</em>


 (1989)
 52-55
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Koegel1989a','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Koegel1989a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Koegel1989a,
	  author = {Kögel, G.},
	  title = {Lifetime spectroscopy in sub-surface defect studies},
	  booktitle = {Proceedings of the 8th International Conference on Positron Annihilation, ICPA-8},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1989},
	  pages = {52--55},
	  editor = {Dorikens-Vanpraet, L. and Dorikens, M. and Segers, D.},
	  note = {Gent, Belgium, 29 August-3 September 1988}
	}
	</pre></td>
</tr>






<tr id="McGervey1989" class="entry">

<td>
<em> Study of nitrogen implantation layer and fatigued surface layer in titanium by pulsed monoenergetic positron beams</a></em><br />
J.D. McGervey, G. Welsch, G. Kögel and D. Schödlbauer;
In: , L. Dorikens-Vanpraet, M. Dorikens and D. Segers (Eds.),
<em>  Proceedings of the 8th International Conference on Positron Annihilation, ICPA-8</em>


 (1989)
 425-427
.
<p class="infolinks">


[<a href="javascript:toggleInfo('McGervey1989','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_McGervey1989" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{McGervey1989,
	  author = {McGervey, J. D. and Welsch, G. and Kögel, G. and Schödlbauer, D.},
	  title = {Study of nitrogen implantation layer and fatigued surface layer in titanium by pulsed monoenergetic positron beams},
	  booktitle = {Proceedings of the 8th International Conference on Positron Annihilation, ICPA-8},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1989},
	  pages = {425--427},
	  editor = {Dorikens-Vanpraet, L and Dorikens, M and Segers, D},
	  note = {Gent, Belgium, 29 August-3 September 1988}
	}
	</pre></td>
</tr>






<tr id="Sperr1989" class="entry">

<td>
<em> Helium precipitation and radiation damage in refractory metals</a></em><br />
P. Sperr, G. Kögel, J. Störmer, W. Triftshäuser and R. Lasser;
In: , L. Dorikens-Vanpraet, M. Dorikens and D. Segers (Eds.),
<em>  Proceedings of the 8th International Conference on Positron Annihilation, ICPA-8</em>


 (1989)
 437-439
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Sperr1989','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Sperr1989" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Sperr1989,
	  author = {Sperr, P. and Kögel, G. and Störmer, J. and Triftshäuser, W. and Lasser, R.},
	  title = {Helium precipitation and radiation damage in refractory metals},
	  booktitle = {Proceedings of the 8th International Conference on Positron Annihilation, ICPA-8},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1989},
	  pages = {437--439},
	  editor = {Dorikens-Vanpraet, L and Dorikens, M and Segers, D},
	  note = {Gent, Belgium, 29 August-3 September 1988}
	}
	</pre></td>
</tr>




<tr id="1988" class="entry"><td><h1>1988</h1></td></tr>

<tr id="Gil1988" class="entry">

<td>
<em> <a href="http://link.springer.com/chapter/10.1007%2F978-94-009-2800-8_38">Positron Annihilation Studies in Neutron Irradiated Steels</a></em><br />
C. Lopes Gil, A. de Lima, N. de Campos, J. Fernandes, G. Kögel, P. Sperr and W. Triftshäuser;
In: E. Recknagel and J. Soares (Eds.),
<em> Nuclear Physics Applications on Materials Science</em>
, Vol. 144

, p. 441-442
, Springer Netherlands
, 1988.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gil1988','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gil1988','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/chapter/10.1007%2F978-94-009-2800-8_38">URL</a>]
[<a href="https://doi.org/10.1007/978-94-009-2800-8_38">DOI</a>]

</td>
</tr> 
<tr id="abs_Gil1988" class="abstract noshow">
	<td><b>Abstract</b>: Due to the sensitivity of the positrons to vacancy-type defects the positron annihilation techniques became of unique importance for the identification of the structural changes involved in the recovery stages of pure metals. The recent application of these techniques to materials with complex structure like steels has also contributed to the understanding of the microscopic processes involved in their recovery.</td>
</tr>
<tr id="bib_Gil1988" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@incollection{Gil1988,
	  author = {Lopes Gil, C. and de Lima, A.P. and de Campos, N.Ayres and Fernandes, J.V. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Positron Annihilation Studies in Neutron Irradiated Steels},
	  booktitle = {Nuclear Physics Applications on Materials Science},
	  publisher = {Springer Netherlands},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1988},
	  volume = {144},
	  pages = {441--442},
	  editor = {Recknagel, E. and Soares, J.C.},
	  url = {http://link.springer.com/chapter/10.1007%2F978-94-009-2800-8_38},
	  doi = {https://doi.org/10.1007/978-94-009-2800-8_38}
	}
	</pre></td>
</tr>






<tr id="Koegel1988" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevLett.60.1550">Investigation of micropores in amorphous hydrogenated carbon by a pulsed positron beam</a></em><br />
G. Kögel, D. Schödlbauer, W. Triftshäuser and J. Winter; Physical Review Letters
<b> 60</b>
 (15)
 (1988)
 1550-1553.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1988','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1988','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.60.1550">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevLett.60.1550">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1988.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1988" class="abstract noshow">
	<td><b>Abstract</b>: The positron lifetime (PLT) in a thin film of amorphous hydrogenated carbon (a-C:H) was studied by a pulsed positron beam. For the first time the PLT was measured in a layer which is as thin as 100 nm. PLTs of 400(5) ps for the surface state and 348(3) ps in the volume of the film were obtained. The diffusion length of the positrons was measured to be only 4(1) nm. From these results we conclude that in the specimen investigated at least 3% of the total volume is occupied by micropores about 0.5 nm in diameter which may make possible the diffusion of molecular hydrogen in a-C:H. © 1988 The American Physical Society.</td>
</tr>
<tr id="bib_Koegel1988" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1988,
	  author = {Kögel, G. and Schödlbauer, D. and Triftshäuser, W. and Winter, J.},
	  title = {Investigation of micropores in amorphous hydrogenated carbon by a pulsed positron beam},
	  journal = {Physical Review Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1988},
	  volume = {60},
	  number = {15},
	  pages = {1550--1553},
	  url = {http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.60.1550},
	  doi = {https://doi.org/10.1103/PhysRevLett.60.1550}
	}
	</pre></td>
</tr>






<tr id="Schoedlbauer1988" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0168-583X(88)90752-5">A pulsing system for low energy positrons</a></em><br />
D. Schödlbauer, P. Sperr, G. Kögel and W. Triftshäuser; Nuclear Inst. and Methods in Physics Research, B
<b> 34</b>
 (2)
 (1988)
 258-268.
<p class="infolinks">
[<a href="javascript:toggleInfo('Schoedlbauer1988','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Schoedlbauer1988','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0168583X88907525?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/0168-583X(88)90752-5">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Schoedlbauer1988.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Schoedlbauer1988" class="abstract noshow">
	<td><b>Abstract</b>: A pulsing system for a low energy positron beam of variable energy was developed. The system consists of a beam chopper and a beam buncher. The performance of the system was tested in various positron lifetime measurements. A time resolution of 135 ps was achieved for the pulsing system at positron energies in the range between 0.5 keV and 28 keV. © 1988.</td>
</tr>
<tr id="bib_Schoedlbauer1988" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Schoedlbauer1988,
	  author = {Schödlbauer, D. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {A pulsing system for low energy positrons},
	  journal = {Nuclear Inst. and Methods in Physics Research, B},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1988},
	  volume = {34},
	  number = {2},
	  pages = {258--268},
	  url = {http://www.sciencedirect.com/science/article/pii/0168583X88907525?via%3Dihub},
	  doi = {https://doi.org/10.1016/0168-583X(88)90752-5}
	}
	</pre></td>
</tr>




<tr id="1987" class="entry"><td><h1>1987</h1></td></tr>

<tr id="Schoedlbauer1987" class="entry">

<td>
<em> <a href="https://doi.org/10.1002/pssa.2211020210">Lifetime Measurements with a Pulsed Slow Positron Beam</a></em><br />
D. Schödlbauer, G. Kögel, P. Sperr and W. Triftshäuser; physica status solidi (a)
<b> 102</b>
 (2)
 (1987)
 549-554.
<p class="infolinks">
[<a href="javascript:toggleInfo('Schoedlbauer1987','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Schoedlbauer1987','bibtex')">BibTeX</a>]
[<a href="http://onlinelibrary.wiley.com/doi/10.1002/pssa.2211020210/abstract">URL</a>]
[<a href="https://doi.org/10.1002/pssa.2211020210">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Schoedlbauer1987.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Schoedlbauer1987" class="abstract noshow">
	<td><b>Abstract</b>: The lifetimes of positrons annihilating in solids at the surface or close to the surface are measured by a pulsed positron beam of variable energy. A time resolution of 240 ps FWHM at a coincidence count rate of 70 s−1 is obtained. For stainless steel and nickel the lifetime associated to the annihilation in surface states is of the order of 500 ps. The lifetimes for the annihilation in trapping centers close to the surface are in complete agreement with the lifetimes observed in conventional lifetime measurements.</td>
</tr>
<tr id="bib_Schoedlbauer1987" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Schoedlbauer1987,
	  author = {Schödlbauer, D. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Lifetime Measurements with a Pulsed Slow Positron Beam},
	  journal = {physica status solidi (a)},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1987},
	  volume = {102},
	  number = {2},
	  pages = {549--554},
	  url = {http://onlinelibrary.wiley.com/doi/10.1002/pssa.2211020210/abstract},
	  doi = {https://doi.org/10.1002/pssa.2211020210}
	}
	</pre></td>
</tr>






<tr id="Sperr1987" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0168-9002(87)90043-X">Timing measurements with barium flouride scintillators</a></em><br />
P. Sperr; Nuclear Inst. and Methods in Physics Research, A
<b> 254</b>
 (3)
 (1987)
 635-636.
<p class="infolinks">
[<a href="javascript:toggleInfo('Sperr1987','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Sperr1987','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/016890028790043X?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/0168-9002(87)90043-X">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Sperr1987.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Sperr1987" class="abstract noshow">
	<td><b>Abstract</b>: The timing properties of BaF2 were investigated using different reflector materials, coupling compounds, photomultiplier tubes and voltage divider circuits. © 1987.</td>
</tr>
<tr id="bib_Sperr1987" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Sperr1987,
	  author = {Sperr, P.},
	  title = {Timing measurements with barium flouride scintillators},
	  journal = {Nuclear Inst. and Methods in Physics Research, A},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1987},
	  volume = {254},
	  number = {3},
	  pages = {635--636},
	  url = {http://www.sciencedirect.com/science/article/pii/016890028790043X?via%3Dihub},
	  doi = {https://doi.org/10.1016/0168-9002(87)90043-X}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1987" class="entry">

<td>
<em> <a href="http://link.springer.com/chapter/10.1007%2F978-94-009-3505-1_17">Defects in amorphous alloys</a></em><br />
W. Triftshäuser and G. Kögel;
In: E. L&uuml;scher, G. Fritsch and G. Jacucci (Eds.),
<em> Amorphous and Liquid Materials</em>
, Vol. 118

, p. 218-232
, Springer Netherlands
, 1987.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser1987','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser1987','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/chapter/10.1007%2F978-94-009-3505-1_17">URL</a>]
[<a href="https://doi.org/10.1007/978-94-009-3505-1_17">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1987.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser1987" class="abstract noshow">
	<td><b>Abstract</b>: In all amorphous alloys investigated by positrons, intrinsic defects with a vacancy-like local structure have been identified. These empty spaces in M1 type alloys are larger than the Bernal holes and their concentration is so high (10** minus **3 to 10** minus **2) that these intrinsic defects must be considered as constituent parts of the amorphous structure. In the M2 type alloys the intrinsic defect concentration is comparatively low. In both types of amorphous alloys radiation-induced defects have been observed. After low temperature irradiation the defects behave like close Frenkel pairs.</td>
</tr>
<tr id="bib_Triftshaeuser1987" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@incollection{Triftshaeuser1987,
	  author = {Triftshäuser, W. and Kögel, G.},
	  title = {Defects in amorphous alloys},
	  booktitle = {Amorphous and Liquid Materials},
	  publisher = {Springer Netherlands},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1987},
	  volume = {118},
	  number = {118},
	  pages = {218--232},
	  editor = {L&uuml;scher, E. and Fritsch, G. and Jacucci, G.},
	  url = {http://link.springer.com/chapter/10.1007%2F978-94-009-3505-1_17},
	  doi = {https://doi.org/10.1007/978-94-009-3505-1_17}
	}
	</pre></td>
</tr>




<tr id="1986" class="entry"><td><h1>1986</h1></td></tr>

<tr id="Triftshaeuser1986" class="entry">

<td>
<em> <a href="http://link.springer.com/chapter/10.1007%2F978-3-642-46571-0_9">Positron Annihilation</a></em><br />
W. Triftshäuser;
In: U. Gonser (Ed.),
<em> Microscopic Methods in Metals</em>
, Vol. 40
, Chapter 9
, p. 249-295
, Springer Berlin Heidelberg
, 1986.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser1986','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser1986','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/chapter/10.1007%2F978-3-642-46571-0_9">URL</a>]
[<a href="https://doi.org/10.1007/978-3-642-46571-0_9">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1986.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser1986" class="abstract noshow">
	<td><b>Abstract</b>: It is intended to describe the use of positron annihilation spectroscopy in metals and alloys. In the sections following the introduction of the basic principles, applications of positron annihilation are presented to study defect and defect-free materials. The investigation of Fermi-surface properties in single crystals of metals and alloys is one of the very interesting topics in positron annihilation. Even more exciting and in some way unique is the positron method in the field of defects in metallic materials, such as vacancies in thermal equilibrium, quenched-in defects, dislocations, grain boundaries associated with phase transitions, amorphous structures, and radiation-induced defects and their agglomerates, together with implanted gases.</td>
</tr>
<tr id="bib_Triftshaeuser1986" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@incollection{Triftshaeuser1986,
	  author = {Triftshäuser, W.},
	  title = {Positron Annihilation},
	  booktitle = {Microscopic Methods in Metals},
	  publisher = {Springer Berlin Heidelberg},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1986},
	  volume = {40},
	  pages = {249--295},
	  editor = {Gonser, Ulrich},
	  url = {http://link.springer.com/chapter/10.1007%2F978-3-642-46571-0_9},
	  doi = {https://doi.org/10.1007/978-3-642-46571-0_9}
	}
	</pre></td>
</tr>




<tr id="1985" class="entry"><td><h1>1985</h1></td></tr>

<tr id="Koegel1985" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0022-3115(85)90345-9">Helium irradiated nickel investigated by positron annihilation</a></em><br />
G. Kögel, F. Qin-Min, P. Sperr, W. Triftshäuser and B. Viswanathan; Journal of Nuclear Materials
<b> 127</b>
 (2-3)
 (1985)
 125-131.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1985','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1985','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0022311585903459">URL</a>]
[<a href="https://doi.org/10.1016/0022-3115(85)90345-9">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1985.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1985" class="abstract noshow">
	<td><b>Abstract</b>: Nickel specimens have been homogeneously implanted with helium ions at about 325 K to a total dose of 500 appm. Distinct defect structures are observed in the irradiated specimen during isochronal annealing. Positron lifetime and Doppler broadening techniques were applied to study the evolution of the defect configurations. The influence of helium on the positron annihilation characteristics is clearly visible. The nucleation of helium bubbles could be determined. At higher annealing temperatures two distinct positron bound states are found. For both states the temperature dependence of the annihilation characteristics is similar to that reported for voids. Clear differences in the annihilation parameters have been established for empty and helium-decorated vacancy clusters. © 1985.</td>
</tr>
<tr id="bib_Koegel1985" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1985,
	  author = {Kögel, G. and Qin-Min, F. and Sperr, P. and Triftshäuser, W. and Viswanathan, B.},
	  title = {Helium irradiated nickel investigated by positron annihilation},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  volume = {127},
	  number = {2-3},
	  pages = {125--131},
	  url = {http://www.sciencedirect.com/science/article/pii/0022311585903459},
	  doi = {https://doi.org/10.1016/0022-3115(85)90345-9}
	}
	</pre></td>
</tr>






<tr id="Koegel1985a" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0022-3115(85)90453-2">Positron lifetime and Doppler-broadening studies of vacancy formation and phase transformation in uranium</a></em><br />
G. Kögel, P. Sperr, W. Triftshäuser and S. Rothman; Journal of Nuclear Materials
<b> 131</b>
 (2-3)
 (1985)
 148-157.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1985a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1985a','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0022311585904532?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/0022-3115(85)90453-2">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1985a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1985a" class="abstract noshow">
	<td><b>Abstract</b>: The positron lifetime and the Doppler-broadening of the annihilation radiation have been investigated in high-purity uranium at temperatures between 290 K and 1400 K. We find a significant dependence of the bulk lifetime and the annihilation lineshape on crystal structure and on temperature. Trapping at vacancies is observed only in γ-uranium. The total trapping rate is surprisingly low and increases by only a factor of two from the β → γ transition temperature to the melting point. In γ-uranium the vacancy formation parameters as well as the specific trapping rate for positrons at vacancies most probably depend on temperature. The average formation enthalpy in the γ-phase is of the order of 0.3 eV. © 1985.</td>
</tr>
<tr id="bib_Koegel1985a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1985a,
	  author = {Kögel, G. and Sperr, P. and Triftshäuser, W. and Rothman, S.J.},
	  title = {Positron lifetime and Doppler-broadening studies of vacancy formation and phase transformation in uranium},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  volume = {131},
	  number = {2-3},
	  pages = {148--157},
	  url = {http://www.sciencedirect.com/science/article/pii/0022311585904532?via%3Dihub},
	  doi = {https://doi.org/10.1016/0022-3115(85)90453-2}
	}
	</pre></td>
</tr>






<tr id="Koegel1985b" class="entry">

<td>
<em> The reconstruction of defect distributions close to the surface from data obtained by slow positrons</a></em><br />
G. Kögel;
In: 
<em>  Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7</em>


 (1985)
 965-967
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Koegel1985b','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Koegel1985b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Koegel1985b,
	  author = {Kögel, G.},
	  title = {The reconstruction of defect distributions close to the surface from data obtained by slow positrons},
	  booktitle = {Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  pages = {965--967}
	}
	</pre></td>
</tr>






<tr id="LopesGil1985" class="entry">

<td>
<em> Positron Annihilation Studies of Neutron Irradiated Reactor Steels</a></em><br />
C. Lopes Gil, P. Sperr, G. Kögel and W. Triftshäuser;
In: 
<em>  Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7</em>


 (1985)
 479-481
.
<p class="infolinks">


[<a href="javascript:toggleInfo('LopesGil1985','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_LopesGil1985" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{LopesGil1985,
	  author = {Lopes Gil, C. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Positron Annihilation Studies of Neutron Irradiated Reactor Steels},
	  booktitle = {Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  pages = {479--481}
	}
	</pre></td>
</tr>






<tr id="LopesGil1985a" class="entry">

<td>
<em> Study of Defects in Stainless Steel 316 by Positron Annihilation</a></em><br />
C. Lopes Gil, P. Sperr, G. Kögel and W. Triftshäuser;
In: 
<em>  Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7</em>


 (1985)
 877-879
.
<p class="infolinks">


[<a href="javascript:toggleInfo('LopesGil1985a','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_LopesGil1985a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{LopesGil1985a,
	  author = {Lopes Gil, C. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Study of Defects in Stainless Steel 316 by Positron Annihilation},
	  booktitle = {Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  pages = {877--879}
	}
	</pre></td>
</tr>






<tr id="Schoedlbauer1985" class="entry">

<td>
<em> A Pulsed Positron Beam for Lifetime Studies</a></em><br />
D. Schödlbauer, P. Sperr, G. Kögel and W. Triftshäuser;
In: 
<em>  Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7</em>


 (1985)
 957-959
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Schoedlbauer1985','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Schoedlbauer1985" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Schoedlbauer1985,
	  author = {Schödlbauer, D. and Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {A Pulsed Positron Beam for Lifetime Studies},
	  booktitle = {Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  pages = {957--959}
	}
	</pre></td>
</tr>






<tr id="Sperr1985" class="entry">

<td>
<em> Positron Lifetime and Doppler-Broadening studies of vacancy formation and phase transformation in uranium</a></em><br />
P. Sperr, G. Kögel and W. Triftshäuser;
In: 
<em>  Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7</em>


 (1985)
 509-511
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Sperr1985','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Sperr1985" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Sperr1985,
	  author = {Sperr, P. and Kögel, G. and Triftshäuser, W.},
	  title = {Positron Lifetime and Doppler-Broadening studies of vacancy formation and phase transformation in uranium},
	  booktitle = {Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  pages = {509--511}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1985" class="entry">

<td>
<em> A Positron Annihilation Study of Ageing in Aluminum Alloy</a></em><br />
W. Triftshäuser and G. Kögel;
In: 
<em>  Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7</em>


 (1985)
 874-876
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Triftshaeuser1985','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Triftshaeuser1985" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Triftshaeuser1985,
	  author = {Triftshäuser, W. and Kögel, G.},
	  title = {A Positron Annihilation Study of Ageing in Aluminum Alloy},
	  booktitle = {Proceedings of the 7th International Conference on Positron Annihilation, ICPA-7},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1985},
	  pages = {874--876}
	}
	</pre></td>
</tr>




<tr id="1983" class="entry"><td><h1>1983</h1></td></tr>

<tr id="Koegel1983" class="entry">

<td>
<em> <a href="https://doi.org/10.1080/00337578308207373">Helium implantation in metals investigated by monoenergetic positrons</a></em><br />
G. Kögel and W. Triftshäuser; Radiation Effects
<b> 78</b>
 (1-4)
 (1983)
 221-230.
<p class="infolinks">
[<a href="javascript:toggleInfo('Koegel1983','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Koegel1983','bibtex')">BibTeX</a>]
[<a href="http://www.tandfonline.com/doi/abs/10.1080/00337578308207373">URL</a>]
[<a href="https://doi.org/10.1080/00337578308207373">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Koegel1983.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Koegel1983" class="abstract noshow">
	<td><b>Abstract</b>: Helium-implanted metals and alloys were investigated with a positron beam system capable of producing positrons with energies ranging between 150 eV and 28 keV. Such a system is superior to the classical positron annihilation methods using high energy positrons from radioactive sources, since, for the first time, near-surface defects and defect agglomerates at high concentrations can be studied. Results are reported on crystalline nickel and amorphous nickel alloys irradiated at room temperature with helium up to doses of 1.8 × 1018 cm−2 at different energies. The Doppler broadening technique of the annihilation radiation is applied, and the lineshape parameter Ic is used to characterize the various defect configurations. In some favourable cases information about defect concentrations could be obtained.</td>
</tr>
<tr id="bib_Koegel1983" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Koegel1983,
	  author = {Kögel, G. and Triftshäuser, W.},
	  title = {Helium implantation in metals investigated by monoenergetic positrons},
	  journal = {Radiation Effects},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1983},
	  volume = {78},
	  number = {1-4},
	  pages = {221--230},
	  url = {http://www.tandfonline.com/doi/abs/10.1080/00337578308207373},
	  doi = {https://doi.org/10.1080/00337578308207373}
	}
	</pre></td>
</tr>






<tr id="Viswanathan1983" class="entry">

<td>
<em> <a href="https://doi.org/10.1080/00337578308207374">Investigation of helium and deuteron irradiated stainless steel (and nickel) by positron annihilation</a></em><br />
B. Viswanathan, W. Triftshäuser and G. Kögel; Radiation Effects
<b> 78</b>
 (1-4)
 (1983)
 231–243.
<p class="infolinks">
[<a href="javascript:toggleInfo('Viswanathan1983','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Viswanathan1983','bibtex')">BibTeX</a>]
[<a href="http://www.tandfonline.com/doi/abs/10.1080/00337578308207374">URL</a>]
[<a href="https://doi.org/10.1080/00337578308207374">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Viswanathan1983.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Viswanathan1983" class="abstract noshow">
	<td><b>Abstract</b>: Positron annihilation studies have been carried out in austenitic stainless steel (SS 316), irradiated with high energy helium and deuteron ions from a cyclotron. Defect states have been deduced from simultaneous measurements of positron lifetime and Doppler lineshape in post-irradiation anneal up to 1473°K. Clear differences in the annealing characteristics are observed beyond 673°K between the helium- and deuteron-irradiated specimens. Evidence is presented for helium-vacancy interaction and nucleation of helium bubbles. Results on helium in nickel are also discussed for comparison. Helium agglomeration to microbubbles, which are well below the resolution of electron microscopy, is detected around 800°K. In the growth stage of bubbles at higher temperatures, two distinct positron bound states develop both in SS 316 and nickel. Helium retention in large bubbles is found to be stable even at 1473°K in SS 316.</td>
</tr>
<tr id="bib_Viswanathan1983" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Viswanathan1983,
	  author = {Viswanathan, B. and Triftshäuser, W. and Kögel, G.},
	  title = {Investigation of helium and deuteron irradiated stainless steel (and nickel) by positron annihilation},
	  journal = {Radiation Effects},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1983},
	  volume = {78},
	  number = {1-4},
	  pages = {231–243},
	  url = {http://www.tandfonline.com/doi/abs/10.1080/00337578308207374},
	  doi = {https://doi.org/10.1080/00337578308207374}
	}
	</pre></td>
</tr>




<tr id="1982" class="entry"><td><h1>1982</h1></td></tr>

<tr id="Triftshaeuser1982" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0022-3115(82)90290-2">Helium implantation in metals investigated by monoenergetic positrons</a></em><br />
W. Triftshäuser, G. Kögel and J. Bohdansky; Journal of Nuclear Materials
<b> 111-112</b>
 (C)
 (1982)
 687-694.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser1982','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser1982','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0022311582902902">URL</a>]
[<a href="https://doi.org/10.1016/0022-3115(82)90290-2">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1982.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser1982" class="abstract noshow">
	<td><b>Abstract</b>: A new system has been developed to produce monoenergetic positrons of variable energy. The energy range available at present is between 150 eV and 28 keV. This positron beam can be used to investigate defects and defect structures produced below the surface in metals and alloys. The problems of extracting information about various defects in the near-surface region under the influence of the surface properties and the diffusion of the thermalized positrons will be discussed. Experimental results for neutron and helium-irradiated copper and nickel specimens as well as for amorphous alloys will be presented. The Doppler broadening technique of the annihilation radiation is applied for these measurements. © 1982.</td>
</tr>
<tr id="bib_Triftshaeuser1982" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1982,
	  author = {Triftshäuser, W. and Kögel, G. and Bohdansky, J.},
	  title = {Helium implantation in metals investigated by monoenergetic positrons},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1982},
	  volume = {111-112},
	  number = {C},
	  pages = {687--694},
	  url = {http://www.sciencedirect.com/science/article/pii/0022311582902902},
	  doi = {https://doi.org/10.1016/0022-3115(82)90290-2}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1982a" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevLett.48.1741">Defect structures below the surface in metals investigated by monoenergetic positrons</a></em><br />
W. Triftshäuser and G. Kögel; Physical Review Letters
<b> 48</b>
 (25)
 (1982)
 1741-1744.
<p class="infolinks">
[<a href="javascript:toggleInfo('Triftshaeuser1982a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Triftshaeuser1982a','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.48.1741">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevLett.48.1741">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Triftshaeuser1982a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Triftshaeuser1982a" class="abstract noshow">
	<td><b>Abstract</b>: A new compact system has been developed to produce monoenergetic positrons of variable energy. The energy range available at present is between 150 eV and 28 keV, so that depth profiles can be measured. This positron beam is being used to investigate defects and defect structures close to the surface in metals and alloys. The technique of Doppler broadening of the annihilation radiation is applied for these measurements. © 1982 The American Physical Society.</td>
</tr>
<tr id="bib_Triftshaeuser1982a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Triftshaeuser1982a,
	  author = {Triftshäuser, W. and Kögel, G.},
	  title = {Defect structures below the surface in metals investigated by monoenergetic positrons},
	  journal = {Physical Review Letters},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1982},
	  volume = {48},
	  number = {25},
	  pages = {1741--1744},
	  url = {http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.48.1741},
	  doi = {https://doi.org/10.1103/PhysRevLett.48.1741}
	}
	</pre></td>
</tr>






<tr id="Triftshaeuser1982b" class="entry">

<td>
<em> Defect structures close to the surface in metals investigated by slow positrons</a></em><br />
W. Triftshäuser and G. Kögel;
In: 
<em>  Point Defects and Defect Interactions in Metals, Yamada Conference Proceedings</em>


 (1982)
 15-18
.
<p class="infolinks">


[<a href="javascript:toggleInfo('Triftshaeuser1982b','bibtex')">BibTeX</a>]



</td>
</tr> 
<tr id="bib_Triftshaeuser1982b" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Triftshaeuser1982b,
	  author = {Triftshäuser, W. and Kögel, G.},
	  title = {Defect structures close to the surface in metals investigated by slow positrons},
	  booktitle = {Point Defects and Defect Interactions in Metals, Yamada Conference Proceedings},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1982},
	  pages = {15--18}
	}
	</pre></td>
</tr>






<tr id="Viswanathan1982" class="entry">

<td>
<em> Investigation of helium irradiated stainless steel by positron annihilation.</a></em><br />
B. Viswanathan, G. Kögel, P. Sperr and W. Triftshäuser;
In: , P.G. Coleman, S.C. Sharma and L.M. Diana (Eds.),
<em>  6. International conference on positron annihilation; Arlington, TX (USA); 3 - 7 Apr 1982</em>
, Positron Annihilation

 (1982)
 520-522
, North-Holland; Amsterdam (Netherlands).
<p class="infolinks">
[<a href="javascript:toggleInfo('Viswanathan1982','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Viswanathan1982','bibtex')">BibTeX</a>]


[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Viswanathan1982.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Viswanathan1982" class="abstract noshow">
	<td><b>Abstract</b>: Isochronal annealing experiments were performed on helium irradiated stainless steel specimens. From positron lifetime and Doppler broadening measurements characteristic defect configurations could be deduced. There is a strong indication that the nucleation process to helium bubbles in this material starts at 640 K.</td>
</tr>
<tr id="bib_Viswanathan1982" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@inproceedings{Viswanathan1982,
	  author = {Viswanathan, B. and Kögel, G. and Sperr, P. and Triftshäuser, W.},
	  title = {Investigation of helium irradiated stainless steel by positron annihilation.},
	  booktitle = {6. International conference on positron annihilation; Arlington, TX (USA); 3 - 7 Apr 1982},
	  journal = {Positron Annihilation},
	  publisher = {North-Holland; Amsterdam (Netherlands)},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1982},
	  pages = {520--522},
	  editor = {Coleman, P. G. and Sharma, S. C. and Diana, L. M.}
	}
	</pre></td>
</tr>




<tr id="1980" class="entry"><td><h1>1980</h1></td></tr>

<tr id="Matter1980" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0022-3115(80)90283-4">Investigation of vacancy formation and phase transformations in uranium by positron annihilation</a></em><br />
H. Matter, J. Winter and W. Triftshäuser; Journal of Nuclear Materials
<b> 88</b>
 (2-3)
 (1980)
 273-278.
<p class="infolinks">
[<a href="javascript:toggleInfo('Matter1980','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Matter1980','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0022311580902834?via%3Dihub">URL</a>]
[<a href="https://doi.org/10.1016/0022-3115(80)90283-4">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Matter1980.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Matter1980" class="abstract noshow">
	<td><b>Abstract</b>: Measurements of the positron annihilation coincidence count rate at the peak of the angular correlation curve (CCR) in uranium were performed as a function of temperature between 550 and 1350 K. The α → β and β → γ phase transformations are reflected by discontinuities of the CCR. The low temperature slope of the curve, the change at the α → β transition at 941 K, and the initial slope in the β phase can be very well described by linear thermal expansion. The jump of the CCR at 1048 K is predominantly due to the vacancy trapping effect. Applying the trapping model to the data in the 7 phase, a lower limit of about 1 eV has been obtained for the monovacancy formation energy EF 1v. This result leaves only a very small value for the vacancy migration energy EM 1v. © 1980.</td>
</tr>
<tr id="bib_Matter1980" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Matter1980,
	  author = {Matter, H. and Winter, J. and Triftshäuser, W.},
	  title = {Investigation of vacancy formation and phase transformations in uranium by positron annihilation},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1980},
	  volume = {88},
	  number = {2-3},
	  pages = {273--278},
	  url = {http://www.sciencedirect.com/science/article/pii/0022311580902834?via%3Dihub},
	  doi = {https://doi.org/10.1016/0022-3115(80)90283-4}
	}
	</pre></td>
</tr>




<tr id="1979" class="entry"><td><h1>1979</h1></td></tr>

<tr id="Matter1979" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF00885934">Phase transformations and vacancy formation energies of transition metals by positron annihilation</a></em><br />
H. Matter, J. Winter and W. Triftshäuser; Applied Physics
<b> 20</b>
 (2)
 (1979)
 135-140.
<p class="infolinks">
[<a href="javascript:toggleInfo('Matter1979','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Matter1979','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2FBF00885934">URL</a>]
[<a href="https://doi.org/10.1007/BF00885934">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Matter1979.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Matter1979" class="abstract noshow">
	<td><b>Abstract</b>: The technique of the coincidence count rate at the peak of the angular correlation curve (CCR) in positron annihilation has been applied to the investigation of vacancy formation energies in thermal equilibrium in nickel, cobalt, and iron. The monovacancy formation energy E1v/F has been determined to (1.55±0.05) eV and (1.34±0.07) eV for nickel and cobalt, and (1.60±0.10) eV for α-iron, and (1.40±0.15) eV for γ-iron, respectively. The structural phase transformations in cobalt (693 K) and iron (1183 K, 1663 K) are exhibited by discontinuities of the CCR. In the case of cobalt the CCR follows exactly the change of the thermal expansion at the transition temperature. The temperature dependence of the CCR in the prevacancy region is found to be proportional to the thermal expansion for all metals investigated. © 1979 Springer-Verlag.</td>
</tr>
<tr id="bib_Matter1979" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Matter1979,
	  author = {Matter, H. and Winter, J. and Triftshäuser, W.},
	  title = {Phase transformations and vacancy formation energies of transition metals by positron annihilation},
	  journal = {Applied Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1979},
	  volume = {20},
	  number = {2},
	  pages = {135--140},
	  url = {http://link.springer.com/article/10.1007%2FBF00885934},
	  doi = {https://doi.org/10.1007/BF00885934}
	}
	</pre></td>
</tr>




<tr id="1978" class="entry"><td><h1>1978</h1></td></tr>

<tr id="Heffner1978" class="entry">

<td>
<em> <a href="https://doi.org/10.1007/BF01021947">μ+SR diffusion studies at LAMPF</a></em><br />
R. Heffner, W. Gauster, D. Parkin, C. Huang, R. Hutson, M. Leon, M. Schillaci, M. Simmons and W. Triftshäuser; Hyperfine Interactions
<b> 4</b>
 (1-2)
 (1978)
 838-843.
<p class="infolinks">


[<a href="javascript:toggleInfo('Heffner1978','bibtex')">BibTeX</a>]
[<a href="http://link.springer.com/article/10.1007%2FBF01021947">URL</a>]
[<a href="https://doi.org/10.1007/BF01021947">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Heffner1978.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Heffner1978" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Heffner1978,
	  author = {Heffner, R.H. and Gauster, W.B. and Parkin, D.M. and Huang, C.Y. and Hutson, R.L. and Leon, M. and Schillaci, M.E. and Simmons, M.L. and Triftshäuser, W.},
	  title = {μ+SR diffusion studies at LAMPF},
	  journal = {Hyperfine Interactions},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1978},
	  volume = {4},
	  number = {1-2},
	  pages = {838--843},
	  url = {http://link.springer.com/article/10.1007%2FBF01021947},
	  doi = {https://doi.org/10.1007/BF01021947}
	}
	</pre></td>
</tr>






<tr id="Lengeler1978" class="entry">

<td>
<em> <a href="https://doi.org/10.1088/0305-4608/8/8/010">Interaction of hydrogen and vacancies in copper investigated by positron annihilation</a></em><br />
B. Lengeler, S. Mantl and W. Triftshäuser; Journal of Physics F: Metal Physics
<b> 8</b>
 (8)
 (1978)
 1691-1698.
<p class="infolinks">
[<a href="javascript:toggleInfo('Lengeler1978','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Lengeler1978','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0305-4608/8/8/010/meta">URL</a>]
[<a href="https://doi.org/10.1088/0305-4608/8/8/010">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Lengeler1978.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Lengeler1978" class="abstract noshow">
	<td><b>Abstract</b>: Doppler broadening measurements have been performed on Cu samples containing vacancies and/or hydrogen. Trapping of hydrogen by vacancies is indicated above about 150K. Vacancies occupied by hydrogen show a strongly reduced positron-trapping probability as compared to hydrogen-free vacancies. Detrapping of hydrogen is not observed below 450K. Therefore, the vacancy-hydrogen binding energy must be greater than 0.4 eV. The positron measurements also show that quenched-in vacancies become mobile at about 273K and form clusters. The close analogy to the annealing behaviour of electron-irradiated Cu confirms the interpretation of annealing stage III by single-vacancy migration.</td>
</tr>
<tr id="bib_Lengeler1978" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Lengeler1978,
	  author = {Lengeler, B. and Mantl, S. and Triftshäuser, W.},
	  title = {Interaction of hydrogen and vacancies in copper investigated by positron annihilation},
	  journal = {Journal of Physics F: Metal Physics},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1978},
	  volume = {8},
	  number = {8},
	  pages = {1691--1698},
	  url = {http://iopscience.iop.org/article/10.1088/0305-4608/8/8/010/meta},
	  doi = {https://doi.org/10.1088/0305-4608/8/8/010}
	}
	</pre></td>
</tr>






<tr id="Mantl1978" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0022-3115(78)90285-4">Defect specific temperature dependence of positron trapping</a></em><br />
S. Mantl, W. Kesternich and W. Triftshäuser; Journal of Nuclear Materials
<b> 69-70</b>
 (C)
 (1978)
 593-595.
<p class="infolinks">


[<a href="javascript:toggleInfo('Mantl1978','bibtex')">BibTeX</a>]
[<a href="http://iopscience.iop.org/article/10.1088/0305-4608/8/8/010/meta">URL</a>]
[<a href="https://doi.org/10.1016/0022-3115(78)90285-4">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Mantl1978.pdf">PDF</a>]
</td>
</tr> 
<tr id="bib_Mantl1978" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Mantl1978,
	  author = {Mantl, S. and Kesternich, W. and Triftshäuser, W.},
	  title = {Defect specific temperature dependence of positron trapping},
	  journal = {Journal of Nuclear Materials},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1978},
	  volume = {69-70},
	  number = {C},
	  pages = {593--595},
	  url = {http://iopscience.iop.org/article/10.1088/0305-4608/8/8/010/meta},
	  doi = {https://doi.org/10.1016/0022-3115(78)90285-4}
	}
	</pre></td>
</tr>






<tr id="Mantl1978a" class="entry">

<td>
<em> <a href="https://doi.org/10.1103/PhysRevB.17.1645">Defect annealing studies on metals by positron annihilation and electrical resitivity measurements</a></em><br />
S. Mantl and W. Triftshäuser; Physical Review B
<b> 17</b>
 (4)
 (1978)
 1645-1652.
<p class="infolinks">
[<a href="javascript:toggleInfo('Mantl1978a','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Mantl1978a','bibtex')">BibTeX</a>]
[<a href="http://journals.aps.org/prb/abstract/10.1103/PhysRevB.17.1645">URL</a>]
[<a href="https://doi.org/10.1103/PhysRevB.17.1645">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Mantl1978a.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Mantl1978a" class="abstract noshow">
	<td><b>Abstract</b>: Doppler-broadening positron-annihilation measurements combined with electrical-resistivity measurements were performed on Cu and Al samples, irradiated by high-energy electrons at liquid-helium temperature. A defect-specific parameter R was determined from the shape of the 511-keV annihilation line. The R parameter is found to be independent of the defect concentration C and the positron trapping constant within the framework of the two-state trapping model. During isochronal annealing of electron-irradiated copper the line-shape parameter Iv increases in stage III, whereas the electrical resistivity decreases, indicating a reduction in the Frenkel-defect concentration. These two combined effects and the pronounced steps in the R parameter during stage-III annealing, which are found to be dose independent, signify that radiation-produced vacancies become mobile and coalesce into clusters before they anneal out. The positron trapping constant for vacancies in Cu was determined to be =(4.25×0.8)×1014 sec-1. Furthermore, the annealing behavior of copper and aluminum samples, deformed plastically at 77 K and irradiated at 4.2 K by electrons, respectively, is discussed. In both cases no indication for the formation of vacancy agglomerates is found during annealing. The R-parameter analysis is also applied to the data for electron-irradiated Mo, as reported by Eldrup et al. © 1978 The American Physical Society.</td>
</tr>
<tr id="bib_Mantl1978a" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Mantl1978a,
	  author = {Mantl, S. and Triftshäuser, W.},
	  title = {Defect annealing studies on metals by positron annihilation and electrical resitivity measurements},
	  journal = {Physical Review B},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1978},
	  volume = {17},
	  number = {4},
	  pages = {1645--1652},
	  url = {http://journals.aps.org/prb/abstract/10.1103/PhysRevB.17.1645},
	  doi = {https://doi.org/10.1103/PhysRevB.17.1645}
	}
	</pre></td>
</tr>




<tr id="1977" class="entry"><td><h1>1977</h1></td></tr>

<tr id="Gauster1977" class="entry">

<td>
<em> <a href="https://doi.org/10.1016/0038-1098(77)90375-1">Measurement of the depolarization rate of positive muons in copper and aluminum</a></em><br />
W. Gauster, R. Heffner, C. Huang, R. Hutson, M. Leon, D. Parkin, M. Schillaci, W. Triftshäuser and W. Wampler; Solid State Communications
<b> 24</b>
 (9)
 (1977)
 619-622.
<p class="infolinks">
[<a href="javascript:toggleInfo('Gauster1977','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Gauster1977','bibtex')">BibTeX</a>]
[<a href="http://www.sciencedirect.com/science/article/pii/0038109877903751">URL</a>]
[<a href="https://doi.org/10.1016/0038-1098(77)90375-1">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Gauster1977.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Gauster1977" class="abstract noshow">
	<td><b>Abstract</b>: Positive muon spin rotation experiments for polycrystalline Cu and Al from 19K to temperatures near the melting points are reported. At low temperatures, the depolarization associated with localization of the muons at octahedral interstitial sites is seen in Cu, while in Aℓ only slight depolarization is observed below 250K. At high temperatures, no evidence for trapping of positive muons at vacancies in thermal equilibrium is found for either metal. It is concluded that the muons either diffuse too slowly to find vacancies or, if they do find vacancies, are bound too weakly to remain trapped. © 1977.</td>
</tr>
<tr id="bib_Gauster1977" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Gauster1977,
	  author = {Gauster, W.B. and Heffner, R.H. and Huang, C.Y. and Hutson, R.L. and Leon, M. and Parkin, D.M. and Schillaci, M.E. and Triftshäuser, W. and Wampler, W.R.},
	  title = {Measurement of the depolarization rate of positive muons in copper and aluminum},
	  journal = {Solid State Communications},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1977},
	  volume = {24},
	  number = {9},
	  pages = {619--622},
	  url = {http://www.sciencedirect.com/science/article/pii/0038109877903751},
	  doi = {https://doi.org/10.1016/0038-1098(77)90375-1}
	}
	</pre></td>
</tr>






<tr id="Lindberg1977" class="entry">

<td>
<em> <a href="https://doi.org/10.1080/00318087708244452">Annealing studies of voids in neutron-irradiated aluminium single crystals by positron annihilation</a></em><br />
V.W. Lindberg, J.D. McGervey, R.W. Hendricks and W. Triftshäuser; Philosophical Magazine
<b> 36</b>
 (1)
 (1977)
 117-128.
<p class="infolinks">
[<a href="javascript:toggleInfo('Lindberg1977','abstract')">Abstract</a>] 

[<a href="javascript:toggleInfo('Lindberg1977','bibtex')">BibTeX</a>]
[<a href="http://www.tandfonline.com/doi/abs/10.1080/00318087708244452">URL</a>]
[<a href="https://doi.org/10.1080/00318087708244452">DOI</a>]
[<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/positronen/Lindberg1977.pdf">PDF</a>]
</td>
</tr> 
<tr id="abs_Lindberg1977" class="abstract noshow">
	<td><b>Abstract</b>: Positron lifetimes and the angular correlation of annihilation radiation in neutron-irradiated high-purity aluminium single crystals have been measured, and companion small angle X-ray scattering experiments made to determine the radius of gyration and volume fraction of radiation-induced voids. The lifetime data are consistent with a model in which positrons are trapped both in voids and in other defects which are tentatively identified as vacancy clusters bound to transmutation-produced silicon. The lifetime in the latter defects increased from 230 to 430 psec as the voids annealed out (around 306°C), suggesting that the clusters grow in size as voids disappear. The lifetime in voids remained constant at (550 ± 30) psec. Angular correlation results are consistent with the lifetime results. A magnetic quenching experiment showed less than 1&#37; positronium formation in the voids. The results support the Hodges and Stott model of a surface state for a positron in a void.</td>
</tr>
<tr id="bib_Lindberg1977" class="bibtex noshow">
	<td><b>BibTeX</b>:
	<pre>
	@article{Lindberg1977,
	  author = {Lindberg, V. W. and McGervey, J. D. and Hendricks, R. W. and Triftshäuser, W.},
	  title = {Annealing studies of voids in neutron-irradiated aluminium single crystals by positron annihilation},
	  journal = {Philosophical Magazine},
	  school = {Universität der Bundeswehr München, Fakultät für Luft- und Raumfahrttechnik, LRT 2 - Institut für Angewandte Physik und Messtechnik, Professur: Triftshäuser, Werner},
	  year = {1977},
	  volume = {36},
	  number = {1},
	  pages = {117--128},
	  url = {http://www.tandfonline.com/doi/abs/10.1080/00318087708244452},
	  doi = {https://doi.org/10.1080/00318087708244452}
	}
	</pre></td>
</tr>




</tbody>
</table>
<footer>
 <small>Created on 30/01/2024 by <a href="http://jabref.sourceforge.net">JabRef</a> with help of <a href="http://www.markschenk.com/tools/jabref/">Marc Schenk export filters</a>. The JavaScript code is covered by a <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution License.</a>  </small>
</footer>
<!-- file generated by JabRef -->
</body>
</html>