patent.html
— 20.3 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="Dollinger2022" class="entry"> <td> <em> <a href="https://register.epo.org/application?number=EP20187438">Manufacturing Method for Radio-Frequency Cavity Resonators and Corresponding Resonator</a></em><br /> G. Dollinger and M. Mayerhofer; Patent, Universität der Bundeswehr München, 85577 Neubiberg (DE), <b>EP3944725</b>, 2022. <p class="infolinks"> [<a href="javascript:toggleInfo('Dollinger2022','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('Dollinger2022','bibtex')">BibTeX</a>] [<a href="https://register.epo.org/application?number=EP20187438">URL</a>] [<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Dollinger2022.pdf">PDF</a>] </td> </tr> <tr id="abs_Dollinger2022" class="abstract noshow"> <td><b>Abstract</b>: Disclosed herein is a method of manufacturing a radio frequency cavity resonator, wherein said radio frequency cavity resonator comprises a tubular structure extending along a longitudinal axis, said tubular structure comprising a circumferential wall structure surrounding said longitudinal axis, one or more tubular elements and a first and a second support structure associated with each of said tubular elements, wherein said first and second support structures are provided on opposite sides of each tubular element and extend radially along a diameter of the tubular structure, wherein the method comprises producing the resonator by additive manufacturing in a manufacturing direction that is parallel to said diameter.</td> </tr> <tr id="bib_Dollinger2022" class="bibtex noshow"> <td><b>BibTeX</b>: <pre> @patent{Dollinger2022, author = {Dollinger, Günther and Mayerhofer, Michael}, title = {Manufacturing Method for Radio-Frequency Cavity Resonators and Corresponding Resonator}, type = {Patent}, holder = {Universität der Bundeswehr München, 85577 Neubiberg (DE)}, year = {2022}, volume = {EP3944725}, url = {https://register.epo.org/application?number=EP20187438} } </pre></td> </tr> <tr id="Dollinger2022a" class="entry"> <td> <em> <a href="https://register.epo.org/application?number=EP20187438">Manufacturing Method for Radio-Frequency Cavity Resonators and Corresponding Resonator</a></em><br /> G. Dollinger and M. Mayerhofer; Patent, Universität der Bundeswehr München, 85577 Neubiberg (DE), <b>WO 2022/017833</b>, 2022. <p class="infolinks"> [<a href="javascript:toggleInfo('Dollinger2022a','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('Dollinger2022a','bibtex')">BibTeX</a>] [<a href="https://register.epo.org/application?number=EP20187438">URL</a>] [<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Dollinger2022a.pdf">PDF</a>] </td> </tr> <tr id="abs_Dollinger2022a" class="abstract noshow"> <td><b>Abstract</b>: Disclosed herein is a method of manufacturing a radio frequency cavity resonator, wherein said radio frequency cavity resonator comprises a tubular structure extending along a longitudinal axis, said tubular structure comprising a circumferential wall structure surrounding said longitudinal axis, one or more tubular elements and a first and a second support structure associated with each of said tubular elements, wherein said first and second support structures are provided on opposite sides of each tubular element and extend radially along a diameter of the tubular structure, wherein the method comprises producing the resonator by additive manufacturing in a manufacturing direction that is parallel to said diameter.</td> </tr> <tr id="bib_Dollinger2022a" class="bibtex noshow"> <td><b>BibTeX</b>: <pre> @patent{Dollinger2022a, author = {Dollinger, Günther and Mayerhofer, Michael}, title = {Manufacturing Method for Radio-Frequency Cavity Resonators and Corresponding Resonator}, type = {Patent}, holder = {Universität der Bundeswehr München, 85577 Neubiberg (DE)}, year = {2022}, volume = {WO 2022/017833}, url = {https://register.epo.org/application?number=EP20187438} } </pre></td> </tr> <tr id="2016" class="entry"><td><h1>2016</h1></td></tr> <tr id="Dollinger2016" class="entry"> <td> <em> <a href="https://register.epo.org/application?number=EP14182487">An apparatus for determining an energy deposition of an ion beam</a></em><br /> G. Dollinger, K. Parodi, W. Assmann, V. Nitziachristos and S. Kellnberger; Patent, Universität der Bundeswehr München, 85577 Neubiberg and Ludwig-Maximilians-Universität München, 80539 München, <b>EP 2974 771</b>, 2016. <p class="infolinks"> [<a href="javascript:toggleInfo('Dollinger2016','bibtex')">BibTeX</a>] [<a href="https://register.epo.org/application?number=EP14182487">URL</a>] [<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Dollinger2016.pdf">PDF</a>] </td> </tr> <tr id="bib_Dollinger2016" class="bibtex noshow"> <td><b>BibTeX</b>: <pre> @patent{Dollinger2016, author = {Dollinger, Günther and Parodi, Katia and Assmann, Walter and Nitziachristos, Vasilis and Kellnberger, Stephan}, title = {An apparatus for determining an energy deposition of an ion beam}, type = {Patent}, holder = {Universität der Bundeswehr München, 85577 Neubiberg and Ludwig-Maximilians-Universität München, 80539 München}, year = {2016}, volume = {EP 2974 771}, url = {https://register.epo.org/application?number=EP14182487} } </pre></td> </tr> <tr id="2004" class="entry"><td><h1>2004</h1></td></tr> <tr id="Dollinger2004a" class="entry"> <td> <em> <a href="https://patentscope.wipo.int/search/en/detail.jsf?docId=WO2004097882&recNum=1&maxRec=&office=&prevFilter=&sortOption=&queryString=&tab=PCT+Biblio">Membrane, transparent for particle beams, with improved emissity of electromagnetic radiation</a></em><br /> J. Wieser, A. Ulrich and G. Dollinger; Patent Application, Tuilaser Ag, <b>WO 2004097882 A1</b>, 2004. <p class="infolinks"> [<a href="javascript:toggleInfo('Dollinger2004a','bibtex')">BibTeX</a>] [<a href="https://patentscope.wipo.int/search/en/detail.jsf?docId=WO2004097882&recNum=1&maxRec=&office=&prevFilter=&sortOption=&queryString=&tab=PCT+Biblio">URL</a>] [<a href="https://subversion.unibw.de/LRT2/Literatur/pdf/openaccess/Dollinger2004a.pdf">PDF</a>] </td> </tr> <tr id="bib_Dollinger2004a" class="bibtex noshow"> <td><b>BibTeX</b>: <pre> @patent{Dollinger2004a, author = {Wieser, Jochen and Ulrich, Andreas and Dollinger, Günther}, title = {Membrane, transparent for particle beams, with improved emissity of electromagnetic radiation}, type = {Patent Application}, holder = {Tuilaser Ag}, year = {2004}, volume = {WO 2004097882 A1}, url = {https://patentscope.wipo.int/search/en/detail.jsf?docId=WO2004097882&recNum=1&maxRec=&office=&prevFilter=&sortOption=&queryString=&tab=PCT+Biblio} } </pre></td> </tr> </tbody> </table> <footer> <small>Created on 21/04/2022 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>