scispace - formally typeset
Search or ask a question
Author

Michael D. Smith

Bio: Michael D. Smith is an academic researcher from Goddard Space Flight Center. The author has contributed to research in topics: Mars Exploration Program & Atmosphere of Mars. The author has an hindex of 85, co-authored 420 publications receiving 23108 citations. Previous affiliations of Michael D. Smith include Harvard University & University of Toronto.


Papers
More filters
Journal ArticleDOI
01 Aug 1999-Urology
TL;DR: The EF domain possesses favorable statistical properties as a diagnostic tool, not only in distinguishing between men with and without erectile dysfunction, but also in classifying levels of ED severity.

941 citations

Journal ArticleDOI
01 Jan 2004-Icarus
TL;DR: In this article, the authors used infrared spectra returned by the Mars Global Surveyor Thermal Emission Spectrometer (TES) to retrieve atmospheric and surface temperature, dust and water ice aerosol optical depth, and water vapor column abundance.

784 citations

Proceedings ArticleDOI
04 Oct 2004
TL;DR: It is demonstrated that public keys can be generated within 34 seconds, and that shared secrets can be distributed among nodes in a sensor network within the same, using just over 1 kilobyte of SRAM and 34 kilobytes of ROM.
Abstract: We present the first known implementation of elliptic curve cryptography over F/sub 2p/ for sensor networks based on the 8-bit, 7.3828-MHz MICA2 mote. Through instrumentation of UC Berkeley's TinySec module, we argue that, although secret-key cryptography has been tractable in this domain for some time, there has remained a need for an efficient, secure mechanism for distribution of secret keys among nodes. Although public-key infrastructure has been thought impractical, we argue, through analysis of our own implementation for TinyOS of multiplication of points on elliptic curves, that public-key infrastructure is, in fact, viable for TinySec keys' distribution, even on the MICA2. We demonstrate that public keys can be generated within 34 seconds, and that shared secrets can be distributed among nodes in a sensor network within the same, using just over 1 kilobyte of SRAM and 34 kilobytes of ROM.

751 citations

Journal ArticleDOI
TL;DR: Treatment with tanezumab was associated with a reduction in joint pain and improvement in function, with mild and moderate adverse events, among patients with moderate-to-severe osteoarthritis of the knee.
Abstract: Methods We randomly assigned 450 patients with osteoarthritis of the knee to receive tan ezumab (administered at a dose of 10, 25, 50, 100, or 200 µg per kilogram of body weight) or placebo on days 1 and 56. The primary efficacy measures were knee pain while walking and the patient’s global assessment of response to therapy. We also assessed pain, stiffness, and physical function using the Western Ontario and Mc Master Universities Osteoarthritis Index (WOMAC); the rate of response using the criteria of the Outcome Measures for Rheumatology Committee and Osteoarthritis Research Society International Standing Committee for Clinical Trials Response Criteria Initiative (OMERACT–OARSI); and safety. Results When averaged over weeks 1 through 16, the mean reductions from baseline in knee pain while walking ranged from 45 to 62% with various doses of tanezumab, as compared with 22% with placebo (P<0.001). Tanezumab, as compared with placebo, was also associated with significantly greater improvements in the response to ther apy as assessed with the use of the patients’ global assessment measure (mean in creases in score of 29 to 47% with various doses of tanezumab, as compared with 19% with placebo; P≤0.001). The rate of response according to the OMERACT–OARSI criteria ranged from 74 to 93% with tanezumab treatment, as compared with 44% with placebo (P<0.001). The rates of adverse events were 68% and 55% in the tanezumab and placebo groups, respectively. The most common adverse events among tanezumab-treated patients were headache (9% of the patients), upper respiratory tract infection (7%), and paresthesia (7%). Conclusions In this proof-of-concept study, treatment with tanezumab was associated with a reduction in joint pain and improvement in function, with mild and moderate adverse events, among patients with moderate-to-severe osteoarthritis of the knee. (Funded by Rinat Neuroscience; ClinicalTrials.gov number, NCT00394563.)

617 citations

Journal ArticleDOI
20 Feb 2009-Science
TL;DR: Using high-dispersion infrared spectrometers at three ground-based telescopes, methane and water vapor were measured simultaneously on Mars over several longitude intervals in northern early and late summer in 2003 and near the vernal equinox in 2006.
Abstract: Living systems produce more than 90% of Earth9s atmospheric methane; the balance is of geochemical origin. On Mars, methane could be a signature of either origin. Using high-dispersion infrared spectrometers at three ground-based telescopes, we measured methane and water vapor simultaneously on Mars over several longitude intervals in northern early and late summer in 2003 and near the vernal equinox in 2006. When present, methane occurred in extended plumes, and the maxima of latitudinal profiles imply that the methane was released from discrete regions. In northern midsummer, the principal plume contained ∼19,000 metric tons of methane, and the estimated source strength (≥0.6 kilogram per second) was comparable to that of the massive hydrocarbon seep at Coal Oil Point in Santa Barbara, California.

574 citations


Cited by
More filters
Journal ArticleDOI
TL;DR: The authors argue that norms evolve in a three-stage "life cycle" of emergence, cascades, and internalization, and that each stage is governed by different motives, mechanisms, and behavioral logics.
Abstract: Norms have never been absent from the study of international politics, but the sweeping “ideational turn” in the 1980s and 1990s brought them back as a central theoretical concern in the field. Much theorizing about norms has focused on how they create social structure, standards of appropriateness, and stability in international politics. Recent empirical research on norms, in contrast, has examined their role in creating political change, but change processes have been less well-theorized. We induce from this research a variety of theoretical arguments and testable hypotheses about the role of norms in political change. We argue that norms evolve in a three-stage “life cycle” of emergence, “norm cascades,” and internalization, and that each stage is governed by different motives, mechanisms, and behavioral logics. We also highlight the rational and strategic nature of many social construction processes and argue that theoretical progress will only be made by placing attention on the connections between norms and rationality rather than by opposing the two.

5,761 citations

Journal ArticleDOI
12 Jun 2005
TL;DR: The goals are to provide easy-to-use, portable, transparent, and efficient instrumentation, and to illustrate Pin's versatility, two Pintools in daily use to analyze production software are described.
Abstract: Robust and powerful software instrumentation tools are essential for program analysis tasks such as profiling, performance evaluation, and bug detection. To meet this need, we have developed a new instrumentation system called Pin. Our goals are to provide easy-to-use, portable, transparent, and efficient instrumentation. Instrumentation tools (called Pintools) are written in C/C++ using Pin's rich API. Pin follows the model of ATOM, allowing the tool writer to analyze an application at the instruction level without the need for detailed knowledge of the underlying instruction set. The API is designed to be architecture independent whenever possible, making Pintools source compatible across different architectures. However, a Pintool can access architecture-specific details when necessary. Instrumentation with Pin is mostly transparent as the application and Pintool observe the application's original, uninstrumented behavior. Pin uses dynamic compilation to instrument executables while they are running. For efficiency, Pin uses several techniques, including inlining, register re-allocation, liveness analysis, and instruction scheduling to optimize instrumentation. This fully automated approach delivers significantly better instrumentation performance than similar tools. For example, Pin is 3.3x faster than Valgrind and 2x faster than DynamoRIO for basic-block counting. To illustrate Pin's versatility, we describe two Pintools in daily use to analyze production software. Pin is publicly available for Linux platforms on four architectures: IA32 (32-bit x86), EM64T (64-bit x86), Itanium®, and ARM. In the ten months since Pin 2 was released in July 2004, there have been over 3000 downloads from its website.

4,019 citations

Journal ArticleDOI
TL;DR: Macrophages are educated by the tumour microenvironment, so that they adopt a trophic role that facilitates angiogenesis, matrix breakdown and tumour-cell motility — all of which are elements of the metastatic process.
Abstract: Evidence from clinical and experimental studies indicates that macrophages promote solid-tumour progression and metastasis. Macrophages are educated by the tumour microenvironment, so that they adopt a trophic role that facilitates angiogenesis, matrix breakdown and tumour-cell motility — all of which are elements of the metastatic process. During an inflammatory response, macrophages also produce many compounds — ranging from mutagenic oxygen and nitrogen radicals to angiogenic factors — that can contribute to cancer initiation and promotion. Macrophages therefore represent an important drug target for cancer prevention and cure.

3,130 citations

Proceedings ArticleDOI
10 Jun 2007
TL;DR: Valgrind is described, a DBI framework designed for building heavyweight DBA tools that can be used to build more interesting, heavyweight tools that are difficult or impossible to build with other DBI frameworks such as Pin and DynamoRIO.
Abstract: Dynamic binary instrumentation (DBI) frameworks make it easy to build dynamic binary analysis (DBA) tools such as checkers and profilers. Much of the focus on DBI frameworks has been on performance; little attention has been paid to their capabilities. As a result, we believe the potential of DBI has not been fully exploited.In this paper we describe Valgrind, a DBI framework designed for building heavyweight DBA tools. We focus on its unique support for shadow values-a powerful but previously little-studied and difficult-to-implement DBA technique, which requires a tool to shadow every register and memory value with another value that describes it. This support accounts for several crucial design features that distinguish Valgrind from other DBI frameworks. Because of these features, lightweight tools built with Valgrind run comparatively slowly, but Valgrind can be used to build more interesting, heavyweight tools that are difficult or impossible to build with other DBI frameworks such as Pin and DynamoRIO.

2,540 citations