نتایج جستجو برای: geranial 2464

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

2011
C. F. Silva F. C. Moura M. F. Mendes F. L. P. Pessoa

Citronella essential oil has more than eighty components, of which the most important ones are citronellal, geranial and limonene. They are present at high concentrations in the oil and are responsible for the repellent properties of the oil. The oil was extracted using supercritical carbon dioxide due to the high selectivity of the solvent. The operational conditions studied varied from 313.15...

2017
Ali Ehsani Omar Alizadeh Mohammad Hashemi Asma Afshari Majid Aminzare

Aromatic plants are rich in essential oils with considerable antimicrobial properties. The aim of this study was to investigate chemical composition, antimicrobial activity and antioxidant properties of Melissa officinalis and Deracocephalum moldavica essential oils (EOs). The identification of chemical constituents of the EOs was carried out using gas chromato-graphy-mass spectrometry analysis...

Journal: :Phytochemical analysis : PCA 2008
Hamed Mirhosseini Chin Ping Tan Salmah Yusof Nazimah Sheikh Abdul Hamid

Solid-phase microextraction (SPME) coupled to gas chromatography has been applied for the headspace analysis (HS) of 12 target flavour compounds in a model orange beverage emulsion. The main volatile flavour compounds studied were: acetaldehyde, ethyl acetate, alpha-pinene, ethyl butyrate, beta-pinene, myrcene, limonene, gamma-terpinene, octanal, decanal, linalool and citral (neral plus gerania...

2015

Clove buds and lemongrass leaves were collected from three different locations of India and the essential oil was separated by hydrodistillation procedure. The essential oils were studied for its variation in physical properties and chemical composition. Chemical analysis by GC-MS evidenced that the main components of clove oil (CLV) were eugenol (78.5-87.7%) and caryophyllene (12.3-20.2%) and ...

Journal: :Journal of Oleo Science 2021

Lemongrass (Cymbopogon citratus (DC) Stapf.) is a perennial plant indigenous to semi-tropical regions of Asia and cultivated in other countries. The present study aimed examine the key chemical constituents various parts lemongrass temperate climate Poland. content essential oil its composition were determined 4 parts: leaves (part C), overground shoots B), underground A), roots R). Moreover, d...

Journal: :Journal of Food Quality 2022

Ginger (Zingiber officinale Roscoe) rhizomes are mostly used as spice and medicine due to their high aroma intensity medicinal bioactive compounds. However, the volatile compounds of ginger, partly responsible for its properties, can be affected by pretreatment, drying method, extraction processes employed. The objective this study was assess effects pretreatment on yellow ginger variety at nin...

Journal: :Journal of Clinical Nursing 2021

Background Delirium is a common adverse event in older patients undergoing hip fracture repair surgery. The impact of hospital-acquired delirium during intraoperative phase their treatment can have significant on post-operative outcomes. While non-pharmacological, multicomponent prevention interventions are considered standard practice acute medical units, management the setting less clear. Obj...

Journal: :Molecules 2013
Sharlene Lopes Pereira André Mesquita Marques Roberto Takashi Sudo Maria Auxiliadora Coelho Kaplan Gisele Zapata-Sudo

The essential oil of Pectis brevipedunculata (EOPB), a Brazilian ornamental aromatic grass, is characterized by its high content of citral (81.9%: neral 32.7% and geranial 49.2%), limonene (4.7%) and α-pinene (3.4%). Vasodilation induced by EOPB and isolated citral was investigated in pre-contracted vascular smooth muscle, using thoracic aorta from Wistar Kyoto (WKY) rats which was prepared for...

Journal: :Zeitschrift fur Naturforschung. C, Journal of biosciences 2013
Dalia Hamdan Mohamed L Ashour Sri Mulyaningsih Assem El-Shazly Michael Wink

The volatile secondary metabolites of essential oils from fruit peel and leaves of variegated pink-fleshed lemon (Citrus x limon) were investigated using GLC and GLC-MS (gas-liquid chromatography-mass spectroscopy). Altogether 141 compounds were identified and quantified, accounting for 99.59% and 96.33% of the total hydrodistilled peel and leaf oil, respectively. Limonene occurred in higher am...

Journal: :Molecules 2016
Chao Zhang Runqiang Liu Jun He Zhiqing Ma Xing Zhang

In order to develop novel botanical insecticides, the joint action of Ligusticum chuanxiong oil (LCO) and lemongrass oil (LO) against Aphis citricola van der Goot was determined systematically indoors and outdoors. The chemical profiles of LCO and LO as determined by gas chromatography-mass spectrometry (GC-MS) analysis revealed that the main compounds from LCO were (Z)-ligustilide (44.58%) and...

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

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

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