نتایج جستجو برای: rubber

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

2017
Yuko Makita Kiaw Kiaw Ng G. Veera Singham Mika Kawashima Hideki Hirakawa Shusei Sato Ahmad Sofiman Othman Minami Matsui

Natural rubber has unique physical properties that cannot be replaced by products from other latex-producing plants or petrochemically produced synthetic rubbers. Rubber from Hevea brasiliensis is the main commercial source for this natural rubber that has a cis-polyisoprene configuration. For sustainable production of enough rubber to meet demand elucidation of the molecular mechanisms involve...

Journal: :Journal of experimental botany 2007
Keng-See Chow Kiew-Lian Wan Mohd Noor Mat Isa Azlina Bahari Siang-Hee Tan K Harikrishna Hoong-Yeet Yeang

Hevea brasiliensis is the most widely cultivated species for commercial production of natural rubber (cis-polyisoprene). In this study, 10,040 expressed sequence tags (ESTs) were generated from the latex of the rubber tree, which represents the cytoplasmic content of a single cell type, in order to analyse the latex transcription profile with emphasis on rubber biosynthesis-related genes. A tot...

2000
Thanas Schuman Shelby F. Thames

Chlorinated rubber, the addition and substitution reaction product of natural rubber and chlorine gas, is knOWn for its low Water vapor permeability, good chemical resistance, abrasion resistance, corrosion resistance, and flame retardant properties.' Consequently, it is used as a coating component in a.variety of coating applications including marine coatings, swimming pool coatings, and corro...

2017
Ying Wang Di-Feng Zhan Hui-Liang Li Dong Guo Jia-Hong Zhu Shi-Qing Peng

MYB transcription factors hold vital roles in the regulation of plant secondary metabolic pathways. Laticifers in rubber trees (Hevea brasiliensis) are of primary importance in natural rubber production because natural rubber is formed and stored within these structures. To understand the role of MYB transcription factors in the specialized cells, we identified 44 MYB genes (named HblMYB1 to Hb...

2013
Dohyung Kim Yang-In Hwang Sungyeul Choi Chulyong Park Naroo Lee Eun-A Kim

BACKGROUND Primary tracheal tumors occur infrequently, accounting for less than 0.1% of all tumors. Adenoid cystic carcinoma (ACC) is the second most common type of malignancy of the trachea after squamous cell carcinoma (SCC). Little has been reported on the risk factors for tracheal ACC. The purpose of this study is to describe a case of tracheal ACC in a patient who had been exposed to rubbe...

2008
John S. Dick

Natural rubber is used as an important raw material by the pressure sensitive adhesives industry. However, the normal quality variation is relatively high compared to synthetic polymer alternatives. This paper discusses measurements of the magnitude and nature of this natural rubber quality variation using a special dynamic mechanical rheological tester. Also the paper discusses some of the cau...

Journal: :Yakugaku zasshi : Journal of the Pharmaceutical Society of Japan 2001
T Asakura H Seino S Nozaki R Abe

Coring is reported to occur because rubber pieces are shaved off from a rubber stopper when a needle is inserted into the rubber stopper of transfusion liquid formulation. We verified whether coring really occurs in insulin vials of self-injecting patients. We collected insulin cartridges from 30 hospitalized patients and used the primary injection (trial injection), the secondary injection and...

Journal: :Phytochemistry 2012
Grisel Ponciano Colleen M McMahan Wenshuang Xie Gerard R Lazo Terry A Coffelt Jillian Collins-Silva Aise Nural-Taban Martin Gollery David K Shintani Maureen C Whalen

Natural rubber biosynthesis in guayule (Parthenium argentatum Gray) is associated with moderately cold night temperatures. To begin to dissect the molecular events triggered by cold temperatures that govern rubber synthesis induction in guayule, the transcriptome of bark tissue, where rubber is produced, was investigated. A total of 11,748 quality expressed sequence tags (ESTs) were obtained. T...

2017
Ramez A. Al-Mansob Amiruddin Ismail Nur Izzi Md. Yusoff Riza Atiq O. K. Rahmat Muhamad Nazri Borhan Shaban Ismael Albrka Che Husna Azhari Mohamed Rehan Karim

Road distress results in high maintenance costs. However, increased understandings of asphalt behaviour and properties coupled with technological developments have allowed paving technologists to examine the benefits of introducing additives and modifiers. As a result, polymers have become extremely popular as modifiers to improve the performance of the asphalt mix. This study investigates the ...

Journal: :Pediatric dentistry 1980
M L Helpin B C Michal

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

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

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