نتایج جستجو برای: dde

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

2017
Robert P. Anthonappa Nigel M. King

The prevalence of developmental defects of enamel (DDE) in the permanent dentition in developed countries has been reported to be in the range of 9–68 % and with no gender predilection. Several etiological factors have been implicated as being responsible for DDE in the permanent teeth. Although local, systemic, genetic or environmental factors have been attributed to DDE frequently they are li...

2007
SEHJEONG KIM XINZHI LIU

We consider a switching system with time delay composed of a finite number of linear delay differential equations (DDEs). Each DDE consists of a sum of a linear ODE part and a linear DDE part. We study two particular cases: (a) all the ODE parts are stable and (b) all the ODE parts are unstable and determine conditions for delay independent stability. For case (a), we extend a standard result o...

2012
Shabtai Sapir

Developmental defects of enamel (DDE) are frequently observed. In both pediatric and orthodontic dental practices. DDE consist mainly of hypoplasia, diffuse and demarcated opacities.1 Often, a combination of enamel defects may be recognized in the same child (Fig. 1). Weerheijm et al. defined the term Molar Incisor Hypomineralization (MIH) to describe a more specific pattern of DDE: hypomineral...

پایان نامه :وزارت علوم، تحقیقات و فناوری - دانشگاه سیستان و بلوچستان 1378

پیشرفت های اخیر در ژنتیک ملکولی امکان تحلیل صفات تولیدی در سطح dna و استفاده از این اطلاعات را در اصلاح دام فراهم ساخته است . ژن هورمون رشد بدلیل اثرات عمده ای که در رشد، شیرواری و توسعه غدد شیری در گاو دارد و بعنوان یکی از مهمترین ژنهای کاندید برای صفات کمی مربوط به تولید شیر مورد توجه قرار گرفته است . در این تحقیق نمونه ای از گاوهای نر نژاد هلشتاین، که در مرکز اصلاح نژاد کرج نگهداری و از طریق...

2006
W. M. JARMAN W. S. SEEGAR

Levels of organochlorine compounds in the blood plasma of after-second-year female peregrine falcons (Falco peregrinus) were determined from samples collected from southern Greenland in 1985 and western Greenland from 1983 to 1989, and from adult and nestling gyrfalcons (Falco rusticolus) from western Greenland in 1989 and 1990. Samples were taken during nesting. Levels of p,p'-DDE (DDE) in per...

2014
Fiery Cushman

The doctrine of double effect (DDE) is a moral principle that distinguishes between harm we cause as a means to an end and harm that we cause as a side-effect. As a purely descriptive matter, the DDE is well established that it describes a consistent feature of human moral judgment. There are, however, several rival theories of its psychological cause. I review these theories and consider their...

Journal: :Environmental Health 2008
Anders Glynn Ann Thuvander Marie Aune Anders Johannisson Per Ola Darnerud Gunnar Ronquist Sven Cnattingius

BACKGROUND Early-life chemical exposure may influence immune system development, subsequently affecting child health. We investigated immunomodulatory potentials of polychlorinated biphenyls (PCBs) and p,p'-DDE in infants. METHODS Prenatal exposure to PCBs and p,p'-DDE was estimated from maternal serum concentrations during pregnancy. Postnatal exposure was calculated from concentrations of t...

Journal: :Advanced Drug Delivery Reviews 2010

Journal: :Environment international 2008
M A Mora A B Montoya M C Lee A Macías-Duarte R Rodríguez-Salazar P W Juergens A Lafón-Terrazas

The northern aplomado falcon (Falco femoralis septentrionalis) disappeared from south Texas in the 1940s. Due to great success in the release of captive-reared aplomado falcons in south Texas, there are currently more than 40 established nesting pairs in the region. Addled eggs from aplomado falcons nesting in northern Chihuahua and south Texas were analyzed to determine organochlorine (OC) and...

Journal: :Bulletin of environmental contamination and toxicology 2009
Linda L Sibali Jonathan O Okonkwo Caliphs Zvinowanda

Surface water and sediment samples collected from Jukskei River in South Africa, were subjected to different extraction techniques, liquid-liquid (LLE), solid-phase extraction (SPE), activated carbon extraction (ACE) and soxhlet extraction (SE) for sediment. The samples were extracted with dichloromethane, cleaned in a silica gel column and the extracts quantified using a Varian 3800 GC-ECD. Th...

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

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

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