نتایج جستجو برای: epsilon vee qfuzzy subnear

تعداد نتایج: 11471  

Journal: :Physical review letters 2001
P Chauve P Le Doussal K J Wiese

We study the field theories for pinned elastic systems at equilibrium and at depinning. Their beta functions differ to two loops by novel "anomalous" terms. At equilibrium we find a roughness zeta = 0.208 298 04 epsilon + 0.006 858 epsilon(2) (random bond), zeta = epsilon/3 (random field). At depinning we prove two-loop renormalizability and that random field attracts shorter range disorder. We...

Journal: :Journal of Noncommutative Geometry 2021

We prove that the spaces $\operatorname{tot}\big(\Gamma(\Lambda^\bullet A^\vee \otimes_R\mathcal{T}_{\operatorname{poly}}^{\bullet}\big)$ and A^\vee)\otimes_R\mathcal{D}_{\operatorname{poly}}^{\bullet}\big)$ associated with a Lie pair $(L,A)$ each carry an $L_\infty$ algebra structure canonical up to isomorphism identity map as linear part. These two serve, respectively, replacements for of for...

2014
Hossein Taheri

You work with a circuit’s transfer function all the time in this course and make extensive use of the logarithmic scale: you are asked to Bode-plot a system’s frequency response in your homework assignments, lab reports, or maybe exams using Matlab, Agilent VEE, or even with bare hands, where the horizontal axis reads Frequency (log-scale). Good or bad, you will continue to see such plots here ...

2007
Carol Zoller Ion Fotau Mircea Rîşteiu Leon Pană

The simetry of voltages, among other parameters, in to real power networks, is essential for ensuring optimum performances of the electrical systems and a standard quality of the energy. To control this, there are specific electric and electronic relays, which are hardware programmed to survey the symmetrical components of currents and voltages. The paper describe a software method to control t...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 1984
K Young M Donovan-Peluso K Bloom M Allan J Paul A Bank

To study the expression of globin genes in human cells, human epsilon-globin genes were transferred into a K562 cell line, Bos, which synthesizes very low amounts of epsilon-globin mRNA. A plasmid (pSV2neo-epsilon) containing a complete epsilon-globin gene and 2 kilobases (kb) of 5' flanking DNA as well as a neomycin-resistance gene and a simian virus 40 origin of replication was transfected in...

Journal: :IOSR Journal of Mechanical and Civil Engineering 2016

Journal: :Progress In Electromagnetics Research Letters 2010

Journal: :The Journal of biological chemistry 1993
M Basu J Hakimi E Dharm J A Kondas W H Tsien R S Pilson P Lin A Gilfillan P Haring E H Braswell

The Fc-region of immunoglobulin E (IgE) comprising C epsilon 2, C epsilon 3, and C epsilon 4 domains is sufficient for binding to the alpha chain of the high affinity IgE-Fc receptor (Fc epsilon RI alpha). In order to identify the smallest Fc fragment capable of binding to the Fc epsilon RI alpha with high affinity, various regions of the IgE-Fc molecule were expressed in COS cells and investig...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->