نتایج جستجو برای: nutritive values

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

2012
Z. L. Xie T. F. Zhang X. Z. Chen G. D. Li J. G. Zhang

The changes in yields and nutritive composition of whole crop wheat (Triticum aestivum L.) during maturation and effects of maturity stage and lactic acid bacteria (LAB) inoculants on the fermentation quality and aerobic stability were investigated under laboratory conditions. Whole crop wheat harvested at three maturation stages: flowering stage, milk stage and dough stage. Two strains of LAB ...

2010
David Friday Apata

The effects of treatment methods on the nutritive value of cotton seed cake (CSC) for laying hens were examined. Olympia laying hens (n = 96) were assigned randomly to a 2 × 3 factorial combination of fermented or unfermented CSC supplemented with enzyme, Vitamin E and ferrous sulphate over a 4-week feeding period. CSC was incorporated at 15% in the diets. Results showed no significant differen...

2014
Pasquale De Palo Alessandra Tateo Aristide Maggiolino Pasquale Centoducati

The present work describes the effect of nutritive level on horse carcass traits and on meat quality. Eighteen male Italian Heavy Draught Horse (IHDH) breed foals were employed in the study. Soon after foaling they were randomly subdivided into three groups according to three nutritive level classes: 150%, 180% and 200% of maintenance requirements. Live weight, hot carcass weight and dressing p...

Journal: :Journal of the American Dietetic Association 1993
V B Duffy G H Anderson

Sweeteners elicit pleasurable sensations with (nutritive) or without (nonnutritive) energy. Nutritive sweeteners (eg, sucrose, fructose) are generally recognized as safe (GRAS) by the Food and Drug Administration (FDA), yet concern exists about increasing sweetener intakes relative to optimal nutrition and health. Dietary quality suffers at intakes above 25% of total energy (the Institutes of M...

2017
Julia Y.Q. Low Robert L. McBride Kathleen E. Lacy Russell S.J. Keast

Sweetness is one of the 5 prototypical tastes and is activated by sugars and non-nutritive sweeteners (NNS). The aim of this study was to investigate measures of sweet taste function [detection threshold (DT), recognition threshold (RT), and suprathreshold intensity ratings] across multiple sweeteners. Sixty participants, 18-52 years of age (mean age in years = 26, SD = ±7.8), were recruited to...

Journal: :Journal of nuclear medicine : official publication, Society of Nuclear Medicine 1997
W Burchert S Schellong J van den Hoff G J Meyer K Alexander H Hundeshagen

UNLABELLED To assess quantitatively regional nutritive muscular blood flow in patients with peripheral vascular disease (PVD), we evaluated the utility of PET with 15O-water. METHODS Eight healthy volunteers and 16 patients with angiographically proven PVD were studied. Regional blood flow of the calf was measured with 15O-water PET during rest, after intra-arterial infusion of prostaglandin ...

2012
Alex R. Angell Igor Pirozzi Rocky de Nys Nicholas A. Paul

Understanding the feeding preferences of abalone (high-value marine herbivores) is integral to new species development in aquaculture because of the expected link between preference and performance. Performance relates directly to the nutritional value of algae--or any feedstock--which in turn is driven by the amino acid content and profile, and specifically the content of the limiting essentia...

2010
H. M. SALIM Z. A. KRUK

A rapid increase in corn use in ethanol plants, and subsequent creation of distillers dried grains with solubles (DDGS) by-products, has led to an increase in the use of DDGS in the diets of livestock. DDGS has been used all over the world as a dietary ingredient and this has necessitated more research to be conducted on its quality, nutritive values, and recommendations for feeding to poultry....

Journal: :Gaceta medica de Mexico 2017
Alonso Romo-Romo Paloma Almeda-Valdés Griselda X Brito-Córdova Francisco J Gómez-Pérez

OBJECTIVE To estimate the prevalence of non-nutritive sweeteners (NNS) consumption in a sample of patients with diabetes. MATERIAL AND METHODS We applied two questionnaires, one of food frequency adapted to products containing NNS and the other of beliefs related to NNS. The prevalence of NNS consumption was determined and correlated with the body mass index, energy and sugar consumption, wai...

2017
Heather Benford Matei Bolborea Eric Pollatzek Kristina Lossow Irm Hermans-Borgmeyer Beihui Liu Wolfgang Meyerhof Sergey Kasparov Nicholas Dale

Hypothalamic tanycytes are glial-like glucosensitive cells that contact the cerebrospinal fluid of the third ventricle, and send processes into the hypothalamic nuclei that control food intake and body weight. The mechanism of tanycyte glucosensing remains undetermined. While tanycytes express the components associated with the glucosensing of the pancreatic β cell, they respond to nonmetabolis...

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

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

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