نتایج جستجو برای: organic binder

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

2011
Tomáš Rosa

This memo describes certain details of the Android mechanism of passing binder through another binder. The aim of this paper is to describe certain technical details of this mechanism as well as to point out some obvious security weaknesses. For the sake of simplicity, we do not include description of the whole Android binder framework here. The interested reader may check the OpenBinder docume...

Journal: :Cancer research 1989
Y Wakatsuki M Inada H Kudo G Oshio T Masuda T Miyake T Kita

Cobalamin (vitamin B12) binding protein was purified from gastric cancer extracts and from serum-free culture medium of cancer cell line KATOH-III. The molecular weight, determined by immunoprecipitation and sodium dodecyl sulfate-polyacrylamide gel electrophoresis, was 70,000 and the pI was 2.8 to 3.2. From biochemical and immunological properties, this cobalamin binding protein was considered...

2017
Rui Wang Lili Feng Wenrong Yang Yinyin Zhang Yanli Zhang Wei Bai Bo Liu Wei Zhang Yongming Chuan Ziguang Zheng Hongjin Guan

When testing the electrochemical performance of metal oxide anode for lithium-ion batteries (LIBs), binder played important role on the electrochemical performance. Which binder was more suitable for preparing transition metal oxides anodes of LIBs has not been systematically researched. Herein, five different binders such as polyvinylidene fluoride (PVDF) HSV900, PVDF 301F, PVDF Solvay5130, th...

Journal: :civil engineering infrastructures journal 0
m. a. dashti rahmatabadi ph.d. student, department of civil engineering, faculty of engineering, ferdowsi university of mashhad, mashhad, iran. h. haji kazemi professor, department of civil engineering, faculty of engineering, ferdowsi university of mashhad, mashhad, iran. f. shahabian associate professor, department of civil engineering, faculty of engineering, ferdowsi university of mashhad, mashhad, iran.

reactive powder concrete (rpc) is an ultra high performance concrete which has superior mechanical and physical properties. the rpc is composed of cement and very fine powders such as crushed quartz (100–600 μm) and silica fume with very low water/binder ratio (w/b) (less than 0.20) and super plasticizer (sp). the rpc has a very high compressive and tensile strength with better durability prope...

2015
Indranil Bose Kornelius Tetzner Kathrin Borner Karlheinz Bock Mostafa Bassiouni

We report on a micro-dispensing system for 6,13-Bis(triisopropylsilylethynyl) pentacene (TIPS-pentacene) to enable homogenous crystallization and uniform film morphology of the dispensed droplets using a two-solvent mixture along with the use of an insulating binder. This solution composition results in a controlled evaporation of the droplet in ambient air such that the Marangoni flow countera...

Journal: :Journal of environmental biology 2011
Vinod K Sharma Rana P Singh

Field experiments were conducted to study the effect of organic matrix based slow release fertilizers (SRFs) on plant growth, nitrate assimilation and seed yield of Brassica juncea L. cv, pusa bold. The agro-waste materials like cow dung, clay soil, neem leaves and rice bran were mixed together in 2:2:1:1 ratio and used as organic matrix for the immobilization of chemical fertilizer nutrients w...

2017
Virginia W. Manner John D. Yeager Brian M. Patterson David J. Walters Jamie A. Stull Nikolaus L. Cordes Darby J. Luscher Kevin C. Henderson Andrew M. Schmalzer Bryce C. Tappan

The microstructure of plastic bonded explosives (PBXs) is known to influence behavior during mechanical deformation, but characterizing the microstructure can be challenging. For example, the explosive crystals and binder in formulations such as PBX 9501 do not have sufficient X-ray contrast to obtain three-dimensional data by in situ, absorption contrast imaging. To address this difficulty, we...

Journal: :Chemical & pharmaceutical bulletin 2001
R Thies P Kleinebudde

Melt pelletization experiments with sodium valproate as a hygroscopic drug were performed in a laboratory scale high shear mixer. In the current part, the effect of altering the binder liquid properties (using different binders, varying the temperature, or adding highly dispersed silicon dioxide to the molten binder) on the pellet size, size distribution and the growth rate was studied. Three m...

2016
Suk-Yong Jang Sien-Ho Han

Currently, Si as an active material for LIBs has been attracting much attention due to its high theoretical specific capacity (3572 mAh g-1). However, a disadvantage when using a Si negative electrode for LIBs is the abrupt drop of its capabilities during the cycling process. Therefore, there have been a few studies of polymers such as poly(vinylidene fluoride) (PVdF), carboxymethyl cellulose (...

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

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

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"; } -->