نتایج جستجو برای: dynamic nmr

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

2016
Uybach Vo Navratna Vajpai Kevin J. Embrey Alexander P. Golovanov

The cycling between GDP- and GTP- bound forms of the Ras protein is partly regulated by the binding of Sos. The structural/dynamic behavior of the complex formed between activated Sos and Ras at the point of the functional cycle where the nucleotide exchange is completed has not been described to date. Here we show that solution NMR spectra of H-Ras∙GTPγS mixed with a functional fragment of Sos...

Journal: :Bioscience reports 2003
Kurt Wüthrich

Nuclear magnetic resonance (NMR) spectroscopy is unique among the methods available for three-dimensional structure determination of proteins and nucleic acids at atomic resolution, since the NMR data can be recorded in solution. Considering that body fluids such as blood, stomach liquid and saliva are protein solutions where these molecules perform their physiological functions, knowledge of t...

2003
Juhi Juneja Jayant B. Udgaonkar

NMR spectroscopy is the method of choice for determining the structural details of unfolded and partially folded states of proteins. Here, the utility of NMR spectroscopy in characterizing such disordered states which populate protein folding pathways, is discussed. The relevance of the structural information obtained to protein folding mechanisms is examined critically. NMR spectroscopy can no...

Journal: :Biochemistry 2006
Miya Kamihira Anthony Watts

The dynamics of bacteriorhodopsin (bR) and the lipid headgroups in oriented purple membranes (PMs) was determined at various temperatures and relative humidity (rh) using solid-state NMR spectroscopy. The 31P NMR spectra of the alpha- and gamma-phosphate groups in methyl phosphatidylglycerophosphate (PGP-Me), which is the major phospholipid in the PM, changed sensitively with hydration levels. ...

Journal: :iranian journal of chemistry and chemical engineering (ijcce) 1998
javad sabounchei sadegh salehzadeh

195pt and 1h nmr has been used to show that addition of chlorine and bromine to [pt(cn)4]2_ in presence of perchloric acid in water results in cyanide and water scrambling with formation of eleven complexes of the type [pt(cn)4-ncl(h2o)n+1](n-1)+ (n=0, 1, 2, 3, 4). addition of nbu4oh to this solution gives (nbu4)2[pt(cn)4cl(oh)]. nmr measurements in acetone also show cyanide and hydroxyl group ...

Journal: :journal of physical & theoretical chemistry 2014
maryam mehdizadeh barforushi karim zare

the dopamine has been studied theoretically at the b3lyp/6-31g* level were performed in gasphase. we calculated physical parameters like atomic charges, energy (=>), asymmetry parameter(?), chemical shift @iso, dipole moment and isotropic nmr determinant and in this work we usedgaussian 03 at nmr and calculation by using b3lyp methods with 6-31g* basis set.

Journal: :journal of physical & theoretical chemistry 2014
jamileh shakibayifar karim zare

the methamphetamine has been studied theoretically at the mp2 [1]/6-31g[2] level in gas phase.methamphetamine has been investigated via nmr, frequencies calculation and nbo analysis. thestructure of methamphetamine was designed primarily using of chem. bio draw and it geometry hasbeen optimized at the mp2/6-31g computational level. the present work consists the study of themethamphetamine repor...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 2011
Fred F Damberger Barbara Christen Daniel R Pérez Simone Hornemann Kurt Wüthrich

In the otherwise highly conserved NMR structures of cellular prion proteins (PrP(C)) from different mammals, species variations in a surface epitope that includes a loop linking a β-strand, β2, with a helix, α2, are associated with NMR manifestations of a dynamic equilibrium between locally different conformations. Here, it is shown that this local dynamic conformational polymorphism in mouse P...

1996
Ales Medek Joseph R. Sachleben Peter Beverwyk Lucio Frydman

The present work introduces a new three-dimensional nuclear magnetic resonance ~3D NMR! experiment for the analysis of half-integer quadrupolar nuclei in solids. The method is based on the multi-rank expansion of the high-field NMR Hamiltonian governing the central transition of these spins in terms of irreducible spherical tensor elements. This approach leads to a temporal spin evolution given...

Journal: :The journal of physical chemistry. B 2008
Sergey V Dvinskikh Kazutoshi Yamamoto David Scanu Robert Deschenaux Ayyalusamy Ramamoorthy

Liquid-crystalline materials containing fullerenes are valuable in the development of supramolecular switches and in solar cell technology. In this study, we characterize the liquid-crystalline and dynamic properties of fullerene-containing thermotropic compounds using solid-state natural abundance (13)C NMR experiments under stationary and magic angle spinning sample conditions. Chemical shift...

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

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

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