نتایج جستجو برای: last trimester

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

Journal: :نشریه پرستاری ایران 0
سارا جان محمدی sara john mohammady شفیقه هرو آبادی فاطمه دباغی محمود محمودی

this is a field study, investigate the nursing care provided to pregnant diabetic women in their last trimester, who were admitted in teaching hospitals under the supervision of ministry of health and medical education in tehran during 1993.   the tool was check list that was completed by the researcher upon interviewing the subjects.   six items covered information of personal data of the wome...

2016
Michael Schredl Maria Gilles Isabell Wolf Verena Peus Barbara Scharnholz Marc Sütterlin Michael Deuschle

BACKGROUND Pregnancy-related dreams are often found in pregnant women but also the number of negatively toned dreams seems to be increased in this challenging phase of a woman's life. METHODS Nightmare frequency and subjectively experienced stress was elicited via questionnaires. The mothers-to-be were approached during their application visit about 4-8 weeks prior to delivery in three obstet...

Journal: :BMC Pregnancy and Childbirth 2016

Background & Aims: Tokophobia is a pathological fear of childbirth that can lead to anxiety and worry in pregnant women. The current study was performed to compare predictors of tokophobia in mothers in the last trimester and first six months of pregnancy based on metacognitive beliefs, corona anxiety, and ilness anxiety in 2022. Materials & Methods: This is a case-control study and was conduc...

ژورنال: حیات 2004
بابایی, غلامرضا , شعبانی, حسن , عبدحق, زهرا , میرمولایی, سیده طاهره ,

Introduction: Midwifery practice is involved with clinical judgments which have direct effect on mother;aposs and embryo;aposs health. A midwife should be able to make vital decisions based on her knowledge and skills in emergency situations. A midwife can reach correct decisions by using critical thinking. Materials and Methods: In this cross-sectional, descriptive-comparative study we compare...

Journal: :Archives of disease in childhood 1984
K A Winship D A Cahal J C Weber J P Griffin

Prescription data for the three months before the last menstrual period and for the first trimester of pregnancy were obtained for 764 mothers whose children had a defect of the central nervous system and for an equal number of mothers of control babies born from the same doctors' practices. There was a statistically significant difference overall between the numbers of mothers who were prescri...

Journal: :Revista chilena de obstetricia y ginecologia 1972
G Reisenegger

Uterine torsion is the 45° rotation of the uterus around its longitudinal axis. The incidence of uterine torsion is higher in patients with uterine fibroma, adnexal tumors, intra-abdominal adhesions, twin pregnancy. Diagnosis is difficult to make due to the noncharacteristic symptomatology. Most frequently, the clinical picture includes abdominal pain, digestive symptoms, and urinary symptoms. ...

Journal: :Hypertension 2009
Richard J Levine Marshall D Lindheimer

Preeclampsia, which presents after midgestation, is the most common pregnancy complication associated with serious maternal-fetal morbidity and mortality; and at present the only effective treatment is delivery of the placenta. The ability to predict in very early pregnancy those women at risk for preeclampsia might decrease maternal and fetal morbidity through closer surveillance by physicians...

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

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

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