نتایج جستجو برای: serum osmolality

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

Journal: :medical journal of islamic republic of iran 0
gholamreza pishdad from the department of internal medicine, shiraz university of medical sciences, shiraz, i r. iran. ahmad alavian ghavanini from the department of internal medicine, shiraz university of medical sciences, shiraz, i r. iran.

the relation between serum osmolality, glucose, sodium, bicarbonate, arterial ph, bun and level of consciousness was studied in 189 patients with diabetic ketoacidosis (dka). there was much overlap between all laboratory values among various groups, even when there was a statistically significant difference. to find a better predictor, we defined a new factor as serum osmolality/arterial ph. th...

2014
Mario Siervo Diane Bunn Carla M Prado Lee Hooper

BACKGROUND Serum osmolality is an accurate indicator of hydration status in older adults. Glucose, urea, and electrolyte concentrations are used to calculate serum osmolarity, which is an indirect estimate of serum osmolality, but which serum osmolarity equations best predict serum osmolality in the elderly is unclear. OBJECTIVE We assessed the agreement of measured serum osmolality with calc...

2003
Richard S. Muther

W balance is measured by changes in osmolality. Osmolality is the number of osmotically active particles (osmoles) per liter of solution. (Osmolarity is expressed per kilogram). Hypo-osmolality indicates an excess of water relative to osmoles; hyperosmolality indicates water deficiency. The serum osmolality [in milliosmols per liter (mosm/L)] can be calculated by the following formula: Serum os...

2015
Qian Li Han Chen Jing-Jing Hao Ning-Ning Yin Ming Xu Jian-Xin Zhou

BACKGROUND Mannitol and hypertonic saline are used to ameliorate brain edema and intracranial hypertension during and after craniotomy. We hypothesized that the agreement of measured and calculated serum osmolality during the infusion of hypertonic saline would be better than mannitol. The objective was to determine the accuracy of serum osmolality estimation by different formulas during the ad...

Journal: :Lancet 1975
H R Champion S P Baker C Benner R Fisher Y H Caplan W B Long R A Cowley W Gill

The relation between serum osmolality and blood-alcohol was studied prospectively in 565 acute trauma patients. The two measurements were closely correlated. It is therefore possible to estimate the blood-alcohol from serum osmolality to assist in the clinical management of acutely injured patients.

2014
Qian Li Ming Xu Jian-Xin Zhou

INTRODUCTION Brain oedema is a major complication after craniotomy. Hyperosmolar agents have been used as the medical treatment for this condition. Measurement and estimation of serum osmolality during hyperosmolar agent infusion is of clinical importance to evaluate clinical efficacy, adjust dosage and avoid side effects. However, several studies have shown that calculated serum osmolality may...

Journal: :Pakistan journal of pharmaceutical sciences 2007
Reshma Farooq Darakhshan J Haleem M A Haleem

Buspirone is a potent anxiolytic that decreases serotonin transmission. Changes in electrolyte balance, plasma osmolality and systolic blood pressure are often associated with stress-induced anxiety in rats as well as in human but effects of buspirone on changes in serum electrolytes balance, plasma osmolality and SBP of rats has not been reported. Present study concerns the effects of differen...

Journal: :CMAJ : Canadian Medical Association journal = journal de l'Association medicale canadienne 2002
Haralampos J Milionis George L Liamis Moses S Elisaf

Hyponatremia (serum sodium level less than 134 mmol/L) is a common electrolyte disturbance. Its high prevalence and potential neurologic sequelae make a logical and rigorous differential diagnosis mandatory before any therapeutic intervention. A history of concurrent illness and medication use as well as the assessment of extracellular volume status on physical examination may provide useful cl...

Journal: :Archives of disease in childhood 1976
A H Habel H Simpson

The relation between cerebrospinal fluid (CSF) and serum osmolality was studied in 16 patients with hyperosmolar hypernatraemic dehydration before treatment. After correcting shock and acidosis, 0-45% saline in 2-5 or 5% dextrose was infused in each patient over a 48- to 72-hour period. During rehydration, serum osmolality, electrolyte concentrations, urea nitrogen, and blood pH were measured s...

Journal: :Indian pediatrics 1994
B S Singh A K Patwari M Deb

Twenty children from 2 months to 7 years (mean age 2.74 years +/- 1.62) diagnosed to have tuberculous meningitis (TBM) were evaluated for serial serum sodium levels and osmolality of cerebrospinal fluid (CSF), serum and urine on admission and the results compared with 20 age and nutritionally matched controls, and these investigations repeated on day 3 and day 10. Mean serum sodium levels (130....

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

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

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