نتایج جستجو برای: urine organic acids range

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

Journal: :تحقیقات آب و خاک ایران 0
ندا مرادی کارشناسی ارشد، دانشگاه ارومیه میرحسن رسولی صدقیانی عضو هیات علمی دانشگاه ارومیه ابراهیم سپهر عضو هیات علمی، دانشگاه ارومیه بابک عبدالهی عضو هیات علمی دانشگاه ارومیه

the effect of 0, 2, and 5 mm of citric, malic and oxalic acids on phosphorus (p) sorption was evaluated. in the collected soils, the level of total calcium carbonate stood in the range of 4-28%, clay content at 33-56% and the amount of organic matter recorded within 0.6-2.7%. the results indicated that the addition of organic acids causes reduction in p sorption. citric acid in most soils, was ...

Journal: :iranian journal of child neurology 0
shadab salehpour assistant professor of pediatric endocrinology and fellowship of bone and inherited metabolic disorders, shahid beheshti university of medical sciences, tehan, iran

a clinical presentation of a metabolic disorder, often first seen in infants who present with poor feeding, vomiting, tachypnea, acidosis, hyperammonemia, ketosis, ketonuria, irritability, and convulsions or hypotonia and lethargy, findings that are otherwise suggestive of neonatal sepsis diseases with oa isovaleric and propionic acidemias, maple syrup urine disease, medium chain acyl dehydroge...

پایان نامه :وزارت علوم، تحقیقات و فناوری - پژوهشگاه شیمی و مهندسی شیمی ایران - پژوهشکده شیمی تجزیه و معدنی 1390

hydrochlorothiazide (hct) is a diuretic agent which is shown to be effective in the treatment of hypertension. literature reports have demonstrated that urinary excretion data may be used to assess the bioavailability of various formulations containing this thiazide. also hct consumption by the athletes is one of the drugs which should be regulated by world anti-doping agency (wada), because of...

2002

The concept of an increased formation and excretion of acids in pneumonia seems to have first found experimental justification in the work of Palmer and Henderson (l), who found that the administrat,ion of 4 gm. of sodium bicarbonate did not appreciably change the reaction of the urine of a patient with pneumonia. In normal individuals this amount of bicarbonate produced a change in reaction of...

Journal: :iranian journal of chemistry and chemical engineering (ijcce) 2004
a. hakan aktaş songül şen mustafa yılmazer ebru cubuk

low molecular weight organic acids are most predominant in apple juice among these components fumaric acid was not exceed more than 5 ppm. it was thought that the hplc is the best method of the determination of organic acids in the apple juice. in this study, chromatographic separation of organic acids of apple juice was obtained by preparing a sample and by applying them to acid phase for extr...

Journal: :Clinical chemistry 2005
Glen L Hortin Bonnie Meilinger

BACKGROUND Biuret assays for total protein measurement are considered to react with all peptides longer than 2 residues. Some studies using biuret assays of urine suggest that small peptides generally are more abundant than proteins in urine, but it is not clear whether this is a problem of assay specificity. METHODS We analyzed the specificity and kinetics of a biuret reaction for solutions ...

2012
Kannan Vaidyanathan Damodaran Madhavi Vasudevan

The term “organic acidemia” or “organic aciduria” (OA) applies to inborn errors of metabolism (IEM) in which organic acids accumulate in tissues and biological fluids. Classical organic acidurias include methylmalonic aciduria (MMA), propionic aciduria (PA), isovaleric aciduria (IVA) and maple syrup urine disease (MSUD). Aminoacidurias like phenylketonuria are common in the western population. ...

Journal: :Annals of clinical and laboratory science 1991
D T Forman

Clinical signs and symptoms of organic acidurias are usually subtle and non-specific. Laboratory evaluation, therefore, is usually the only conclusive way to reach a definitive diagnosis. Defects of amino acid catabolism generally caused by diminished activity or complete absence of specific enzymes usually occurs at the later stages of a pathway and results in organic aciduria. Most of these a...

Journal: :Clinical chemistry 1987
B A Chamberlin C C Sweeley

We evaluated for reliability and reproducibility a semiquantitative gas-chromatographic assay of organic acids in samples of normal urine recovered from absorbent filter paper. We also evaluated this method for use in diagnosis of some of the more common organic acidurias. Transfer of urine from diapers to absorbent filter paper eases the usual trauma of specimen collection from young children;...

Journal: :BMC chemistry 2021

Abstract Background Mass spectrometry allows for analysis of multiple hormone and organic acid metabolites from small urine volumes; however, to assess the full extent daily production, 24-h collections are usually required. The aims this study were, first, confirm that mass spectrometric an array hormones acids would yield similar results in both liquid dried urine, and, second, determine if c...

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

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

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