Sample records for message passing programs

  1. Trace-Driven Debugging of Message Passing Programs

    NASA Technical Reports Server (NTRS)

    Frumkin, Michael; Hood, Robert; Lopez, Louis; Bailey, David (Technical Monitor)

    1998-01-01

    In this paper we report on features added to a parallel debugger to simplify the debugging of parallel message passing programs. These features include replay, setting consistent breakpoints based on interprocess event causality, a parallel undo operation, and communication supervision. These features all use trace information collected during the execution of the program being debugged. We used a number of different instrumentation techniques to collect traces. We also implemented trace displays using two different trace visualization systems. The implementation was tested on an SGI Power Challenge cluster and a network of SGI workstations.

  2. Intel NX to PVM 3.2 message passing conversion library

    NASA Technical Reports Server (NTRS)

    Arthur, Trey; Nelson, Michael L.

    1993-01-01

    NASA Langley Research Center has developed a library that allows Intel NX message passing codes to be executed under the more popular and widely supported Parallel Virtual Machine (PVM) message passing library. PVM was developed at Oak Ridge National Labs and has become the defacto standard for message passing. This library will allow the many programs that were developed on the Intel iPSC/860 or Intel Paragon in a Single Program Multiple Data (SPMD) design to be ported to the numerous architectures that PVM (version 3.2) supports. Also, the library adds global operations capability to PVM. A familiarity with Intel NX and PVM message passing is assumed.

  3. Ordering Traces Logically to Identify Lateness in Message Passing Programs

    DOE PAGES

    Isaacs, Katherine E.; Gamblin, Todd; Bhatele, Abhinav; ...

    2015-03-30

    Event traces are valuable for understanding the behavior of parallel programs. However, automatically analyzing a large parallel trace is difficult, especially without a specific objective. We aid this endeavor by extracting a trace's logical structure, an ordering of trace events derived from happened-before relationships, while taking into account developer intent. Using this structure, we can calculate an operation's delay relative to its peers on other processes. The logical structure also serves as a platform for comparing and clustering processes as well as highlighting communication patterns in a trace visualization. We present an algorithm for determining this idealized logical structure frommore » traces of message passing programs, and we develop metrics to quantify delays and differences among processes. We implement our techniques in Ravel, a parallel trace visualization tool that displays both logical and physical timelines. Rather than showing the duration of each operation, we display where delays begin and end, and how they propagate. As a result, we apply our approach to the traces of several message passing applications, demonstrating the accuracy of our extracted structure and its utility in analyzing these codes.« less

  4. Incremental Parallelization of Non-Data-Parallel Programs Using the Charon Message-Passing Library

    NASA Technical Reports Server (NTRS)

    VanderWijngaart, Rob F.

    2000-01-01

    Message passing is among the most popular techniques for parallelizing scientific programs on distributed-memory architectures. The reasons for its success are wide availability (MPI), efficiency, and full tuning control provided to the programmer. A major drawback, however, is that incremental parallelization, as offered by compiler directives, is not generally possible, because all data structures have to be changed throughout the program simultaneously. Charon remedies this situation through mappings between distributed and non-distributed data. It allows breaking up the parallelization into small steps, guaranteeing correctness at every stage. Several tools are available to help convert legacy codes into high-performance message-passing programs. They usually target data-parallel applications, whose loops carrying most of the work can be distributed among all processors without much dependency analysis. Others do a full dependency analysis and then convert the code virtually automatically. Even more toolkits are available that aid construction from scratch of message passing programs. None, however, allows piecemeal translation of codes with complex data dependencies (i.e. non-data-parallel programs) into message passing codes. The Charon library (available in both C and Fortran) provides incremental parallelization capabilities by linking legacy code arrays with distributed arrays. During the conversion process, non-distributed and distributed arrays exist side by side, and simple mapping functions allow the programmer to switch between the two in any location in the program. Charon also provides wrapper functions that leave the structure of the legacy code intact, but that allow execution on truly distributed data. Finally, the library provides a rich set of communication functions that support virtually all patterns of remote data demands in realistic structured grid scientific programs, including transposition, nearest-neighbor communication, pipelining

  5. Monitoring Data-Structure Evolution in Distributed Message-Passing Programs

    NASA Technical Reports Server (NTRS)

    Sarukkai, Sekhar R.; Beers, Andrew; Woodrow, Thomas S. (Technical Monitor)

    1996-01-01

    Monitoring the evolution of data structures in parallel and distributed programs, is critical for debugging its semantics and performance. However, the current state-of-art in tracking and presenting data-structure information on parallel and distributed environments is cumbersome and does not scale. In this paper we present a methodology that automatically tracks memory bindings (not the actual contents) of static and dynamic data-structures of message-passing C programs, using PVM. With the help of a number of examples we show that in addition to determining the impact of memory allocation overheads on program performance, graphical views can help in debugging the semantics of program execution. Scalable animations of virtual address bindings of source-level data-structures are used for debugging the semantics of parallel programs across all processors. In conjunction with light-weight core-files, this technique can be used to complement traditional debuggers on single processors. Detailed information (such as data-structure contents), on specific nodes, can be determined using traditional debuggers after the data structure evolution leading to the semantic error is observed graphically.

  6. MPF: A portable message passing facility for shared memory multiprocessors

    NASA Technical Reports Server (NTRS)

    Malony, Allen D.; Reed, Daniel A.; Mcguire, Patrick J.

    1987-01-01

    The design, implementation, and performance evaluation of a message passing facility (MPF) for shared memory multiprocessors are presented. The MPF is based on a message passing model conceptually similar to conversations. Participants (parallel processors) can enter or leave a conversation at any time. The message passing primitives for this model are implemented as a portable library of C function calls. The MPF is currently operational on a Sequent Balance 21000, and several parallel applications were developed and tested. Several simple benchmark programs are presented to establish interprocess communication performance for common patterns of interprocess communication. Finally, performance figures are presented for two parallel applications, linear systems solution, and iterative solution of partial differential equations.

  7. Message Passing vs. Shared Address Space on a Cluster of SMPs

    NASA Technical Reports Server (NTRS)

    Shan, Hongzhang; Singh, Jaswinder Pal; Oliker, Leonid; Biswas, Rupak

    2000-01-01

    The convergence of scalable computer architectures using clusters of PCs (or PC-SMPs) with commodity networking has become an attractive platform for high end scientific computing. Currently, message-passing and shared address space (SAS) are the two leading programming paradigms for these systems. Message-passing has been standardized with MPI, and is the most common and mature programming approach. However message-passing code development can be extremely difficult, especially for irregular structured computations. SAS offers substantial ease of programming, but may suffer from performance limitations due to poor spatial locality, and high protocol overhead. In this paper, we compare the performance of and programming effort, required for six applications under both programming models on a 32 CPU PC-SMP cluster. Our application suite consists of codes that typically do not exhibit high efficiency under shared memory programming. due to their high communication to computation ratios and complex communication patterns. Results indicate that SAS can achieve about half the parallel efficiency of MPI for most of our applications: however, on certain classes of problems SAS performance is competitive with MPI. We also present new algorithms for improving the PC cluster performance of MPI collective operations.

  8. Efficient Tracing for On-the-Fly Space-Time Displays in a Debugger for Message Passing Programs

    NASA Technical Reports Server (NTRS)

    Hood, Robert; Matthews, Gregory

    2001-01-01

    In this work we describe the implementation of a practical mechanism for collecting and displaying trace information in a debugger for message passing programs. We introduce a trace format that is highly compressible while still providing information adequate for debugging purposes. We make the mechanism convenient for users to access by incorporating the trace collection in a set of wrappers for the MPI (message passing interface) communication library. We implement several debugger operations that use the trace display: consistent stoplines, undo, and rollback. They all are implemented using controlled replay, which executes at full speed in target processes until the appropriate position in the computation is reached. They provide convenient mechanisms for getting to places in the execution where the full power of a state-based debugger can be brought to bear on isolating communication errors.

  9. Statistics of Epidemics in Networks by Passing Messages

    NASA Astrophysics Data System (ADS)

    Shrestha, Munik Kumar

    Epidemic processes are common out-of-equilibrium phenomena of broad interdisciplinary interest. In this thesis, we show how message-passing approach can be a helpful tool for simulating epidemic models in disordered medium like networks, and in particular for estimating the probability that a given node will become infectious at a particular time. The sort of dynamics we consider are stochastic, where randomness can arise from the stochastic events or from the randomness of network structures. As in belief propagation, variables or messages in message-passing approach are defined on the directed edges of a network. However, unlike belief propagation, where the posterior distributions are updated according to Bayes' rule, in message-passing approach we write differential equations for the messages over time. It takes correlations between neighboring nodes into account while preventing causal signals from backtracking to their immediate source, and thus avoids "echo chamber effects" where a pair of adjacent nodes each amplify the probability that the other is infectious. In our first results, we develop a message-passing approach to threshold models of behavior popular in sociology. These are models, first proposed by Granovetter, where individuals have to hear about a trend or behavior from some number of neighbors before adopting it themselves. In thermodynamic limit of large random networks, we provide an exact analytic scheme while calculating the time dependence of the probabilities and thus learning about the whole dynamics of bootstrap percolation, which is a simple model known in statistical physics for exhibiting discontinuous phase transition. As an application, we apply a similar model to financial networks, studying when bankruptcies spread due to the sudden devaluation of shared assets in overlapping portfolios. We predict that although diversification may be good for individual institutions, it can create dangerous systemic effects, and as a result

  10. Parallelized direct execution simulation of message-passing parallel programs

    NASA Technical Reports Server (NTRS)

    Dickens, Phillip M.; Heidelberger, Philip; Nicol, David M.

    1994-01-01

    As massively parallel computers proliferate, there is growing interest in findings ways by which performance of massively parallel codes can be efficiently predicted. This problem arises in diverse contexts such as parallelizing computers, parallel performance monitoring, and parallel algorithm development. In this paper we describe one solution where one directly executes the application code, but uses a discrete-event simulator to model details of the presumed parallel machine such as operating system and communication network behavior. Because this approach is computationally expensive, we are interested in its own parallelization specifically the parallelization of the discrete-event simulator. We describe methods suitable for parallelized direct execution simulation of message-passing parallel programs, and report on the performance of such a system, Large Application Parallel Simulation Environment (LAPSE), we have built on the Intel Paragon. On all codes measured to date, LAPSE predicts performance well typically within 10 percent relative error. Depending on the nature of the application code, we have observed low slowdowns (relative to natively executing code) and high relative speedups using up to 64 processors.

  11. Efficiently passing messages in distributed spiking neural network simulation.

    PubMed

    Thibeault, Corey M; Minkovich, Kirill; O'Brien, Michael J; Harris, Frederick C; Srinivasa, Narayan

    2013-01-01

    Efficiently passing spiking messages in a neural model is an important aspect of high-performance simulation. As the scale of networks has increased so has the size of the computing systems required to simulate them. In addition, the information exchange of these resources has become more of an impediment to performance. In this paper we explore spike message passing using different mechanisms provided by the Message Passing Interface (MPI). A specific implementation, MVAPICH, designed for high-performance clusters with Infiniband hardware is employed. The focus is on providing information about these mechanisms for users of commodity high-performance spiking simulators. In addition, a novel hybrid method for spike exchange was implemented and benchmarked.

  12. The serial message-passing schedule for LDPC decoding algorithms

    NASA Astrophysics Data System (ADS)

    Liu, Mingshan; Liu, Shanshan; Zhou, Yuan; Jiang, Xue

    2015-12-01

    The conventional message-passing schedule for LDPC decoding algorithms is the so-called flooding schedule. It has the disadvantage that the updated messages cannot be used until next iteration, thus reducing the convergence speed . In this case, the Layered Decoding algorithm (LBP) based on serial message-passing schedule is proposed. In this paper the decoding principle of LBP algorithm is briefly introduced, and then proposed its two improved algorithms, the grouped serial decoding algorithm (Grouped LBP) and the semi-serial decoding algorithm .They can improve LBP algorithm's decoding speed while maintaining a good decoding performance.

  13. A message passing kernel for the hypercluster parallel processing test bed

    NASA Technical Reports Server (NTRS)

    Blech, Richard A.; Quealy, Angela; Cole, Gary L.

    1989-01-01

    A Message-Passing Kernel (MPK) for the Hypercluster parallel-processing test bed is described. The Hypercluster is being developed at the NASA Lewis Research Center to support investigations of parallel algorithms and architectures for computational fluid and structural mechanics applications. The Hypercluster resembles the hypercube architecture except that each node consists of multiple processors communicating through shared memory. The MPK efficiently routes information through the Hypercluster, using a message-passing protocol when necessary and faster shared-memory communication whenever possible. The MPK also interfaces all of the processors with the Hypercluster operating system (HYCLOPS), which runs on a Front-End Processor (FEP). This approach distributes many of the I/O tasks to the Hypercluster processors and eliminates the need for a separate I/O support program on the FEP.

  14. Message passing with parallel queue traversal

    DOEpatents

    Underwood, Keith D [Albuquerque, NM; Brightwell, Ronald B [Albuquerque, NM; Hemmert, K Scott [Albuquerque, NM

    2012-05-01

    In message passing implementations, associative matching structures are used to permit list entries to be searched in parallel fashion, thereby avoiding the delay of linear list traversal. List management capabilities are provided to support list entry turnover semantics and priority ordering semantics.

  15. Theoretic derivation of directed acyclic subgraph algorithm and comparisons with message passing algorithm

    NASA Astrophysics Data System (ADS)

    Ha, Jeongmok; Jeong, Hong

    2016-07-01

    This study investigates the directed acyclic subgraph (DAS) algorithm, which is used to solve discrete labeling problems much more rapidly than other Markov-random-field-based inference methods but at a competitive accuracy. However, the mechanism by which the DAS algorithm simultaneously achieves competitive accuracy and fast execution speed, has not been elucidated by a theoretical derivation. We analyze the DAS algorithm by comparing it with a message passing algorithm. Graphical models, inference methods, and energy-minimization frameworks are compared between DAS and message passing algorithms. Moreover, the performances of DAS and other message passing methods [sum-product belief propagation (BP), max-product BP, and tree-reweighted message passing] are experimentally compared.

  16. Message Passing on GPUs

    NASA Astrophysics Data System (ADS)

    Stuart, J. A.

    2011-12-01

    This paper explores the challenges in implementing a message passing interface usable on systems with data-parallel processors, and more specifically GPUs. As a case study, we design and implement the ``DCGN'' API on NVIDIA GPUs that is similar to MPI and allows full access to the underlying architecture. We introduce the notion of data-parallel thread-groups as a way to map resources to MPI ranks. We use a method that also allows the data-parallel processors to run autonomously from user-written CPU code. In order to facilitate communication, we use a sleep-based polling system to store and retrieve messages. Unlike previous systems, our method provides both performance and flexibility. By running a test suite of applications with different communication requirements, we find that a tolerable amount of overhead is incurred, somewhere between one and five percent depending on the application, and indicate the locations where this overhead accumulates. We conclude that with innovations in chipsets and drivers, this overhead will be mitigated and provide similar performance to typical CPU-based MPI implementations while providing fully-dynamic communication.

  17. Neighbourhood-consensus message passing and its potentials in image processing applications

    NASA Astrophysics Data System (ADS)

    Ružic, Tijana; Pižurica, Aleksandra; Philips, Wilfried

    2011-03-01

    In this paper, a novel algorithm for inference in Markov Random Fields (MRFs) is presented. Its goal is to find approximate maximum a posteriori estimates in a simple manner by combining neighbourhood influence of iterated conditional modes (ICM) and message passing of loopy belief propagation (LBP). We call the proposed method neighbourhood-consensus message passing because a single joint message is sent from the specified neighbourhood to the central node. The message, as a function of beliefs, represents the agreement of all nodes within the neighbourhood regarding the labels of the central node. This way we are able to overcome the disadvantages of reference algorithms, ICM and LBP. On one hand, more information is propagated in comparison with ICM, while on the other hand, the huge amount of pairwise interactions is avoided in comparison with LBP by working with neighbourhoods. The idea is related to the previously developed iterated conditional expectations algorithm. Here we revisit it and redefine it in a message passing framework in a more general form. The results on three different benchmarks demonstrate that the proposed technique can perform well both for binary and multi-label MRFs without any limitations on the model definition. Furthermore, it manifests improved performance over related techniques either in terms of quality and/or speed.

  18. Verification of Faulty Message Passing Systems with Continuous State Space in PVS

    NASA Technical Reports Server (NTRS)

    Pilotto, Concetta; White, Jerome

    2010-01-01

    We present a library of Prototype Verification System (PVS) meta-theories that verifies a class of distributed systems in which agent commu nication is through message-passing. The theoretic work, outlined in, consists of iterative schemes for solving systems of linear equations , such as message-passing extensions of the Gauss and Gauss-Seidel me thods. We briefly review that work and discuss the challenges in formally verifying it.

  19. Design of a network for concurrent message passing systems

    NASA Astrophysics Data System (ADS)

    Song, Paul Y.

    1988-08-01

    We describe the design of the network design frame (NDF), a self-timed routing chip for a message-passing concurrent computer. The NDF uses a partitioned data path, low-voltage output drivers, and a distributed token-passing arbiter to provide a bandwidth of 450 Mbits/sec into the network. Wormhole routing and bidirectional virtual channels are used to provide low latency communications, less than 2us latency to deliver a 216 bit message across the diameter of a 1K node mess-connected machine. To support concurrent software systems, the NDF provides two logical networks, one for user messages and one for system messages. The two networks share the same set of physical wires. To facilitate the development of network nodes, the NDF is a design frame. The NDF circuitry is integrated into the pad frame of a chip leaving the center of the chip uncommitted. We define an analytic framework in which to study the effects of network size, network buffering capacity, bidirectional channels, and traffic on this class of networks. The response of the network to various combinations of these parameters are obtained through extensive simulation of the network model. Through simulation, we are able to observe the macro behavior of the network as opposed to the micro behavior of the NDF routing controller.

  20. Efficient Implementation of Multigrid Solvers on Message-Passing Parrallel Systems

    NASA Technical Reports Server (NTRS)

    Lou, John

    1994-01-01

    We discuss our implementation strategies for finite difference multigrid partial differential equation (PDE) solvers on message-passing systems. Our target parallel architecture is Intel parallel computers: the Delta and Paragon system.

  1. Gene-network inference by message passing

    NASA Astrophysics Data System (ADS)

    Braunstein, A.; Pagnani, A.; Weigt, M.; Zecchina, R.

    2008-01-01

    The inference of gene-regulatory processes from gene-expression data belongs to the major challenges of computational systems biology. Here we address the problem from a statistical-physics perspective and develop a message-passing algorithm which is able to infer sparse, directed and combinatorial regulatory mechanisms. Using the replica technique, the algorithmic performance can be characterized analytically for artificially generated data. The algorithm is applied to genome-wide expression data of baker's yeast under various environmental conditions. We find clear cases of combinatorial control, and enrichment in common functional annotations of regulated genes and their regulators.

  2. The Edge-Disjoint Path Problem on Random Graphs by Message-Passing.

    PubMed

    Altarelli, Fabrizio; Braunstein, Alfredo; Dall'Asta, Luca; De Bacco, Caterina; Franz, Silvio

    2015-01-01

    We present a message-passing algorithm to solve a series of edge-disjoint path problems on graphs based on the zero-temperature cavity equations. Edge-disjoint paths problems are important in the general context of routing, that can be defined by incorporating under a unique framework both traffic optimization and total path length minimization. The computation of the cavity equations can be performed efficiently by exploiting a mapping of a generalized edge-disjoint path problem on a star graph onto a weighted maximum matching problem. We perform extensive numerical simulations on random graphs of various types to test the performance both in terms of path length minimization and maximization of the number of accommodated paths. In addition, we test the performance on benchmark instances on various graphs by comparison with state-of-the-art algorithms and results found in the literature. Our message-passing algorithm always outperforms the others in terms of the number of accommodated paths when considering non trivial instances (otherwise it gives the same trivial results). Remarkably, the largest improvement in performance with respect to the other methods employed is found in the case of benchmarks with meshes, where the validity hypothesis behind message-passing is expected to worsen. In these cases, even though the exact message-passing equations do not converge, by introducing a reinforcement parameter to force convergence towards a sub optimal solution, we were able to always outperform the other algorithms with a peak of 27% performance improvement in terms of accommodated paths. On random graphs, we numerically observe two separated regimes: one in which all paths can be accommodated and one in which this is not possible. We also investigate the behavior of both the number of paths to be accommodated and their minimum total length.

  3. The Edge-Disjoint Path Problem on Random Graphs by Message-Passing

    PubMed Central

    2015-01-01

    We present a message-passing algorithm to solve a series of edge-disjoint path problems on graphs based on the zero-temperature cavity equations. Edge-disjoint paths problems are important in the general context of routing, that can be defined by incorporating under a unique framework both traffic optimization and total path length minimization. The computation of the cavity equations can be performed efficiently by exploiting a mapping of a generalized edge-disjoint path problem on a star graph onto a weighted maximum matching problem. We perform extensive numerical simulations on random graphs of various types to test the performance both in terms of path length minimization and maximization of the number of accommodated paths. In addition, we test the performance on benchmark instances on various graphs by comparison with state-of-the-art algorithms and results found in the literature. Our message-passing algorithm always outperforms the others in terms of the number of accommodated paths when considering non trivial instances (otherwise it gives the same trivial results). Remarkably, the largest improvement in performance with respect to the other methods employed is found in the case of benchmarks with meshes, where the validity hypothesis behind message-passing is expected to worsen. In these cases, even though the exact message-passing equations do not converge, by introducing a reinforcement parameter to force convergence towards a sub optimal solution, we were able to always outperform the other algorithms with a peak of 27% performance improvement in terms of accommodated paths. On random graphs, we numerically observe two separated regimes: one in which all paths can be accommodated and one in which this is not possible. We also investigate the behavior of both the number of paths to be accommodated and their minimum total length. PMID:26710102

  4. Critical field-exponents for secure message-passing in modular networks

    NASA Astrophysics Data System (ADS)

    Shekhtman, Louis M.; Danziger, Michael M.; Bonamassa, Ivan; Buldyrev, Sergey V.; Caldarelli, Guido; Zlatić, Vinko; Havlin, Shlomo

    2018-05-01

    We study secure message-passing in the presence of multiple adversaries in modular networks. We assume a dominant fraction of nodes in each module have the same vulnerability, i.e., the same entity spying on them. We find both analytically and via simulations that the links between the modules (interlinks) have effects analogous to a magnetic field in a spin-system in that for any amount of interlinks the system no longer undergoes a phase transition. We then define the exponents δ, which relates the order parameter (the size of the giant secure component) at the critical point to the field strength (average number of interlinks per node), and γ, which describes the susceptibility near criticality. These are found to be δ = 2 and γ = 1 (with the scaling of the order parameter near the critical point given by β = 1). When two or more vulnerabilities are equally present in a module we find δ = 1 and γ = 0 (with β ≥ 2). Apart from defining a previously unidentified universality class, these exponents show that increasing connections between modules is more beneficial for security than increasing connections within modules. We also measure the correlation critical exponent ν, and the upper critical dimension d c , finding that ν {d}c=3 as for ordinary percolation, suggesting that for secure message-passing d c = 6. These results provide an interesting analogy between secure message-passing in modular networks and the physics of magnetic spin-systems.

  5. Message passing with a limited number of DMA byte counters

    DOEpatents

    Blocksome, Michael [Rochester, MN; Chen, Dong [Croton on Hudson, NY; Giampapa, Mark E [Irvington, NY; Heidelberger, Philip [Cortlandt Manor, NY; Kumar, Sameer [White Plains, NY; Parker, Jeffrey J [Rochester, MN

    2011-10-04

    A method for passing messages in a parallel computer system constructed as a plurality of compute nodes interconnected as a network where each compute node includes a DMA engine but includes only a limited number of byte counters for tracking a number of bytes that are sent or received by the DMA engine, where the byte counters may be used in shared counter or exclusive counter modes of operation. The method includes using rendezvous protocol, a source compute node deterministically sending a request to send (RTS) message with a single RTS descriptor using an exclusive injection counter to track both the RTS message and message data to be sent in association with the RTS message, to a destination compute node such that the RTS descriptor indicates to the destination compute node that the message data will be adaptively routed to the destination node. Using one DMA FIFO at the source compute node, the RTS descriptors are maintained for rendezvous messages destined for the destination compute node to ensure proper message data ordering thereat. Using a reception counter at a DMA engine, the destination compute node tracks reception of the RTS and associated message data and sends a clear to send (CTS) message to the source node in a rendezvous protocol form of a remote get to accept the RTS message and message data and processing the remote get (CTS) by the source compute node DMA engine to provide the message data to be sent.

  6. Charon Message-Passing Toolkit for Scientific Computations

    NASA Technical Reports Server (NTRS)

    VanderWijngaart, Rob F.; Yan, Jerry (Technical Monitor)

    2000-01-01

    Charon is a library, callable from C and Fortran, that aids the conversion of structured-grid legacy codes-such as those used in the numerical computation of fluid flows-into parallel, high- performance codes. Key are functions that define distributed arrays, that map between distributed and non-distributed arrays, and that allow easy specification of common communications on structured grids. The library is based on the widely accepted MPI message passing standard. We present an overview of the functionality of Charon, and some representative results.

  7. A real-time MPEG software decoder using a portable message-passing library

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Kwong, Man Kam; Tang, P.T. Peter; Lin, Biquan

    1995-12-31

    We present a real-time MPEG software decoder that uses message-passing libraries such as MPL, p4 and MPI. The parallel MPEG decoder currently runs on the IBM SP system but can be easil ported to other parallel machines. This paper discusses our parallel MPEG decoding algorithm as well as the parallel programming environment under which it uses. Several technical issues are discussed, including balancing of decoding speed, memory limitation, 1/0 capacities, and optimization of MPEG decoding components. This project shows that a real-time portable software MPEG decoder is feasible in a general-purpose parallel machine.

  8. LCAMP: Location Constrained Approximate Message Passing for Compressed Sensing MRI

    PubMed Central

    Sung, Kyunghyun; Daniel, Bruce L; Hargreaves, Brian A

    2016-01-01

    Iterative thresholding methods have been extensively studied as faster alternatives to convex optimization methods for solving large-sized problems in compressed sensing. A novel iterative thresholding method called LCAMP (Location Constrained Approximate Message Passing) is presented for reducing computational complexity and improving reconstruction accuracy when a nonzero location (or sparse support) constraint can be obtained from view shared images. LCAMP modifies the existing approximate message passing algorithm by replacing the thresholding stage with a location constraint, which avoids adjusting regularization parameters or thresholding levels. This work is first compared with other conventional reconstruction methods using random 1D signals and then applied to dynamic contrast-enhanced breast MRI to demonstrate the excellent reconstruction accuracy (less than 2% absolute difference) and low computation time (5 - 10 seconds using Matlab) with highly undersampled 3D data (244 × 128 × 48; overall reduction factor = 10). PMID:23042658

  9. Belief propagation decoding of quantum channels by passing quantum messages

    NASA Astrophysics Data System (ADS)

    Renes, Joseph M.

    2017-07-01

    The belief propagation (BP) algorithm is a powerful tool in a wide range of disciplines from statistical physics to machine learning to computational biology, and is ubiquitous in decoding classical error-correcting codes. The algorithm works by passing messages between nodes of the factor graph associated with the code and enables efficient decoding of the channel, in some cases even up to the Shannon capacity. Here we construct the first BP algorithm which passes quantum messages on the factor graph and is capable of decoding the classical-quantum channel with pure state outputs. This gives explicit decoding circuits whose number of gates is quadratic in the code length. We also show that this decoder can be modified to work with polar codes for the pure state channel and as part of a decoder for transmitting quantum information over the amplitude damping channel. These represent the first explicit capacity-achieving decoders for non-Pauli channels.

  10. Quantum cluster variational method and message passing algorithms revisited

    NASA Astrophysics Data System (ADS)

    Domínguez, E.; Mulet, Roberto

    2018-02-01

    We present a general framework to study quantum disordered systems in the context of the Kikuchi's cluster variational method (CVM). The method relies in the solution of message passing-like equations for single instances or in the iterative solution of complex population dynamic algorithms for an average case scenario. We first show how a standard application of the Kikuchi's CVM can be easily translated to message passing equations for specific instances of the disordered system. We then present an "ad hoc" extension of these equations to a population dynamic algorithm representing an average case scenario. At the Bethe level, these equations are equivalent to the dynamic population equations that can be derived from a proper cavity ansatz. However, at the plaquette approximation, the interpretation is more subtle and we discuss it taking also into account previous results in classical disordered models. Moreover, we develop a formalism to properly deal with the average case scenario using a replica-symmetric ansatz within this CVM for quantum disordered systems. Finally, we present and discuss numerical solutions of the different approximations for the quantum transverse Ising model and the quantum random field Ising model in two-dimensional lattices.

  11. Message Passing and Shared Address Space Parallelism on an SMP Cluster

    NASA Technical Reports Server (NTRS)

    Shan, Hongzhang; Singh, Jaswinder P.; Oliker, Leonid; Biswas, Rupak; Biegel, Bryan (Technical Monitor)

    2002-01-01

    Currently, message passing (MP) and shared address space (SAS) are the two leading parallel programming paradigms. MP has been standardized with MPI, and is the more common and mature approach; however, code development can be extremely difficult, especially for irregularly structured computations. SAS offers substantial ease of programming, but may suffer from performance limitations due to poor spatial locality and high protocol overhead. In this paper, we compare the performance of and the programming effort required for six applications under both programming models on a 32-processor PC-SMP cluster, a platform that is becoming increasingly attractive for high-end scientific computing. Our application suite consists of codes that typically do not exhibit scalable performance under shared-memory programming due to their high communication-to-computation ratios and/or complex communication patterns. Results indicate that SAS can achieve about half the parallel efficiency of MPI for most of our applications, while being competitive for the others. A hybrid MPI+SAS strategy shows only a small performance advantage over pure MPI in some cases. Finally, improved implementations of two MPI collective operations on PC-SMP clusters are presented.

  12. Parallelization of a hydrological model using the message passing interface

    USGS Publications Warehouse

    Wu, Yiping; Li, Tiejian; Sun, Liqun; Chen, Ji

    2013-01-01

    With the increasing knowledge about the natural processes, hydrological models such as the Soil and Water Assessment Tool (SWAT) are becoming larger and more complex with increasing computation time. Additionally, other procedures such as model calibration, which may require thousands of model iterations, can increase running time and thus further reduce rapid modeling and analysis. Using the widely-applied SWAT as an example, this study demonstrates how to parallelize a serial hydrological model in a Windows® environment using a parallel programing technology—Message Passing Interface (MPI). With a case study, we derived the optimal values for the two parameters (the number of processes and the corresponding percentage of work to be distributed to the master process) of the parallel SWAT (P-SWAT) on an ordinary personal computer and a work station. Our study indicates that model execution time can be reduced by 42%–70% (or a speedup of 1.74–3.36) using multiple processes (two to five) with a proper task-distribution scheme (between the master and slave processes). Although the computation time cost becomes lower with an increasing number of processes (from two to five), this enhancement becomes less due to the accompanied increase in demand for message passing procedures between the master and all slave processes. Our case study demonstrates that the P-SWAT with a five-process run may reach the maximum speedup, and the performance can be quite stable (fairly independent of a project size). Overall, the P-SWAT can help reduce the computation time substantially for an individual model run, manual and automatic calibration procedures, and optimization of best management practices. In particular, the parallelization method we used and the scheme for deriving the optimal parameters in this study can be valuable and easily applied to other hydrological or environmental models.

  13. n-body simulations using message passing parallel computers.

    NASA Astrophysics Data System (ADS)

    Grama, A. Y.; Kumar, V.; Sameh, A.

    The authors present new parallel formulations of the Barnes-Hut method for n-body simulations on message passing computers. These parallel formulations partition the domain efficiently incurring minimal communication overhead. This is in contrast to existing schemes that are based on sorting a large number of keys or on the use of global data structures. The new formulations are augmented by alternate communication strategies which serve to minimize communication overhead. The impact of these communication strategies is experimentally studied. The authors report on experimental results obtained from an astrophysical simulation on an nCUBE2 parallel computer.

  14. Approximate message passing with restricted Boltzmann machine priors

    NASA Astrophysics Data System (ADS)

    Tramel, Eric W.; Drémeau, Angélique; Krzakala, Florent

    2016-07-01

    Approximate message passing (AMP) has been shown to be an excellent statistical approach to signal inference and compressed sensing problems. The AMP framework provides modularity in the choice of signal prior; here we propose a hierarchical form of the Gauss-Bernoulli prior which utilizes a restricted Boltzmann machine (RBM) trained on the signal support to push reconstruction performance beyond that of simple i.i.d. priors for signals whose support can be well represented by a trained binary RBM. We present and analyze two methods of RBM factorization and demonstrate how these affect signal reconstruction performance within our proposed algorithm. Finally, using the MNIST handwritten digit dataset, we show experimentally that using an RBM allows AMP to approach oracle-support performance.

  15. Optimal mapping of neural-network learning on message-passing multicomputers

    NASA Technical Reports Server (NTRS)

    Chu, Lon-Chan; Wah, Benjamin W.

    1992-01-01

    A minimization of learning-algorithm completion time is sought in the present optimal-mapping study of the learning process in multilayer feed-forward artificial neural networks (ANNs) for message-passing multicomputers. A novel approximation algorithm for mappings of this kind is derived from observations of the dominance of a parallel ANN algorithm over its communication time. Attention is given to both static and dynamic mapping schemes for systems with static and dynamic background workloads, as well as to experimental results obtained for simulated mappings on multicomputers with dynamic background workloads.

  16. Passing Messages between Biological Networks to Refine Predicted Interactions

    PubMed Central

    Glass, Kimberly; Huttenhower, Curtis; Quackenbush, John; Yuan, Guo-Cheng

    2013-01-01

    Regulatory network reconstruction is a fundamental problem in computational biology. There are significant limitations to such reconstruction using individual datasets, and increasingly people attempt to construct networks using multiple, independent datasets obtained from complementary sources, but methods for this integration are lacking. We developed PANDA (Passing Attributes between Networks for Data Assimilation), a message-passing model using multiple sources of information to predict regulatory relationships, and used it to integrate protein-protein interaction, gene expression, and sequence motif data to reconstruct genome-wide, condition-specific regulatory networks in yeast as a model. The resulting networks were not only more accurate than those produced using individual data sets and other existing methods, but they also captured information regarding specific biological mechanisms and pathways that were missed using other methodologies. PANDA is scalable to higher eukaryotes, applicable to specific tissue or cell type data and conceptually generalizable to include a variety of regulatory, interaction, expression, and other genome-scale data. An implementation of the PANDA algorithm is available at www.sourceforge.net/projects/panda-net. PMID:23741402

  17. Passing messages between biological networks to refine predicted interactions.

    PubMed

    Glass, Kimberly; Huttenhower, Curtis; Quackenbush, John; Yuan, Guo-Cheng

    2013-01-01

    Regulatory network reconstruction is a fundamental problem in computational biology. There are significant limitations to such reconstruction using individual datasets, and increasingly people attempt to construct networks using multiple, independent datasets obtained from complementary sources, but methods for this integration are lacking. We developed PANDA (Passing Attributes between Networks for Data Assimilation), a message-passing model using multiple sources of information to predict regulatory relationships, and used it to integrate protein-protein interaction, gene expression, and sequence motif data to reconstruct genome-wide, condition-specific regulatory networks in yeast as a model. The resulting networks were not only more accurate than those produced using individual data sets and other existing methods, but they also captured information regarding specific biological mechanisms and pathways that were missed using other methodologies. PANDA is scalable to higher eukaryotes, applicable to specific tissue or cell type data and conceptually generalizable to include a variety of regulatory, interaction, expression, and other genome-scale data. An implementation of the PANDA algorithm is available at www.sourceforge.net/projects/panda-net.

  18. Space Reclamation for Uncoordinated Checkpointing in Message-Passing Systems. Ph.D. Thesis

    NASA Technical Reports Server (NTRS)

    Wang, Yi-Min

    1993-01-01

    Checkpointing and rollback recovery are techniques that can provide efficient recovery from transient process failures. In a message-passing system, the rollback of a message sender may cause the rollback of the corresponding receiver, and the system needs to roll back to a consistent set of checkpoints called recovery line. If the processes are allowed to take uncoordinated checkpoints, the above rollback propagation may result in the domino effect which prevents recovery line progression. Traditionally, only obsolete checkpoints before the global recovery line can be discarded, and the necessary and sufficient condition for identifying all garbage checkpoints has remained an open problem. A necessary and sufficient condition for achieving optimal garbage collection is derived and it is proved that the number of useful checkpoints is bounded by N(N+1)/2, where N is the number of processes. The approach is based on the maximum-sized antichain model of consistent global checkpoints and the technique of recovery line transformation and decomposition. It is also shown that, for systems requiring message logging to record in-transit messages, the same approach can be used to achieve optimal message log reclamation. As a final topic, a unifying framework is described by considering checkpoint coordination and exploiting piecewise determinism as mechanisms for bounding rollback propagation, and the applicability of the optimal garbage collection algorithm to domino-free recovery protocols is demonstrated.

  19. Multi-partitioning for ADI-schemes on message passing architectures

    NASA Technical Reports Server (NTRS)

    Vanderwijngaart, Rob F.

    1994-01-01

    A kind of discrete-operator splitting called Alternating Direction Implicit (ADI) has been found to be useful in simulating fluid flow problems. In particular, it is being used to study the effects of hot exhaust jets from high performance aircraft on landing surfaces. Decomposition techniques that minimize load imbalance and message-passing frequency are described. Three strategies that are investigated for implementing the NAS Scalar Penta-diagonal Parallel Benchmark (SP) are transposition, pipelined Gaussian elimination, and multipartitioning. The multipartitioning strategy, which was used on Ethernet, was found to be the most efficient, although it was considered only a moderate success because of Ethernet's limited communication properties. The efficiency derived largely from the coarse granularity of the strategy, which reduced latencies and allowed overlap of communication and computation.

  20. ADAPTIVE TETRAHEDRAL GRID REFINEMENT AND COARSENING IN MESSAGE-PASSING ENVIRONMENTS

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Hallberg, J.; Stagg, A.

    2000-10-01

    A grid refinement and coarsening scheme has been developed for tetrahedral and triangular grid-based calculations in message-passing environments. The element adaption scheme is based on an edge bisection of elements marked for refinement by an appropriate error indicator. Hash-table/linked-list data structures are used to store nodal and element formation. The grid along inter-processor boundaries is refined and coarsened consistently with the update of these data structures via MPI calls. The parallel adaption scheme has been applied to the solution of a transient, three-dimensional, nonlinear, groundwater flow problem. Timings indicate efficiency of the grid refinement process relative to the flow solvermore » calculations.« less

  1. Mean-field message-passing equations in the Hopfield model and its generalizations

    NASA Astrophysics Data System (ADS)

    Mézard, Marc

    2017-02-01

    Motivated by recent progress in using restricted Boltzmann machines as preprocessing algorithms for deep neural network, we revisit the mean-field equations [belief-propagation and Thouless-Anderson Palmer (TAP) equations] in the best understood of such machines, namely the Hopfield model of neural networks, and we explicit how they can be used as iterative message-passing algorithms, providing a fast method to compute the local polarizations of neurons. In the "retrieval phase", where neurons polarize in the direction of one memorized pattern, we point out a major difference between the belief propagation and TAP equations: The set of belief propagation equations depends on the pattern which is retrieved, while one can use a unique set of TAP equations. This makes the latter method much better suited for applications in the learning process of restricted Boltzmann machines. In the case where the patterns memorized in the Hopfield model are not independent, but are correlated through a combinatorial structure, we show that the TAP equations have to be modified. This modification can be seen either as an alteration of the reaction term in TAP equations or, more interestingly, as the consequence of message passing on a graphical model with several hidden layers, where the number of hidden layers depends on the depth of the correlations in the memorized patterns. This layered structure is actually necessary when one deals with more general restricted Boltzmann machines.

  2. Mapping a battlefield simulation onto message-passing parallel architectures

    NASA Technical Reports Server (NTRS)

    Nicol, David M.

    1987-01-01

    Perhaps the most critical problem in distributed simulation is that of mapping: without an effective mapping of workload to processors the speedup potential of parallel processing cannot be realized. Mapping a simulation onto a message-passing architecture is especially difficult when the computational workload dynamically changes as a function of time and space; this is exactly the situation faced by battlefield simulations. This paper studies an approach where the simulated battlefield domain is first partitioned into many regions of equal size; typically there are more regions than processors. The regions are then assigned to processors; a processor is responsible for performing all simulation activity associated with the regions. The assignment algorithm is quite simple and attempts to balance load by exploiting locality of workload intensity. The performance of this technique is studied on a simple battlefield simulation implemented on the Flex/32 multiprocessor. Measurements show that the proposed method achieves reasonable processor efficiencies. Furthermore, the method shows promise for use in dynamic remapping of the simulation.

  3. Message passing with queues and channels

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Dozsa, Gabor J; Heidelberger, Philip; Kumar, Sameer

    In an embodiment, a send thread receives an identifier that identifies a destination node and a pointer to data. The send thread creates a first send request in response to the receipt of the identifier and the data pointer. The send thread selects a selected channel from among a plurality of channels. The selected channel comprises a selected hand-off queue and an identification of a selected message unit. Each of the channels identifies a different message unit. The selected hand-off queue is randomly accessible. If the selected hand-off queue contains an available entry, the send thread adds the first sendmore » request to the selected hand-off queue. If the selected hand-off queue does not contain an available entry, the send thread removes a second send request from the selected hand-off queue and sends the second send request to the selected message unit.« less

  4. Concurrent hypercube system with improved message passing

    NASA Technical Reports Server (NTRS)

    Peterson, John C. (Inventor); Tuazon, Jesus O. (Inventor); Lieberman, Don (Inventor); Pniel, Moshe (Inventor)

    1989-01-01

    A network of microprocessors, or nodes, are interconnected in an n-dimensional cube having bidirectional communication links along the edges of the n-dimensional cube. Each node's processor network includes an I/O subprocessor dedicated to controlling communication of message packets along a bidirectional communication link with each end thereof terminating at an I/O controlled transceiver. Transmit data lines are directly connected from a local FIFO through each node's communication link transceiver. Status and control signals from the neighboring nodes are delivered over supervisory lines to inform the local node that the neighbor node's FIFO is empty and the bidirectional link between the two nodes is idle for data communication. A clocking line between neighbors, clocks a message into an empty FIFO at a neighbor's node and vica versa. Either neighbor may acquire control over the bidirectional communication link at any time, and thus each node has circuitry for checking whether or not the communication link is busy or idle, and whether or not the receive FIFO is empty. Likewise, each node can empty its own FIFO and in turn deliver a status signal to a neighboring node indicating that the local FIFO is empty. The system includes features of automatic message rerouting, block message transfer and automatic parity checking and generation.

  5. Developing and Pretesting a Text Messaging Program for Health Behavior Change: Recommended Steps.

    PubMed

    Abroms, Lorien C; Whittaker, Robyn; Free, Caroline; Mendel Van Alstyne, Judith; Schindler-Ruwisch, Jennifer M

    2015-12-21

    A growing body of evidence demonstrates that text messaging-based programs (short message service [SMS]) on mobile phones can help people modify health behaviors. Most of these programs have consisted of automated and sometimes interactive text messages that guide a person through the process of behavior change. This paper provides guidance on how to develop text messaging programs aimed at changing health behaviors. Based on their collective experience in designing, developing, and evaluating text messaging programs and a review of the literature, the authors drafted the guide. One author initially drafted the guide and the others provided input and review. Steps for developing a text messaging program include conducting formative research for insights into the target audience and health behavior, designing the text messaging program, pretesting the text messaging program concept and messages, and revising the text messaging program. The steps outlined in this guide may help in the development of SMS-based behavior change programs.

  6. Effective Compiler Error Message Enhancement for Novice Programming Students

    ERIC Educational Resources Information Center

    Becker, Brett A.; Glanville, Graham; Iwashima, Ricardo; McDonnell, Claire; Goslin, Kyle; Mooney, Catherine

    2016-01-01

    Programming is an essential skill that many computing students are expected to master. However, programming can be difficult to learn. Successfully interpreting compiler error messages (CEMs) is crucial for correcting errors and progressing toward success in programming. Yet these messages are often difficult to understand and pose a barrier to…

  7. Automated Performance Prediction of Message-Passing Parallel Programs

    NASA Technical Reports Server (NTRS)

    Block, Robert J.; Sarukkai, Sekhar; Mehra, Pankaj; Woodrow, Thomas S. (Technical Monitor)

    1995-01-01

    The increasing use of massively parallel supercomputers to solve large-scale scientific problems has generated a need for tools that can predict scalability trends of applications written for these machines. Much work has been done to create simple models that represent important characteristics of parallel programs, such as latency, network contention, and communication volume. But many of these methods still require substantial manual effort to represent an application in the model's format. The NIK toolkit described in this paper is the result of an on-going effort to automate the formation of analytic expressions of program execution time, with a minimum of programmer assistance. In this paper we demonstrate the feasibility of our approach, by extending previous work to detect and model communication patterns automatically, with and without overlapped computations. The predictions derived from these models agree, within reasonable limits, with execution times of programs measured on the Intel iPSC/860 and Paragon. Further, we demonstrate the use of MK in selecting optimal computational grain size and studying various scalability metrics.

  8. Relationship between internal medicine program board examination pass rates, accreditation standards, and program size.

    PubMed

    Falcone, John L; Gonzalo, Jed D

    2014-01-19

    To determine Internal Medicine residency program compliance with the Accreditation Council for Graduate Medical Education 80% pass-rate standard and the correlation between residency program size and performance on the American Board of Internal Medicine Certifying Examination. Using a cross-sectional study design from 2010-2012 American Board of Internal Medicine Certifying Examination data of all Internal Medicine residency pro-grams, comparisons were made between program pass rates to the Accreditation Council for Graduate Medical Education pass-rate standard. To assess the correlation between program size and performance, a Spearman's rho was calculated. To evaluate program size and its relationship to the pass-rate standard, receiver operative characteristic curves were calculated. Of 372 Internal Medicine residency programs, 276 programs (74%) achieved a pass rate of =80%, surpassing the Accreditation Council for Graduate Medical Education minimum standard. A weak correlation was found between residency program size and pass rate for the three-year period (p=0.19, p<0.001). The area underneath the receiver operative characteristic curve was 0.69 (95% Confidence Interval [0.63-0.75]), suggesting programs with less than 12 examinees/year are less likely to meet the minimum Accreditation Council for Graduate Medical Education pass-rate standard (sensitivity 63.8%, specificity 60.4%, positive predictive value 82.2%, p<0.001). Although a majority of Internal Medicine residency programs complied with Accreditation Council for Graduate Medical Education pass-rate standards, a quarter of the programs failed to meet this requirement. Program size is positively but weakly associated with American Board of Internal Medicine Certifying Examination performance, suggesting other unidentified variables significantly contribute to program performance.

  9. Unpacking the performance of a mobile health information messaging program for mothers (MomConnect) in South Africa: evidence on program reach and messaging exposure

    PubMed Central

    Dane, Pierre; Copley, Charles J; Pienaar, Cara; Parsons, Annie Neo; Engelhard, Matt; Woods, David; Bekker, Marcha; Benjamin, Peter; Pillay, Yogan; Barron, Peter; Mohan, Diwakar

    2018-01-01

    Despite calls to address broader evidence gaps in linking digital technologies to outcome and impact level health indicators, limited attention has been paid to measuring processes pertaining to the performance of programs. In this paper, we assess the program reach and message exposure of a mobile health information messaging program for mothers (MomConnect) in South Africa. In this descriptive study, we draw from system generated data to measure exposure to the program through registration attempts and conversions, message delivery, opt-outs and drop-outs. Using a logit model, we additionally explore determinants for early registration, opt-outs and drop-outs. From August 2014 to April 2017, 1 159 431 women were registered to MomConnect; corresponding to half of women attending antenatal care 1 (ANC1) and nearly 60% of those attending ANC1 estimated to own a mobile phone. In 2016, 26% of registrations started to get women onto MomConnect did not succeed. If registration attempts were converted to successful registrations, coverage of ANC1 attendees would have been 74% in 2016 and 86% in 2017. When considered as percentage of ANC1 attendees with access to a mobile phone, addressing conversion challenges bring registration coverage to an estimated 83%–89% in 2016 and 97%–100% in 2017. Among women registered, nearly 80% of expected short messaging service messages were received. While registration coverage and message delivery success rates exceed those observed for mobile messaging programs elsewhere, study findings highlight opportunities for program improvement and reinforce the need for rigorous and continuous monitoring of delivery systems. PMID:29713510

  10. Unpacking the performance of a mobile health information messaging program for mothers (MomConnect) in South Africa: evidence on program reach and messaging exposure.

    PubMed

    LeFevre, Amnesty E; Dane, Pierre; Copley, Charles J; Pienaar, Cara; Parsons, Annie Neo; Engelhard, Matt; Woods, David; Bekker, Marcha; Benjamin, Peter; Pillay, Yogan; Barron, Peter; Seebregts, Christopher John; Mohan, Diwakar

    2018-01-01

    Despite calls to address broader evidence gaps in linking digital technologies to outcome and impact level health indicators, limited attention has been paid to measuring processes pertaining to the performance of programs. In this paper, we assess the program reach and message exposure of a mobile health information messaging program for mothers (MomConnect) in South Africa. In this descriptive study, we draw from system generated data to measure exposure to the program through registration attempts and conversions, message delivery, opt-outs and drop-outs. Using a logit model, we additionally explore determinants for early registration, opt-outs and drop-outs. From August 2014 to April 2017, 1 159 431 women were registered to MomConnect; corresponding to half of women attending antenatal care 1 (ANC1) and nearly 60% of those attending ANC1 estimated to own a mobile phone. In 2016, 26% of registrations started to get women onto MomConnect did not succeed. If registration attempts were converted to successful registrations, coverage of ANC1 attendees would have been 74% in 2016 and 86% in 2017. When considered as percentage of ANC1 attendees with access to a mobile phone, addressing conversion challenges bring registration coverage to an estimated 83%-89% in 2016 and 97%-100% in 2017. Among women registered, nearly 80% of expected short messaging service messages were received. While registration coverage and message delivery success rates exceed those observed for mobile messaging programs elsewhere, study findings highlight opportunities for program improvement and reinforce the need for rigorous and continuous monitoring of delivery systems.

  11. What it Takes to Get Passed On: Message Content, Style, and Structure as Predictors of Retransmission in the Boston Marathon Bombing Response

    PubMed Central

    Sutton, Jeannette; Gibson, C. Ben; Spiro, Emma S.; League, Cedar; Fitzhugh, Sean M.; Butts, Carter T.

    2015-01-01

    Message retransmission is a central aspect of information diffusion. In a disaster context, the passing on of official warning messages by members of the public also serves as a behavioral indicator of message salience, suggesting that particular messages are (or are not) perceived by the public to be both noteworthy and valuable enough to share with others. This study provides the first examination of terse message retransmission of official warning messages in response to a domestic terrorist attack, the Boston Marathon Bombing in 2013. Using messages posted from public officials’ Twitter accounts that were active during the period of the Boston Marathon bombing and manhunt, we examine the features of messages that are associated with their retransmission. We focus on message content, style, and structure, as well as the networked relationships of message senders to answer the question: what characteristics of a terse message sent under conditions of imminent threat predict its retransmission among members of the public? We employ a negative binomial model to examine how message characteristics affect message retransmission. We find that, rather than any single effect dominating the process, retransmission of official Tweets during the Boston bombing response was jointly influenced by various message content, style, and sender characteristics. These findings suggest the need for more work that investigates impact of multiple factors on the allocation of attention and on message retransmission during hazard events. PMID:26295584

  12. Message passing with queues and channels

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Dozsa, Gabor J; Heidelberger, Philip; Kumar, Sameer

    In an embodiment, a reception thread receives a source node identifier, a type, and a data pointer from an application and, in response, creates a receive request. If the source node identifier specifies a source node, the reception thread adds the receive request to a fast-post queue. If a message received from a network does not match a receive request on a posted queue, a polling thread adds a receive request that represents the message to an unexpected queue. If the fast-post queue contains the receive request, the polling thread removes the receive request from the fast-post queue. If themore » receive request that was removed from the fast-post queue does not match the receive request on the unexpected queue, the polling thread adds the receive request that was removed from the fast-post queue to the posted queue. The reception thread and the polling thread execute asynchronously from each other.« less

  13. Users manual for the Chameleon parallel programming tools

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Gropp, W.; Smith, B.

    1993-06-01

    Message passing is a common method for writing programs for distributed-memory parallel computers. Unfortunately, the lack of a standard for message passing has hampered the construction of portable and efficient parallel programs. In an attempt to remedy this problem, a number of groups have developed their own message-passing systems, each with its own strengths and weaknesses. Chameleon is a second-generation system of this type. Rather than replacing these existing systems, Chameleon is meant to supplement them by providing a uniform way to access many of these systems. Chameleon`s goals are to (a) be very lightweight (low over-head), (b) be highlymore » portable, and (c) help standardize program startup and the use of emerging message-passing operations such as collective operations on subsets of processors. Chameleon also provides a way to port programs written using PICL or Intel NX message passing to other systems, including collections of workstations. Chameleon is tracking the Message-Passing Interface (MPI) draft standard and will provide both an MPI implementation and an MPI transport layer. Chameleon provides support for heterogeneous computing by using p4 and PVM. Chameleon`s support for homogeneous computing includes the portable libraries p4, PICL, and PVM and vendor-specific implementation for Intel NX, IBM EUI (SP-1), and Thinking Machines CMMD (CM-5). Support for Ncube and PVM 3.x is also under development.« less

  14. Implementing TCP/IP and a socket interface as a server in a message-passing operating system

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Hipp, E.; Wiltzius, D.

    1990-03-01

    The UNICOS 4.3BSD network code and socket transport interface are the basis of an explicit network server for NLTSS, a message passing operating system on the Cray YMP. A BSD socket user library provides access to the network server using an RPC mechanism. The advantages of this server methodology are its modularity and extensibility to migrate to future protocol suites (e.g. OSI) and transport interfaces. In addition, the network server is implemented in an explicit multi-tasking environment to take advantage of the Cray YMP multi-processor platform. 19 refs., 5 figs.

  15. Weighted community detection and data clustering using message passing

    NASA Astrophysics Data System (ADS)

    Shi, Cheng; Liu, Yanchen; Zhang, Pan

    2018-03-01

    Grouping objects into clusters based on the similarities or weights between them is one of the most important problems in science and engineering. In this work, by extending message-passing algorithms and spectral algorithms proposed for an unweighted community detection problem, we develop a non-parametric method based on statistical physics, by mapping the problem to the Potts model at the critical temperature of spin-glass transition and applying belief propagation to solve the marginals corresponding to the Boltzmann distribution. Our algorithm is robust to over-fitting and gives a principled way to determine whether there are significant clusters in the data and how many clusters there are. We apply our method to different clustering tasks. In the community detection problem in weighted and directed networks, we show that our algorithm significantly outperforms existing algorithms. In the clustering problem, where the data were generated by mixture models in the sparse regime, we show that our method works all the way down to the theoretical limit of detectability and gives accuracy very close to that of the optimal Bayesian inference. In the semi-supervised clustering problem, our method only needs several labels to work perfectly in classic datasets. Finally, we further develop Thouless-Anderson-Palmer equations which heavily reduce the computation complexity in dense networks but give almost the same performance as belief propagation.

  16. Approximate message passing for nonconvex sparse regularization with stability and asymptotic analysis

    NASA Astrophysics Data System (ADS)

    Sakata, Ayaka; Xu, Yingying

    2018-03-01

    We analyse a linear regression problem with nonconvex regularization called smoothly clipped absolute deviation (SCAD) under an overcomplete Gaussian basis for Gaussian random data. We propose an approximate message passing (AMP) algorithm considering nonconvex regularization, namely SCAD-AMP, and analytically show that the stability condition corresponds to the de Almeida-Thouless condition in spin glass literature. Through asymptotic analysis, we show the correspondence between the density evolution of SCAD-AMP and the replica symmetric (RS) solution. Numerical experiments confirm that for a sufficiently large system size, SCAD-AMP achieves the optimal performance predicted by the replica method. Through replica analysis, a phase transition between replica symmetric and replica symmetry breaking (RSB) region is found in the parameter space of SCAD. The appearance of the RS region for a nonconvex penalty is a significant advantage that indicates the region of smooth landscape of the optimization problem. Furthermore, we analytically show that the statistical representation performance of the SCAD penalty is better than that of \

  17. A Message Passing Approach to Side Chain Positioning with Applications in Protein Docking Refinement *

    PubMed Central

    Moghadasi, Mohammad; Kozakov, Dima; Mamonov, Artem B.; Vakili, Pirooz; Vajda, Sandor; Paschalidis, Ioannis Ch.

    2013-01-01

    We introduce a message-passing algorithm to solve the Side Chain Positioning (SCP) problem. SCP is a crucial component of protein docking refinement, which is a key step of an important class of problems in computational structural biology called protein docking. We model SCP as a combinatorial optimization problem and formulate it as a Maximum Weighted Independent Set (MWIS) problem. We then employ a modified and convergent belief-propagation algorithm to solve a relaxation of MWIS and develop randomized estimation heuristics that use the relaxed solution to obtain an effective MWIS feasible solution. Using a benchmark set of protein complexes we demonstrate that our approach leads to more accurate docking predictions compared to a baseline algorithm that does not solve the SCP. PMID:23515575

  18. Parallelization of the TRIGRS model for rainfall-induced landslides using the message passing interface

    USGS Publications Warehouse

    Alvioli, M.; Baum, R.L.

    2016-01-01

    We describe a parallel implementation of TRIGRS, the Transient Rainfall Infiltration and Grid-Based Regional Slope-Stability Model for the timing and distribution of rainfall-induced shallow landslides. We have parallelized the four time-demanding execution modes of TRIGRS, namely both the saturated and unsaturated model with finite and infinite soil depth options, within the Message Passing Interface framework. In addition to new features of the code, we outline details of the parallel implementation and show the performance gain with respect to the serial code. Results are obtained both on commercial hardware and on a high-performance multi-node machine, showing the different limits of applicability of the new code. We also discuss the implications for the application of the model on large-scale areas and as a tool for real-time landslide hazard monitoring.

  19. Streaming data analytics via message passing with application to graph algorithms

    DOE PAGES

    Plimpton, Steven J.; Shead, Tim

    2014-05-06

    The need to process streaming data, which arrives continuously at high-volume in real-time, arises in a variety of contexts including data produced by experiments, collections of environmental or network sensors, and running simulations. Streaming data can also be formulated as queries or transactions which operate on a large dynamic data store, e.g. a distributed database. We describe a lightweight, portable framework named PHISH which enables a set of independent processes to compute on a stream of data in a distributed-memory parallel manner. Datums are routed between processes in patterns defined by the application. PHISH can run on top of eithermore » message-passing via MPI or sockets via ZMQ. The former means streaming computations can be run on any parallel machine which supports MPI; the latter allows them to run on a heterogeneous, geographically dispersed network of machines. We illustrate how PHISH can support streaming MapReduce operations, and describe streaming versions of three algorithms for large, sparse graph analytics: triangle enumeration, subgraph isomorphism matching, and connected component finding. Lastly, we also provide benchmark timings for MPI versus socket performance of several kernel operations useful in streaming algorithms.« less

  20. Neural correlates of message tailoring and self-relatedness in smoking cessation programming.

    PubMed

    Chua, Hannah Faye; Liberzon, Israel; Welsh, Robert C; Strecher, Victor J

    2009-01-15

    Smoking leads to illnesses including addiction, cancer, and cardiovascular and respiratory diseases. Different intervention programs have become available. In the past decade, providing tailored smoking cessation messages has been shown to be more effective in inducing smoking cessation than one-size-fits-all interventions. However, little is known about the brain responses of smokers when they receive tailored smoking cessation messages. A neuroimaging study using blocked and event-related designs examined neural activity in 24 smokers exposed to high-tailored and low-tailored smoking cessation messages. In both blocked and event-related conditions, rostral medial prefrontal cortex and precuneus/posterior cingulate were engaged more during the processing of high-tailored smoking cessation messages than low-tailored smoking cessation messages. The activation patterns of smokers to tailored cessation messages show involvement of brain areas commonly implicated in self-related processing. Results seem to add support to the suggested role of self-relevance in tailored cessation programs, where previous studies have shown a potential mediating role of self-relevance on smoking abstinence. The findings are relevant to understanding the cognitive mechanisms underlying tailored message processing and might point to new directions for testing response to health communications programming.

  1. Media's Moral Messages: Assessing Perceptions of Moral Content in Television Programming

    ERIC Educational Resources Information Center

    Glover, Rebecca J.; Garmon, Lance C.; Hull, Darrell M.

    2011-01-01

    This study extends the examination of moral content in the media by exploring moral messages in television programming and viewer characteristics predictive of the ability to perceive such messages. Generalisability analyses confirmed the reliability of the Media's Moral Messages (MMM) rating form for analysing programme content and the existence…

  2. Computer-aided programming for message-passing system; Problems and a solution

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Wu, M.Y.; Gajski, D.D.

    1989-12-01

    As the number of processors and the complexity of problems to be solved increase, programming multiprocessing systems becomes more difficult and error-prone. Program development tools are necessary since programmers are not able to develop complex parallel programs efficiently. Parallel models of computation, parallelization problems, and tools for computer-aided programming (CAP) are discussed. As an example, a CAP tool that performs scheduling and inserts communication primitives automatically is described. It also generates the performance estimates and other program quality measures to help programmers in improving their algorithms and programs.

  3. Design Considerations in Developing a Text Messaging Program Aimed at Smoking Cessation

    PubMed Central

    Holtrop, Jodi Summers; Bağci Bosi, A Tülay; Emri, Salih

    2012-01-01

    Background Cell phone text messaging is gaining increasing recognition as an important tool that can be harnessed for prevention and intervention programs across a wide variety of health research applications. Despite the growing body of literature reporting positive outcomes, very little is available about the design decisions that scaffold the development of text messaging-based health interventions. What seems to be missing is documentation of the thought process of investigators in the initial stages of protocol and content development. This omission is of particular concern because many researchers seem to view text messaging as the intervention itself instead of simply a delivery mechanism. Certainly, aspects of this technology may increase participant engagement. Like other interventions, however, the content is a central driver of the behavior change. Objective To address this noted gap in the literature, we discuss the protocol decisions and content development for SMS Turkey (or Cebiniz birakin diyor in Turkish), a smoking cessation text messaging program for adult smokers in Turkey. Methods Content was developed in English and translated into Turkish. Efforts were made to ensure that the protocol and content were grounded in evidence-based smoking cessation theory, while also reflective of the cultural aspects of smoking and quitting in Turkey. Results Methodological considerations included whether to provide cell phones and whether to reimburse participants for texting costs; whether to include supplementary intervention resources (eg, personal contact); and whether to utilize unidirectional versus bidirectional messaging. Program design considerations included how messages were tailored to the quitting curve and one’s smoking status after one’s quit date, the number of messages participants received per day, and over what period of time the intervention lasted. Conclusion The content and methods of effective smoking cessation quitline programs were

  4. Message passing for integrating and assessing renewable generation in a redundant power grid

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Zdeborova, Lenka; Backhaus, Scott; Chertkov, Michael

    2009-01-01

    A simplified model of a redundant power grid is used to study integration of fluctuating renewable generation. The grid consists of large number of generator and consumer nodes. The net power consumption is determined by the difference between the gross consumption and the level of renewable generation. The gross consumption is drawn from a narrow distribution representing the predictability of aggregated loads, and we consider two different distributions representing wind and solar resources. Each generator is connected to D consumers, and redundancy is built in by connecting R {le} D of these consumers to other generators. The lines are switchablemore » so that at any instance each consumer is connected to a single generator. We explore the capacity of the renewable generation by determining the level of 'firm' generation capacity that can be displaced for different levels of redundancy R. We also develop message-passing control algorithm for finding switch sellings where no generator is overloaded.« less

  5. Message passing interface and multithreading hybrid for parallel molecular docking of large databases on petascale high performance computing machines.

    PubMed

    Zhang, Xiaohua; Wong, Sergio E; Lightstone, Felice C

    2013-04-30

    A mixed parallel scheme that combines message passing interface (MPI) and multithreading was implemented in the AutoDock Vina molecular docking program. The resulting program, named VinaLC, was tested on the petascale high performance computing (HPC) machines at Lawrence Livermore National Laboratory. To exploit the typical cluster-type supercomputers, thousands of docking calculations were dispatched by the master process to run simultaneously on thousands of slave processes, where each docking calculation takes one slave process on one node, and within the node each docking calculation runs via multithreading on multiple CPU cores and shared memory. Input and output of the program and the data handling within the program were carefully designed to deal with large databases and ultimately achieve HPC on a large number of CPU cores. Parallel performance analysis of the VinaLC program shows that the code scales up to more than 15K CPUs with a very low overhead cost of 3.94%. One million flexible compound docking calculations took only 1.4 h to finish on about 15K CPUs. The docking accuracy of VinaLC has been validated against the DUD data set by the re-docking of X-ray ligands and an enrichment study, 64.4% of the top scoring poses have RMSD values under 2.0 Å. The program has been demonstrated to have good enrichment performance on 70% of the targets in the DUD data set. An analysis of the enrichment factors calculated at various percentages of the screening database indicates VinaLC has very good early recovery of actives. Copyright © 2013 Wiley Periodicals, Inc.

  6. Neural correlates of message tailoring and self-relatedness in smoking cessation programming

    PubMed Central

    Chua, Hannah Faye; Liberzon, Israel; Welsh, Robert C.; Strecher, Victor J.

    2011-01-01

    BACKGROUND Smoking leads to illnesses including addiction, cancer, and cardiovascular and respiratory diseases. Different intervention programs have become available. In the past decade, providing tailored smoking cessation messages has been shown to be more effective in inducing smoking cessation than one-size-fits-all interventions. However, little is known about the brain responses of smokers when they receive tailored smoking cessation messages. METHODS A neuroimaging study using blocked and event-related designs examined neural activity in 24 smokers exposed to high-tailored and low-tailored smoking cessation messages. RESULTS: In both blocked and event-related conditions, rostral medial prefrontal cortex and precuneus/posterior cingulate were engaged more during the processing of high-tailored smoking cessation messages than low-tailored smoking cessation messages. CONCLUSION The activation patterns of smokers to tailored cessation messages show involvement of brain areas commonly implicated in self-related processing. Results seem to add support to the suggested role of self-relevance in tailored cessation programs, where previous studies have shown a potential mediating role of self-relevance on smoking abstinence. The findings are relevant to understanding the cognitive mechanisms underlying tailored message processing and may point to new directions for testing response to health communications programming. PMID:18926523

  7. Multiple node remote messaging

    DOEpatents

    Blumrich, Matthias A.; Chen, Dong; Gara, Alan G.; Giampapa, Mark E.; Heidelberger, Philip; Ohmacht, Martin; Salapura, Valentina; Steinmacher-Burow, Burkhard; Vranas, Pavlos

    2010-08-31

    A method for passing remote messages in a parallel computer system formed as a network of interconnected compute nodes includes that a first compute node (A) sends a single remote message to a remote second compute node (B) in order to control the remote second compute node (B) to send at least one remote message. The method includes various steps including controlling a DMA engine at first compute node (A) to prepare the single remote message to include a first message descriptor and at least one remote message descriptor for controlling the remote second compute node (B) to send at least one remote message, including putting the first message descriptor into an injection FIFO at the first compute node (A) and sending the single remote message and the at least one remote message descriptor to the second compute node (B).

  8. Case Study of the Denver Regional Transportation District Eco Pass Program

    DOT National Transportation Integrated Search

    1993-11-01

    This report documents the Denver Regional Transportation District (RTD) Eco Pass Program and evaluates its impacts. The Eco Pass is an annual, unlimited-use photo identification pass covering transportation on all RTD transit routes. Employers in the...

  9. Three-pass protocol scheme for bitmap image security by using vernam cipher algorithm

    NASA Astrophysics Data System (ADS)

    Rachmawati, D.; Budiman, M. A.; Aulya, L.

    2018-02-01

    Confidentiality, integrity, and efficiency are the crucial aspects of data security. Among the other digital data, image data is too prone to abuse of operation like duplication, modification, etc. There are some data security techniques, one of them is cryptography. The security of Vernam Cipher cryptography algorithm is very dependent on the key exchange process. If the key is leaked, security of this algorithm will collapse. Therefore, a method that minimizes key leakage during the exchange of messages is required. The method which is used, is known as Three-Pass Protocol. This protocol enables message delivery process without the key exchange. Therefore, the sending messages process can reach the receiver safely without fear of key leakage. The system is built by using Java programming language. The materials which are used for system testing are image in size 200×200 pixel, 300×300 pixel, 500×500 pixel, 800×800 pixel and 1000×1000 pixel. The result of experiments showed that Vernam Cipher algorithm in Three-Pass Protocol scheme could restore the original image.

  10. A contest to create media messages aimed at recruiting adolescents for stop smoking programs.

    PubMed

    Croghan, Ivana T; Campbell, Heather M; Patten, Christi A; Croghan, Gary A; Schroeder, Darrell R; Novotny, Paul J

    2004-10-01

    This project engaged adolescents in a contest to create advertising messages aimed at recruiting teens for stop smoking programs. Middle school students were invited to design a media message for television, radio, Web, or print (newspaper or billboard). Of 4,289 students in eight middle schools of Rochester, Minn., 265 (6.2%) developed 172 stop smoking messages. The quality of their work confirmed that teens can design media messages to encourage their smoking adolescent peers to enroll in a program to stop smoking.

  11. Message Design Guidelines For Screen-Based Programs.

    ERIC Educational Resources Information Center

    Rimar, G. I.

    1996-01-01

    Effective message design for screen-based computer or video instructional programs requires knowledge from many disciplines. Evaluates current conventions and suggests a new set of guidelines for screen-based designers. Discusses screen layout, highlighting and cueing, text font and style, text positioning, color, and graphical user interfaces for…

  12. HealthyhornsTXT: A Text-Messaging Program to Promote College Student Health and Wellness.

    PubMed

    Glowacki, Elizabeth M; Kirtz, Susan; Hughes Wagner, Jessica; Cance, Jessica Duncan; Barrera, Denise; Bernhardt, Jay M

    2018-01-01

    Text-messaging interventions positively affect health behaviors, but their use on college campuses has been limited. Text messaging serves as a relatively affordable way to communicate with large audiences and is one of the preferred modes of communication for young adults. This study examined the feasibility and acceptability of a campus-wide, health text-messaging program. The subscriber pool consisted of approximately 6,000 undergraduate students from a large, southern university. From that pool, 1,095 participants (64% female; 41% White) completed a posttest survey. Text messages covered a range of health topics and information about campus resources. Research was conducted from August through December 2015. Process data were collected throughout the semester; participants' attitudes were assessed via an online survey at the program's conclusion. Students demonstrated engagement with the messages throughout the semester as evidenced by replies to text-back keywords and clicks on website links embedded within messages. Messages about sleep, stress management, and hydration were considered most relevant. The majority of participants (61%) reported increased awareness regarding their health. Text-messaging interventions are a feasible strategy to improve college student health.

  13. Identifying an influential spreader from a single seed in complex networks via a message-passing approach

    NASA Astrophysics Data System (ADS)

    Min, Byungjoon

    2018-01-01

    Identifying the most influential spreaders is one of outstanding problems in physics of complex systems. So far, many approaches have attempted to rank the influence of nodes but there is still the lack of accuracy to single out influential spreaders. Here, we directly tackle the problem of finding important spreaders by solving analytically the expected size of epidemic outbreaks when spreading originates from a single seed. We derive and validate a theory for calculating the size of epidemic outbreaks with a single seed using a message-passing approach. In addition, we find that the probability to occur epidemic outbreaks is highly dependent on the location of the seed but the size of epidemic outbreaks once it occurs is insensitive to the seed. We also show that our approach can be successfully adapted into weighted networks.

  14. The design of multi-core DSP parallel model based on message passing and multi-level pipeline

    NASA Astrophysics Data System (ADS)

    Niu, Jingyu; Hu, Jian; He, Wenjing; Meng, Fanrong; Li, Chuanrong

    2017-10-01

    Currently, the design of embedded signal processing system is often based on a specific application, but this idea is not conducive to the rapid development of signal processing technology. In this paper, a parallel processing model architecture based on multi-core DSP platform is designed, and it is mainly suitable for the complex algorithms which are composed of different modules. This model combines the ideas of multi-level pipeline parallelism and message passing, and summarizes the advantages of the mainstream model of multi-core DSP (the Master-Slave model and the Data Flow model), so that it has better performance. This paper uses three-dimensional image generation algorithm to validate the efficiency of the proposed model by comparing with the effectiveness of the Master-Slave and the Data Flow model.

  15. Feasibility and Acceptability of a Text Messaging Program for Smoking Cessation in Israel.

    PubMed

    Abroms, Lorien; Hershcovitz, Ronit; Boal, Ashley; Levine, Hagai

    2015-08-01

    Text messaging programs on mobile phones have been shown to promote smoking cessation. This study investigated whether a text-messaging program for smoking cessation, adapted from QuitNowTXT, is feasible in Israel and acceptable to Israeli smokers. Participants (N = 38) were given a baseline assessment, enrolled in the adapted text messaging program, and followed-up with at 2 weeks and 4 weeks after their quit date. The authors used an intent-to-treat analysis and found that 23.7% of participants reported having quit smoking at the 4-week follow-up. Participants sent an average of 12.9 text replies during the study period, and the majority reported reading most or all of the texts. However, 34.2% of participants had unsubscribed by the 4-week follow-up. Moderate levels of satisfaction were reported; more than half agreed that they would recommend the program. Suggestions for improvement included adding advice by an expert counselor, website support, and increased customization. Results indicate that a text messaging smoking cessation program developed by modifying the content of QuitNowTXT is feasible and could be acceptable to smokers in Israel. The experience adapting and pilot testing the program can serve as a model for using QuitNowTXT to develop and implement such programs in other countries.

  16. Methods to assess youth engagement in a text messaging supplement to an effective teen pregnancy program.

    PubMed

    Devine, Sharon; Leeds, Caroline; Shlay, Judith C; Leytem, Amber; Beum, Robert; Bull, Sheana

    2015-08-01

    Youth are prolific users of cell phone minutes and text messaging. Numerous programs using short message service text messaging (SMS) have been employed to help improve health behaviors and health outcomes. However, we lack information on whether and what type of interaction or engagement with SMS program content is required to realize any benefit. We explored youth engagement with an automated SMS program designed to supplement a 25-session youth development program with demonstrated efficacy for reductions in teen pregnancy. Using two years of program data, we report on youth participation in design of message content and response frequency to messages among youth enrolled in the intervention arm of a randomized controlled trial (RCT) as one indicator of engagement. There were 221 youth between the ages of 14-18 enrolled over two years in the intervention arm of the RCT. Just over half (51%) were female; 56% were Hispanic; and 27% African American. Youth were sent 40,006 messages of which 16,501 were considered bi-directional where youth were asked to text a response. Four-fifths (82%) responded at least once to a text. We found variations in response frequency by gender, age, and ethnicity. The most popular types of messages youth responded to include questions and quizzes. The first two months of the program in each year had the highest response frequency. An important next step is to assess whether higher response to SMS results in greater efficacy. This future work can facilitate greater attention to message design and content to ensure messages are engaging for the intended audience. Copyright © 2015 Elsevier Inc. All rights reserved.

  17. Development of a Culturally Tailored Text Message Maternal Health Program: TextMATCH

    PubMed Central

    Whittaker, Robyn; Bartley, Hannah; Connor, Augusta; Chen, Ruyan; Ross, Mairead; McCool, Judith

    2017-01-01

    Background Mobile phones are increasingly being used to deliver health information and health services globally. Mobile health (mHealth) interventions may be well-suited for minority groups with greater barriers to accessing traditional health services. However, little has been written about the process of culturally adapting interventions for multiple ethnic and cultural minorities within a population. Objective This study describes the process of developing a culturally tailored text message-based maternal health program (TextMATCH: Text for MATernal and Child Health) for Māori, Pacific, Asian, and South Asian families living in New Zealand. We report on engagement and acceptability of the TextMATCH program. Methods Program data was examined to describe engagement with the program 18 months after implementation. Telephone interviews were conducted with a sample of participants who consented to provide feedback on acceptability and relevance of the program. Results A total of 1404 participants enrolled in TextMATCH over 18 months, with 18.52% (260) actively opting out at some point (after 0 to 17 months of messages). It was found that 356 (70.9%) of the 502 eligible participants actively switched from the initial pregnancy program to the baby program after delivery. Phone interviews were conducted with 29 participants including 6 who had withdrawn (duration of program from 3 to 16 months). Only 2 participants reported that the program was not useful, with the remainder rating the usefulness of messages positively (average 4.24 out of 5). All participants stated that the messages were relevant, culturally appropriate, and easy to understand. Most were happy with the specific advice and the language options provided. Conclusions We have demonstrated the importance of an intensive approach to the development of a culturally adapted and tailored mHealth program for multiple different cultural minority groups within our population. PMID:28428159

  18. Passing crisis and emergency risk communications: the effects of communication channel, information type, and repetition.

    PubMed

    Edworthy, Judy; Hellier, Elizabeth; Newbold, Lex; Titchener, Kirsteen

    2015-05-01

    Three experiments explore several factors which influence information transmission when warning messages are passed from person to person. In Experiment 1, messages were passed down chains of participants using five different modes of communication. Written communication channels resulted in more accurate message transmission than verbal. In addition, some elements of the message endured further down the chain than others. Experiment 2 largely replicated these effects and also demonstrated that simple repetition of a message eliminated differences between written and spoken communication. In a final field experiment, chains of participants passed information however they wanted to, with the proviso that half of the chains could not use telephones. Here, the lack of ability to use a telephone did not affect accuracy, but did slow down the speed of transmission from the recipient of the message to the last person in the chain. Implications of the findings for crisis and emergency risk communication are discussed. Copyright © 2015 Elsevier Ltd and The Ergonomics Society. All rights reserved.

  19. Scalable Replay with Partial-Order Dependencies for Message-Logging Fault Tolerance

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Lifflander, Jonathan; Meneses, Esteban; Menon, Harshita

    2014-09-22

    Deterministic replay of a parallel application is commonly used for discovering bugs or to recover from a hard fault with message-logging fault tolerance. For message passing programs, a major source of overhead during forward execution is recording the order in which messages are sent and received. During replay, this ordering must be used to deterministically reproduce the execution. Previous work in replay algorithms often makes minimal assumptions about the programming model and application in order to maintain generality. However, in many cases, only a partial order must be recorded due to determinism intrinsic in the code, ordering constraints imposed bymore » the execution model, and events that are commutative (their relative execution order during replay does not need to be reproduced exactly). In this paper, we present a novel algebraic framework for reasoning about the minimum dependencies required to represent the partial order for different concurrent orderings and interleavings. By exploiting this theory, we improve on an existing scalable message-logging fault tolerance scheme. The improved scheme scales to 131,072 cores on an IBM BlueGene/P with up to 2x lower overhead than one that records a total order.« less

  20. Relationship Between Physician Assistant Program Length and Physician Assistant National Certifying Examination Pass Rates.

    PubMed

    Colletti, Thomas P; Salisbury, Helen; Hertelendy, Attila J; Tseng, Tina

    2016-03-01

    This study was conducted to examine the relationship between physician assistant (PA) educational program length and PA programs' 5-year average Physician Assistant National Certifying Examination (PANCE) first-time pass rates. This was a retrospective correlational study that analyzed previously collected data from a nonprobability purposive sample of accredited PA program Web sites. Master's level PA programs (n = 108) in the United States with published average PANCE scores for 5 consecutive classes were included. Provisional and probationary programs were excluded (n = 4). Study data were not normally distributed per the Kolmogorov-Smirnov test, P = .00. There was no relationship between program length and PANCE pass rates, ρ (108) = -0.04, P = .68. Further analyses examining a possible relationship between program phase length (didactic and clinical) and PANCE pass rates also demonstrated no differences (ρ [107] = -0.05, P = .60 and ρ [107] = 0.02, P = .80, respectively). The results of this study suggest that shorter length PA programs perform similarly to longer programs in preparing students to pass the PANCE. In light of rapid expansion of PA educational programs, educators may want to consider these findings when planning the length of study for new and established programs.

  1. Feasibility and Acceptability of a Text Message-Based Smoking Cessation Program for Young Adults in Lima, Peru: Pilot Study

    PubMed Central

    Zevallos, Karine; Samolski, M Reuven; Requena, David; Velarde, Chaska; Briceño, Patricia; Piazza, Marina; Ybarra, Michele L

    2017-01-01

    Background In Peru’s urban communities, tobacco smoking generally starts during adolescence and smoking prevalence is highest among young adults. Each year, many attempt to quit, but access to smoking cessation programs is limited. Evidence-based text messaging smoking cessation programs are an alternative that has been successfully implemented in high-income countries, but not yet in middle- and low-income countries with limited tobacco control policies. Objective The objective was to assess the feasibility and acceptability of an short message service (SMS) text message-based cognitive behavioral smoking cessation program for young adults in Lima, Peru. Methods Recruitment included using flyers and social media ads to direct young adults interested in quitting smoking to a website where interested participants completed a Google Drive survey. Inclusion criteria were being between ages 18 and 25 years, smoking at least four cigarettes per day at least 6 days per week, willing to quit in the next 30 days, owning a mobile phone, using SMS text messaging at least once in past year, and residing in Lima. Participants joined one of three phases: (1) focus groups and in-depth interviews whose feedback was used to develop the SMS text messages, (2) validating the SMS text messages, and (3) a pilot of the SMS text message-based smoking cessation program to test its feasibility and acceptability among young adults in Lima. The outcome measures included adherence to the SMS text message-based program, acceptability of content, and smoking abstinence self-report on days 2, 7, and 30 after quitting. Results Of 639 participants who completed initial online surveys, 42 met the inclusion criteria and 35 agreed to participate (focus groups and interviews: n=12; validate SMS text messages: n=8; program pilot: n=15). Common quit practices and beliefs emerged from participants in the focus groups and interviews informed the content, tone, and delivery schedule of the messages used

  2. A Struggle for Dominance: Relational Communication Messages in Television Programming.

    ERIC Educational Resources Information Center

    Barbatsis, Gretchen S.; And Others

    Television's messages about sex role behavior were analyzed by collecting and coding spot samples of the ten top ranked programs in prime viewing time and proportionate numbers of daytime soap operas and Saturday morning children's programs. The content analysis was based on a relational coding system developed to assess interpersonal…

  3. Impact of Online Summer Mathematics Bridge Program on Placement Scores and Pass Rates

    ERIC Educational Resources Information Center

    Frost, Jodi L.; Dreher, J. P.

    2017-01-01

    An online four-week summer mathematics bridge program was implemented at a Midwest university with historically low pass rates in College Algebra and Remedial Mathematics. Students who completed the four week program significantly increased their mathematics placement exam scores. These students also had a higher pass rate in their initial college…

  4. The effect of Medicaid wage pass-through programs on the wages of direct care workers.

    PubMed

    Baughman, Reagan A; Smith, Kristin

    2010-05-01

    Despite growing demand for nursing and home health care as the US population ages, compensation levels in the low-skill nursing labor market that provides the bulk of long-term care remain quite low. The challenge facing providers of long-term care is that Medicaid reimbursement rates for nursing home and home health care severely restrict the wage growth that is necessary to attract workers, resulting in high turnover and labor shortages. Almost half of US states have responded by enacting "pass-through" provisions in their Medicaid programs, channeling additional long-term care funding directly to compensation of lower-skill nursing workers. We test the effect of Medicaid wage pass-through programs on hourly wages for direct care workers. We estimate several specifications of wage models using employment data from the 1996 and 2001 panels of the Survey of Income and Program Participation for nursing, home health, and personal care aides. The effect of pass-through programs is identified by an indicator variable for states with programs; 20 states adopted pass-throughs during the sample period. Workers in states with pass-through programs earn as much as 12% more per hour than workers in other states after those programs are implemented. Medicaid wage pass-through programs appear to be a viable policy option for raising compensation levels of direct care workers, with an eye toward improving recruitment and retention in long-term care settings.

  5. Implementation of a Message Passing Interface into a Cloud-Resolving Model for Massively Parallel Computing

    NASA Technical Reports Server (NTRS)

    Juang, Hann-Ming Henry; Tao, Wei-Kuo; Zeng, Xi-Ping; Shie, Chung-Lin; Simpson, Joanne; Lang, Steve

    2004-01-01

    The capability for massively parallel programming (MPP) using a message passing interface (MPI) has been implemented into a three-dimensional version of the Goddard Cumulus Ensemble (GCE) model. The design for the MPP with MPI uses the concept of maintaining similar code structure between the whole domain as well as the portions after decomposition. Hence the model follows the same integration for single and multiple tasks (CPUs). Also, it provides for minimal changes to the original code, so it is easily modified and/or managed by the model developers and users who have little knowledge of MPP. The entire model domain could be sliced into one- or two-dimensional decomposition with a halo regime, which is overlaid on partial domains. The halo regime requires that no data be fetched across tasks during the computational stage, but it must be updated before the next computational stage through data exchange via MPI. For reproducible purposes, transposing data among tasks is required for spectral transform (Fast Fourier Transform, FFT), which is used in the anelastic version of the model for solving the pressure equation. The performance of the MPI-implemented codes (i.e., the compressible and anelastic versions) was tested on three different computing platforms. The major results are: 1) both versions have speedups of about 99% up to 256 tasks but not for 512 tasks; 2) the anelastic version has better speedup and efficiency because it requires more computations than that of the compressible version; 3) equal or approximately-equal numbers of slices between the x- and y- directions provide the fastest integration due to fewer data exchanges; and 4) one-dimensional slices in the x-direction result in the slowest integration due to the need for more memory relocation for computation.

  6. Patient Perspectives on a Text Messaging Program to Support Asthma Management: A Qualitative Study.

    PubMed

    Doyle, Reina; Albright, Karen; Hurley, Laura P; Chávez, Catia; Stowell, Melanie; Dircksen, Suzanne; Havranek, Edward P; Anderson, Mark

    2018-05-01

    This study investigated participants' acceptance of a short messaging service (SMS) intervention designed to support asthma management, including suggestions regarding program delivery and message content. Individual and group interviews were conducted with patients from a safety-net health care system in Denver, Colorado. Eligible participants were English or Spanish speakers between the ages of 13 and 40 years, with diagnosed persistent asthma. All individual and group interviews were digitally recorded, transcribed, translated from Spanish to English (where applicable), and analyzed for thematic content by experienced analysts using established qualitative content techniques. The qualitative software package ATLAS.ti was used for data analysis and management. This study included a total of 43 participants. In general, participants were receptive toward the SMS program and supported the use of tailored and interactive messages. Adolescents supported the idea of enhancing care by sending messages to a support person, such as a parent or guardian. However, adults were less receptive toward this idea. Participants also preferred directive educational messages and cues to action, while general messages reminding them of their asthma diagnosis were viewed less favorably. The results from this study will inform a randomized control trial evaluating the efficacy of the SMS intervention.

  7. PENN PASS: a program for graduates of foreign dental schools.

    PubMed

    Berthold, P; Lopez, N

    1994-01-01

    An increasing number of graduates of foreign dental schools who enroll in advanced standing programs to qualify for licensure calls for dental schools to be prepared to handle not only the curricular demands but also the growing cultural diversity among its student population. The "reeducation" of this student group not only meets the need of foreign dentists for an American degree but may also provide health professionals to service various ethnic populations whose language and culture they are able to understand and identify with. A survey of students and graduates of a two-year Program for Advanced Standing Students (PASS) for graduates of foreign dental schools representing 34 countries aimed to arrive at an understanding of this student group through characterization of the foreign dentists and identification of their attitudes and feelings toward various aspects of the program, the school and faculty and their experience of stress. This report includes description of the distinctive features of the program which cater to specific needs and concerns of this non-traditional group of dental students. PASS students are accepted on the basis of their grades in dental school in home country, scores in the National Dental Board Examination Part I, Test of English as Foreign Language (TOEFL), and ratings in personal interviews. They complete an intensive summer program consisting of didactic and laboratory courses which prepares them for integration with four-year students for the last two years of didactic and clinical curriculum. Cultural diversity seminars, a special English class, PASS class meetings and seminars are unique additions to their program and aim to assist them adjust to the educational, social and cultural systems in an American school. Results of the survey show a majority of the PASS students feel that they are part of the school and that there is someone in the school whom they can approach for problems. An understanding of their ethnic and

  8. A volunteer citizen-servant pilot program using tailored messages to empower Alabamians to live healthier lives.

    PubMed

    McMillan, Libba R; Smith-Hendricks, Constance; Gore, Teresa

    2010-01-01

    This study examines the use of tailored messages as a learning tool to volunteer citizen servants to promote health and empower Alabama citizens to live healthier lives. Descriptive data of formative and summative questionnaires were analyzed from convenience sampling in this study, which encompassed 12 months. Researchers formed unique partnerships among community service organizations (CSO), faith-based organizations (FBO), author affiliated school of nursing, and community organizations to implement Healthy People 2010 goals. The program provided "health information stations" to focus on delivery of monthly culturally relevant messages to meet the health needs in the community. This program provided tailored health messages to 11 CSO and FBO. Outcome measures include an increase in health promotion knowledge, desire for furtherance and expansion of programs, and improved contacts within the community. The results from this study provide achievement of overall program goals, suggestions for improved evaluation strategies, implementation plans, and examples of specific topical messages. © 2010 Wiley Periodicals, Inc.

  9. Promoting Quality of Program Delivery via an Internet Message Delivery System

    ERIC Educational Resources Information Center

    Bishop, Dana C.; Dusenbury, Linda; Pankratz, Melinda M.; Hansen, William B.

    2013-01-01

    This article presents results from a study that evaluated an online message system designed to improve the delivery of prevention programs. We conducted a quasi-experimental study with 32 agencies and schools that implemented substance use prevention programs and examined differences between the comparison and intervention groups. We also examined…

  10. Communicating with the workforce during emergencies: developing an employee text messaging program in a local public health setting.

    PubMed

    Karasz, Hilary N; Bogan, Sharon; Bosslet, Lindsay

    2014-01-01

    Short message service (SMS) text messaging can be useful for communicating information to public health employees and improving workforce situational awareness during emergencies. We sought to understand how the 1,500 employees at Public Health--Seattle & King County, Washington, perceived barriers to and benefits of participation in a voluntary, employer-based SMS program. Based on employee feedback, we developed the system, marketed it, and invited employees to opt in. The system was tested during an ice storm in January 2012. Employee concerns about opting into an SMS program included possible work encroachment during non-work time and receiving excessive irrelevant messages. Employees who received messages during the weather event reported high levels of satisfaction and perceived utility from the program. We conclude that text messaging is a feasible form of communication with employees during emergencies. Care should be taken to design and deploy a program that maximizes employee satisfaction.

  11. Assessing the National Cancer Institute's SmokefreeMOM Text-Messaging Program for Pregnant Smokers: Pilot Randomized Trial.

    PubMed

    Abroms, Lorien C; Chiang, Shawn; Macherelli, Laura; Leavitt, Leah; Montgomery, Margaret

    2017-10-03

    Automated text messages on mobile phones have been found to be effective for smoking cessation in adult smokers. This study aims to test the acceptability and feasibility of SmokefreeMOM, a national smoking cessation text-messaging program for pregnant smokers. Participants were recruited from prenatal care and randomized to receive SmokefreeMOM (n=55), an automated smoking cessation text-messaging program, or a control text message quitline referral (n=44). Participants were surveyed by phone at baseline and at 1 month and 3 months after enrollment. Results indicate that the SmokefreeMOM program was highly rated overall and rated more favorably than the control condition in its helpfulness at 3-month follow-up (P<.01) and in its frequency of messaging at both 1-month and 3-month follow-ups (P<.001, P<.01, respectively). Despite the presence of technical problems, the vast majority of intervention participants read all program messages, and few participants unsubscribed from the program. There were no significant differences between groups on the use of extra treatment resources or on smoking-related outcomes. However, at the 3-month follow-up, some outcomes favored the intervention group. SmokefreeMOM is acceptable for pregnant smokers. It is recommended that SmokefreeMOM be further refined and evaluated. Clinicaltrials.gov NCT02412956; https://clinicaltrials.gov/ct2/show/NCT02412956 (Archived by WebCite at http://www.webcitation.org/6tcmeRnbC). ©Lorien C Abroms, Shawn Chiang, Laura Macherelli, Leah Leavitt, Margaret Montgomery. Originally published in the Journal of Medical Internet Research (http://www.jmir.org), 03.10.2017.

  12. Corporate social marketing: message design to recruit program participants.

    PubMed

    Black, David R; Blue, Carolyn L; Coster, Daniel C; Chrysler, Lisa M

    2002-01-01

    To identify variables for a corporate social marketing (SM) health message based on the 4 Ps of SM in order to recruit future participants to an existing national, commercial, self-administered weight-loss program. A systematically evaluated, author-developed, 310-response survey was administered to a random sample of 270 respondents. A previously established research plan was used to empirically identify the audience segments and the "marketing mix" appropriate for the total sample and each segment. Tangible product, pertaining to the unique program features, should be emphasized rather than positive core product and outcome expectation related to use of the program.

  13. Comparing the OpenMP, MPI, and Hybrid Programming Paradigm on an SMP Cluster

    NASA Technical Reports Server (NTRS)

    Jost, Gabriele; Jin, Hao-Qiang; anMey, Dieter; Hatay, Ferhat F.

    2003-01-01

    Clusters of SMP (Symmetric Multi-Processors) nodes provide support for a wide range of parallel programming paradigms. The shared address space within each node is suitable for OpenMP parallelization. Message passing can be employed within and across the nodes of a cluster. Multiple levels of parallelism can be achieved by combining message passing and OpenMP parallelization. Which programming paradigm is the best will depend on the nature of the given problem, the hardware components of the cluster, the network, and the available software. In this study we compare the performance of different implementations of the same CFD benchmark application, using the same numerical algorithm but employing different programming paradigms.

  14. Communicating with the Workforce During Emergencies: Developing an Employee Text Messaging Program in a Local Public Health Setting

    PubMed Central

    Bogan, Sharon; Bosslet, Lindsay

    2014-01-01

    Short message service (SMS) text messaging can be useful for communicating information to public health employees and improving workforce situational awareness during emergencies. We sought to understand how the 1,500 employees at Public Health – Seattle & King County, Washington, perceived barriers to and benefits of participation in a voluntary, employer-based SMS program. Based on employee feedback, we developed the system, marketed it, and invited employees to opt in. The system was tested during an ice storm in January 2012. Employee concerns about opting into an SMS program included possible work encroachment during non-work time and receiving excessive irrelevant messages. Employees who received messages during the weather event reported high levels of satisfaction and perceived utility from the program. We conclude that text messaging is a feasible form of communication with employees during emergencies. Care should be taken to design and deploy a program that maximizes employee satisfaction. PMID:25355976

  15. Process evaluation of a mHealth program: lessons learned from Stop My Smoking USA, a text messaging-based smoking cessation program for young adults.

    PubMed

    Ybarra, Michele L; Holtrop, Jodi Summers; Prescott, Tonya L; Strong, David

    2014-11-01

    Report lessons learned in an RCT of Stop My Smoking (SMS) USA, a mHealth smoking cessation program for young adult smokers. 164 18-24-year-olds were recruited nationally, online in 2011. Program evaluation data were provided at 12-week post-Quit Day. (1) Inviting participants to complete a brief text messaging survey and then asking them to complete a longer online survey resulted in the highest response rate (89%). (2) The positive tone of program messages was the most commonly noted program strength. (3) Suggested improvements included more social connectivity and additional assistance overcoming stressful situations. (4) Half of intervention participants moved through the program linearly and half went through various paths that reflected multiple relapses. Suggestions to use pharmacotherapy resulted in 22% of heavy smokers to utilize it. Participant feedback provided concrete ways in which this and other young adult-focused interventions can improve messaging and program features to be even more salient. Future young adult mHealth interventions could: Integrate models that are flexible to different "paths" of behavior change; address stressful life events directly and comprehensively; integrate proactive messaging that promotes pharmacotherapy options; and use text messaging as a gateway to longer online surveys. Copyright © 2014 Elsevier Ireland Ltd. All rights reserved.

  16. Detecting and Preventing Sybil Attacks in Wireless Sensor Networks Using Message Authentication and Passing Method.

    PubMed

    Dhamodharan, Udaya Suriya Raj Kumar; Vayanaperumal, Rajamani

    2015-01-01

    Wireless sensor networks are highly indispensable for securing network protection. Highly critical attacks of various kinds have been documented in wireless sensor network till now by many researchers. The Sybil attack is a massive destructive attack against the sensor network where numerous genuine identities with forged identities are used for getting an illegal entry into a network. Discerning the Sybil attack, sinkhole, and wormhole attack while multicasting is a tremendous job in wireless sensor network. Basically a Sybil attack means a node which pretends its identity to other nodes. Communication to an illegal node results in data loss and becomes dangerous in the network. The existing method Random Password Comparison has only a scheme which just verifies the node identities by analyzing the neighbors. A survey was done on a Sybil attack with the objective of resolving this problem. The survey has proposed a combined CAM-PVM (compare and match-position verification method) with MAP (message authentication and passing) for detecting, eliminating, and eventually preventing the entry of Sybil nodes in the network. We propose a scheme of assuring security for wireless sensor network, to deal with attacks of these kinds in unicasting and multicasting.

  17. Detecting and Preventing Sybil Attacks in Wireless Sensor Networks Using Message Authentication and Passing Method

    PubMed Central

    Dhamodharan, Udaya Suriya Raj Kumar; Vayanaperumal, Rajamani

    2015-01-01

    Wireless sensor networks are highly indispensable for securing network protection. Highly critical attacks of various kinds have been documented in wireless sensor network till now by many researchers. The Sybil attack is a massive destructive attack against the sensor network where numerous genuine identities with forged identities are used for getting an illegal entry into a network. Discerning the Sybil attack, sinkhole, and wormhole attack while multicasting is a tremendous job in wireless sensor network. Basically a Sybil attack means a node which pretends its identity to other nodes. Communication to an illegal node results in data loss and becomes dangerous in the network. The existing method Random Password Comparison has only a scheme which just verifies the node identities by analyzing the neighbors. A survey was done on a Sybil attack with the objective of resolving this problem. The survey has proposed a combined CAM-PVM (compare and match-position verification method) with MAP (message authentication and passing) for detecting, eliminating, and eventually preventing the entry of Sybil nodes in the network. We propose a scheme of assuring security for wireless sensor network, to deal with attacks of these kinds in unicasting and multicasting. PMID:26236773

  18. A novel recruitment message to increase enrollment into a smoking cessation treatment program: preliminary results from a randomized trial.

    PubMed

    Schnoll, Robert A; Cappella, Joseph; Lerman, Caryn; Pinto, Angela; Patterson, Freda; Wileyto, E Paul; Bigman, Cabral; Leone, Frank

    2011-12-01

    Most smokers do not utilize approved interventions for nicotine dependence, reducing the probability of cessation. Smoking cessation programs typically use recruitment messages emphasizing the health threats of smoking. Augmenting this threat message by describing the genetic aspects of nicotine addiction may enhance enrollment into a cessation program. During telephone recruitment, 125 treatment-seeking smokers were randomized to receive by phone either a standard threat message or a threat plus genetic prime message and were offered open-label varenicline and counseling. There was a greater rate of enrollment into the cessation program for the threat plus genetic prime participants (51.7%) versus the threat-only participants (37.7%; p = .03). Smokers who self-identified from racial/ethnic minority groups were less likely to enroll in the cessation program (p = .01) versus smokers who self-identified as Caucasian. These preliminary data suggest that a simple, affordable, and transportable communication approach enhances enrollment of smokers into a smoking cessation program. A larger clinical trial to evaluate a genetic prime message for improving recruitment into smoking cessation programs is warranted.

  19. Stepwise Development a Text Messaging-Based Bullying Prevention Program for Middle School Students (BullyDown).

    PubMed

    Ybarra, Michele L; Prescott, Tonya L; Espelage, Dorothy L

    2016-06-13

    Bullying is a significant public health issue among middle school-aged youth. Current prevention programs have only a moderate impact. Cell phone text messaging technology (mHealth) can potentially overcome existing challenges, particularly those that are structural (e.g., limited time that teachers can devote to non-educational topics). To date, the description of the development of empirically-based mHealth-delivered bullying prevention programs are lacking in the literature. To describe the development of BullyDown, a text messaging-based bullying prevention program for middle school students, guided by the Social-Emotional Learning model. We implemented five activities over a 12-month period: (1) national focus groups (n=37 youth) to gather acceptability of program components; (2) development of content; (3) a national Content Advisory Team (n=9 youth) to confirm content tone; and (4) an internal team test of software functionality followed by a beta test (n=22 youth) to confirm the enrollment protocol and the feasibility and acceptability of the program. Recruitment experiences suggested that Facebook advertising was less efficient than using a recruitment firm to recruit youth nationally, and recruiting within schools for the pilot test was feasible. Feedback from the Content Advisory Team suggests a preference for 2-4 brief text messages per day. Beta test findings suggest that BullyDown is both feasible and acceptable: 100% of youth completed the follow-up survey, 86% of whom liked the program. Text messaging appears to be a feasible and acceptable delivery method for bullying prevention programming delivered to middle school students.

  20. CSlib, a library to couple codes via Client/Server messaging

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Plimpton, Steve

    The CSlib is a small, portable library which enables two (or more) independent simulation codes to be coupled, by exchanging messages with each other. Both codes link to the library when they are built, and can them communicate with each other as they run. The messages contain data or instructions that the two codes send back-and-forth to each other. The messaging can take place via files, sockets, or MPI. The latter is a standard distributed-memory message-passing library.

  1. A Contest to Create Media Messages Aimed at Recruiting Adolescents for Stop Smoking Programs.

    ERIC Educational Resources Information Center

    Croghan, Ivana T.; Campbell, Heather M.; Patten, Christi A.; Croghan, Gary A.; Schroeder, Darrell R.; Novotny, Paul J.

    2004-01-01

    This project engaged adolescents in a contest to create advertising messages aimed at recruiting teens for stop smoking programs. Middle school students were invited to design a media message for television, radio, Web, or print (newspaper or billboard). 0f 4,289 students in eight middle schools of Rochester, Minn., 265 (6.2%) developed 172 stop…

  2. Helping Students with Difficult First Year Subjects through the PASS Program

    ERIC Educational Resources Information Center

    Sultan, Fauziah K. P. D.; Narayansany, Kannaki S.; Kee, Hooi Ling; Kuan, Chin Hoay; Palaniappa Manickam, M. Kamala; Tee, Meng Yew

    2013-01-01

    The purpose of this action research was to find out if participants of a pilot PASS program found it to be helpful. The program was implemented for the first time in an institute of higher learning in Malaysia. An action research design guided the study, with surveys, documents, and reflections as primary data sources. The findings were largely…

  3. Getting Your Message Across: Mobile Phone Text Messaging

    ERIC Educational Resources Information Center

    Beecher, Constance C.; Hayungs, Lori

    2017-01-01

    Want to send a message that 99% of your audience will read? Many Extension professionals are familiar with using social media tools to enhance Extension programming. Extension professionals may be less familiar with the use of mobile phone text-based marketing tools. The purpose of this article is to introduce SMS (short message system) marketing…

  4. Performance Evaluation of Remote Memory Access (RMA) Programming on Shared Memory Parallel Computers

    NASA Technical Reports Server (NTRS)

    Jin, Hao-Qiang; Jost, Gabriele; Biegel, Bryan A. (Technical Monitor)

    2002-01-01

    The purpose of this study is to evaluate the feasibility of remote memory access (RMA) programming on shared memory parallel computers. We discuss different RMA based implementations of selected CFD application benchmark kernels and compare them to corresponding message passing based codes. For the message-passing implementation we use MPI point-to-point and global communication routines. For the RMA based approach we consider two different libraries supporting this programming model. One is a shared memory parallelization library (SMPlib) developed at NASA Ames, the other is the MPI-2 extensions to the MPI Standard. We give timing comparisons for the different implementation strategies and discuss the performance.

  5. Information Management and Learning in Computer Conferences: Coping with Irrelevant and Unconnected Messages.

    ERIC Educational Resources Information Center

    Schwan, Stephan; Straub, Daniela; Hesse, Friedrich W.

    2002-01-01

    Describes a study of computer conferencing where learners interacted over the course of four log-in sessions to acquire the knowledge sufficient to pass a learning test. Studied the number of messages irrelevant to the topic, explicit threading of messages, reading times of relevant messages, and learning outcomes. (LRW)

  6. Constrained low-rank matrix estimation: phase transitions, approximate message passing and applications

    NASA Astrophysics Data System (ADS)

    Lesieur, Thibault; Krzakala, Florent; Zdeborová, Lenka

    2017-07-01

    This article is an extended version of previous work of Lesieur et al (2015 IEEE Int. Symp. on Information Theory Proc. pp 1635-9 and 2015 53rd Annual Allerton Conf. on Communication, Control and Computing (IEEE) pp 680-7) on low-rank matrix estimation in the presence of constraints on the factors into which the matrix is factorized. Low-rank matrix factorization is one of the basic methods used in data analysis for unsupervised learning of relevant features and other types of dimensionality reduction. We present a framework to study the constrained low-rank matrix estimation for a general prior on the factors, and a general output channel through which the matrix is observed. We draw a parallel with the study of vector-spin glass models—presenting a unifying way to study a number of problems considered previously in separate statistical physics works. We present a number of applications for the problem in data analysis. We derive in detail a general form of the low-rank approximate message passing (Low-RAMP) algorithm, that is known in statistical physics as the TAP equations. We thus unify the derivation of the TAP equations for models as different as the Sherrington-Kirkpatrick model, the restricted Boltzmann machine, the Hopfield model or vector (xy, Heisenberg and other) spin glasses. The state evolution of the Low-RAMP algorithm is also derived, and is equivalent to the replica symmetric solution for the large class of vector-spin glass models. In the section devoted to result we study in detail phase diagrams and phase transitions for the Bayes-optimal inference in low-rank matrix estimation. We present a typology of phase transitions and their relation to performance of algorithms such as the Low-RAMP or commonly used spectral methods.

  7. How My Program Passed the Turing Test

    NASA Astrophysics Data System (ADS)

    Humphrys, Mark

    In 1989, the author put an ELIZA-like chatbot on the Internet. The conversations this program had can be seen - depending on how one defines the rules (and how seriously one takes the idea of the test itself) - as a passing of the Turing Test. This is the first time this event has been properly written. This chatbot succeeded due to profanity, relentless aggression, prurient queries about the user, and implying that they were a liar when they responded. The element of surprise was also crucial. Most chatbots exist in an environment where people expectto find some bots among the humans. Not this one. What was also novel was the onlineelement. This was certainly one of the first AI programs online. It seems to have been the first (a) AI real-time chat program, which (b) had the element of surprise, and (c) was on the Internet. We conclude with some speculation that the future of all of AI is on the Internet, and a description of the "World- Wide-Mind" project that aims to bring this about.

  8. Stepwise Development of a Text Messaging-Based Bullying Prevention Program for Middle School Students (BullyDown)

    PubMed Central

    Prescott, Tonya L; Espelage, Dorothy L

    2016-01-01

    Background Bullying is a significant public health issue among middle school-aged youth. Current prevention programs have only a moderate impact. Cell phone text messaging technology (mHealth) can potentially overcome existing challenges, particularly those that are structural (e.g., limited time that teachers can devote to non-educational topics). To date, the description of the development of empirically-based mHealth-delivered bullying prevention programs are lacking in the literature. Objective To describe the development of BullyDown, a text messaging-based bullying prevention program for middle school students, guided by the Social-Emotional Learning model. Methods We implemented five activities over a 12-month period: (1) national focus groups (n=37 youth) to gather acceptability of program components; (2) development of content; (3) a national Content Advisory Team (n=9 youth) to confirm content tone; and (4) an internal team test of software functionality followed by a beta test (n=22 youth) to confirm the enrollment protocol and the feasibility and acceptability of the program. Results Recruitment experiences suggested that Facebook advertising was less efficient than using a recruitment firm to recruit youth nationally, and recruiting within schools for the pilot test was feasible. Feedback from the Content Advisory Team suggests a preference for 2-4 brief text messages per day. Beta test findings suggest that BullyDown is both feasible and acceptable: 100% of youth completed the follow-up survey, 86% of whom liked the program. Conclusions Text messaging appears to be a feasible and acceptable delivery method for bullying prevention programming delivered to middle school students. PMID:27296471

  9. Energy savings from transit passes : an evaluation of the University at Buffalo NFTA transit pass program for students, faculty, and staff.

    DOT National Transportation Integrated Search

    2014-04-01

    The University Transportation Research Center Region 2 supported a study entitled Connections Beyond Campus: An Evaluation of the Niagara Frontier Transportation : Authority University at Buffalo Transit Pass Program. Unlimited Access t...

  10. Public-channel cryptography based on mutual chaos pass filters.

    PubMed

    Klein, Einat; Gross, Noam; Kopelowitz, Evi; Rosenbluh, Michael; Khaykovich, Lev; Kinzel, Wolfgang; Kanter, Ido

    2006-10-01

    We study the mutual coupling of chaotic lasers and observe both experimentally and in numeric simulations that there exists a regime of parameters for which two mutually coupled chaotic lasers establish isochronal synchronization, while a third laser coupled unidirectionally to one of the pair does not synchronize. We then propose a cryptographic scheme, based on the advantage of mutual coupling over unidirectional coupling, where all the parameters of the system are public knowledge. We numerically demonstrate that in such a scheme the two communicating lasers can add a message signal (compressed binary message) to the transmitted coupling signal and recover the message in both directions with high fidelity by using a mutual chaos pass filter procedure. An attacker, however, fails to recover an errorless message even if he amplifies the coupling signal.

  11. Secret Message Decryption: Group Consulting Projects Using Matrices and Linear Programming

    ERIC Educational Resources Information Center

    Gurski, Katharine F.

    2009-01-01

    We describe two short group projects for finite mathematics students that incorporate matrices and linear programming into fictional consulting requests presented as a letter to the students. The students are required to use mathematics to decrypt secret messages in one project involving matrix multiplication and inversion. The second project…

  12. WinHPC System Programming | High-Performance Computing | NREL

    Science.gov Websites

    Programming WinHPC System Programming Learn how to build and run an MPI (message passing interface (mpi.h) and library (msmpi.lib) are. To build from the command line, run... Start > Intel Software Development Tools > Intel C++ Compiler Professional... > C++ Build Environment for applications running

  13. Task-parallel message passing interface implementation of Autodock4 for docking of very large databases of compounds using high-performance super-computers.

    PubMed

    Collignon, Barbara; Schulz, Roland; Smith, Jeremy C; Baudry, Jerome

    2011-04-30

    A message passing interface (MPI)-based implementation (Autodock4.lga.MPI) of the grid-based docking program Autodock4 has been developed to allow simultaneous and independent docking of multiple compounds on up to thousands of central processing units (CPUs) using the Lamarkian genetic algorithm. The MPI version reads a single binary file containing precalculated grids that represent the protein-ligand interactions, i.e., van der Waals, electrostatic, and desolvation potentials, and needs only two input parameter files for the entire docking run. In comparison, the serial version of Autodock4 reads ASCII grid files and requires one parameter file per compound. The modifications performed result in significantly reduced input/output activity compared with the serial version. Autodock4.lga.MPI scales up to 8192 CPUs with a maximal overhead of 16.3%, of which two thirds is due to input/output operations and one third originates from MPI operations. The optimal docking strategy, which minimizes docking CPU time without lowering the quality of the database enrichments, comprises the docking of ligands preordered from the most to the least flexible and the assignment of the number of energy evaluations as a function of the number of rotatable bounds. In 24 h, on 8192 high-performance computing CPUs, the present MPI version would allow docking to a rigid protein of about 300K small flexible compounds or 11 million rigid compounds.

  14. Bilingual Text Messaging Translation: Translating Text Messages From English Into Spanish for the Text4Walking Program

    PubMed Central

    Sandi, Giselle; Ingram, Diana; Welch, Mary Jane; Ocampo, Edith V

    2015-01-01

    Background Hispanic adults in the United States are at particular risk for diabetes and inadequate blood pressure control. Physical activity improves these health problems; however Hispanic adults also have a low rate of recommended aerobic physical activity. To address improving physical inactivity, one area of rapidly growing technology that can be utilized is text messaging (short message service, SMS). A physical activity research team, Text4Walking, had previously developed an initial database of motivational physical activity text messages in English that could be used for physical activity text messaging interventions. However, the team needed to translate these existing English physical activity text messages into Spanish in order to have culturally meaningful and useful text messages for those adults within the Hispanic population who would prefer to receive text messages in Spanish. Objective The aim of this study was to translate a database of English motivational physical activity messages into Spanish and review these text messages with a group of Spanish speaking adults to inform the use of these text messages in an intervention study. Methods The consent form and study documents, including the existing English physical activity text messages, were translated from English into Spanish, and received translation certification as well as Institutional Review Board approval. The translated text messages were placed into PowerPoint, accompanied by a set of culturally appropriate photos depicting barriers to walking, as well as walking scenarios. At the focus group, eligibility criteria for this study included being an adult between 30 to 65 years old who spoke Spanish as their primary language. After a general group introduction, participants were placed into smaller groups of two or three. Each small group was asked to review a segment of the translated text messages for accuracy and meaningfulness. After the break out, the group was brought back together

  15. Variability of Passing Grades in Undergraduate Nursing Education Programs in New York State.

    PubMed

    Reynolds, Diane

    2015-01-01

    The purpose of this descriptive study was to provide information about passing grades and their corresponding numeric grades for undergraduate nursing programs in New York State. An additional purpose was to report on differences in grading between faculty teaching in associate versus baccalaureate nursing programs, full-time versus adjunct faculty, and tenured versus nontenured faculty. There is a paucity of research on grade variability in undergraduate nursing programs. Three hundred eighty-four full-time and 96 adjunct faculty responded to an invitation to complete an online survey. Grades are not uniformly awarded across institutions. Passing grades ranged from 70 to 85 percent (C- to B+, respectively), with a mean of 74.79 percent. Wide variations in grades in different institutions across the country may undermine grade point average as a reliable measure of education, making it difficult to evaluate individual student performance.

  16. The Utility of the Memorable Messages Framework as an Intermediary Evaluation Tool for Fruit and Vegetable Consumption in a Nutrition Education Program.

    PubMed

    Davis, LaShara A; Morgan, Susan E; Mobley, Amy R

    2016-06-01

    Additional strategies to evaluate the impact of community nutrition education programs on low-income individuals are needed. The objective of this qualitative study was to examine the use of the Memorable Messages Framework as an intermediary nutrition education program evaluation tool to determine what fruit and vegetable messages were reported as memorable and the characteristics of those memorable messages. A convenience sample of low-income, primarily African American adults (N = 58) who previously completed a series of community nutrition education lessons within an urban area of Indiana participated in a focus group (N = 8 focus groups). A lead moderator using a semistructured script conducted the focus groups to determine what information about fruits and vegetables was most memorable from the participants' nutrition lessons and why this information was memorable. All focus group audiotapes were transcribed verbatim and ATLAS.ti software was used to code and identify themes within the data. Participants cited quantity, variety, and the positive nutritional impact of eating fruits and vegetables as most memorable. Information given in the form of recipes was also cited as most memorable. For example, participants referred to the recipe demonstrations as not only fun but also key components of the program that helped with message retention and memorability. Key characteristics of memorable messages included personal relevance and message vividness. These findings indicated that the Memorable Messages Framework may serve as an intermediary program evaluation tool to identify what information and messages are most influential to participants in community nutrition education programs. © 2015 Society for Public Health Education.

  17. Gauge-free cluster variational method by maximal messages and moment matching.

    PubMed

    Domínguez, Eduardo; Lage-Castellanos, Alejandro; Mulet, Roberto; Ricci-Tersenghi, Federico

    2017-04-01

    We present an implementation of the cluster variational method (CVM) as a message passing algorithm. The kind of message passing algorithm used for CVM, usually named generalized belief propagation (GBP), is a generalization of the belief propagation algorithm in the same way that CVM is a generalization of the Bethe approximation for estimating the partition function. However, the connection between fixed points of GBP and the extremal points of the CVM free energy is usually not a one-to-one correspondence because of the existence of a gauge transformation involving the GBP messages. Our contribution is twofold. First, we propose a way of defining messages (fields) in a generic CVM approximation, such that messages arrive on a given region from all its ancestors, and not only from its direct parents, as in the standard parent-to-child GBP. We call this approach maximal messages. Second, we focus on the case of binary variables, reinterpreting the messages as fields enforcing the consistency between the moments of the local (marginal) probability distributions. We provide a precise rule to enforce all consistencies, avoiding any redundancy, that would otherwise lead to a gauge transformation on the messages. This moment matching method is gauge free, i.e., it guarantees that the resulting GBP is not gauge invariant. We apply our maximal messages and moment matching GBP to obtain an analytical expression for the critical temperature of the Ising model in general dimensions at the level of plaquette CVM. The values obtained outperform Bethe estimates, and are comparable with loop corrected belief propagation equations. The method allows for a straightforward generalization to disordered systems.

  18. Gauge-free cluster variational method by maximal messages and moment matching

    NASA Astrophysics Data System (ADS)

    Domínguez, Eduardo; Lage-Castellanos, Alejandro; Mulet, Roberto; Ricci-Tersenghi, Federico

    2017-04-01

    We present an implementation of the cluster variational method (CVM) as a message passing algorithm. The kind of message passing algorithm used for CVM, usually named generalized belief propagation (GBP), is a generalization of the belief propagation algorithm in the same way that CVM is a generalization of the Bethe approximation for estimating the partition function. However, the connection between fixed points of GBP and the extremal points of the CVM free energy is usually not a one-to-one correspondence because of the existence of a gauge transformation involving the GBP messages. Our contribution is twofold. First, we propose a way of defining messages (fields) in a generic CVM approximation, such that messages arrive on a given region from all its ancestors, and not only from its direct parents, as in the standard parent-to-child GBP. We call this approach maximal messages. Second, we focus on the case of binary variables, reinterpreting the messages as fields enforcing the consistency between the moments of the local (marginal) probability distributions. We provide a precise rule to enforce all consistencies, avoiding any redundancy, that would otherwise lead to a gauge transformation on the messages. This moment matching method is gauge free, i.e., it guarantees that the resulting GBP is not gauge invariant. We apply our maximal messages and moment matching GBP to obtain an analytical expression for the critical temperature of the Ising model in general dimensions at the level of plaquette CVM. The values obtained outperform Bethe estimates, and are comparable with loop corrected belief propagation equations. The method allows for a straightforward generalization to disordered systems.

  19. Alcohol Messages in Prime-Time Television Series

    PubMed Central

    RUSSELL, CRISTEL ANTONIA; RUSSELL, DALE W.

    2010-01-01

    Alcohol messages contained in television programming serve as sources of information about drinking. To better understand the ways embedded messages about alcohol are communicated, it is crucial to objectively monitor and analyze television alcohol depictions. This article presents a content analysis of an eight-week sample of eighteen prime-time programs. Alcohol messages were coded based on modalities of presentation, level of plot connection, and valence. The analysis reveals that mixed messages about alcohol often coexist but the ways in which they are presented differ: whereas negative messages are tied to the plot and communicated verbally, positive messages are associated with subtle visual portrayals. PMID:21188281

  20. Couriers in the Inca Empire: Getting Your Message Across. [Lesson Plan].

    ERIC Educational Resources Information Center

    2002

    This lesson shows how the Inca communicated across the vast stretches of their mountain realm, the largest empire of the pre-industrial world. The lesson explains how couriers carried messages along mountain-ridge roads, up and down stone steps, and over chasm-spanning footbridges. It states that couriers could pass a message from Quito (Ecuador)…

  1. Common attributes of high/low performing general surgery programs as they relate to QE/CE pass rates.

    PubMed

    Bankhead-Kendall, Brittany; Slama, Eliza; Truitt, Michael S

    2016-12-01

    This comparative study aims to identify the differences between high and low performing programs as defined by their ABS board pass rates. We identified programs in the top 5% (TP) and lower 5% (LP) for 1st time QE/CE pass rates during the study period with resident and program related variables. All data was pooled and analyzed. TP had more U.S. graduates, higher average USMLE Step 1/2 scores, and all residents took the exam within a year of graduation. TP were more likely to rotate at a Level 1 trauma center, spent more time with simulation, and had numerous fellowship programs. They ascribed their success to mock oral exams, mature curricula, and group educational activities. Graduates of TP chose general surgery twice as often (40% vs 19%). Program related factors (Level 1 trauma, excellent didactics, higher number of fellowships, increased group educational activities, higher percentage of graduates into general surgery) are associated with TP. Our data suggests there may be modifiable program related variables that positively impact QE/CE pass rates. Copyright © 2016 Elsevier Inc. All rights reserved.

  2. Efficacy of Web-Based Collection of Strength-Based Testimonials for Text Message Extension of Youth Suicide Prevention Program: Randomized Controlled Experiment.

    PubMed

    Thiha, Phyo; Pisani, Anthony R; Gurditta, Kunali; Cherry, Erin; Peterson, Derick R; Kautz, Henry; Wyman, Peter A

    2016-11-09

    Equipping members of a target population to deliver effective public health messaging to peers is an established approach in health promotion. The Sources of Strength program has demonstrated the promise of this approach for "upstream" youth suicide prevention. Text messaging is a well-established medium for promoting behavior change and is the dominant communication medium for youth. In order for peer 'opinion leader' programs like Sources of Strength to use scalable, wide-reaching media such as text messaging to spread peer-to-peer messages, they need techniques for assisting peer opinion leaders in creating effective testimonials to engage peers and match program goals. We developed a Web interface, called Stories of Personal Resilience in Managing Emotions (StoryPRIME), which helps peer opinion leaders write effective, short-form messages that can be delivered to the target population in youth suicide prevention program like Sources of Strength. To determine the efficacy of StoryPRIME, a Web-based interface for remotely eliciting high school peer leaders, and helping them produce high-quality, personal testimonials for use in a text messaging extension of an evidence-based, peer-led suicide prevention program. In a double-blind randomized controlled experiment, 36 high school students wrote testimonials with or without eliciting from the StoryPRIME interface. The interface was created in the context of Sources of Strength-an evidence-based youth suicide prevention program-and 24 ninth graders rated these testimonials on relatability, usefulness/relevance, intrigue, and likability. Testimonials written with the StoryPRIME interface were rated as more relatable, useful/relevant, intriguing, and likable than testimonials written without StoryPRIME, P=.054. StoryPRIME is a promising way to elicit high-quality, personal testimonials from youth for prevention programs that draw on members of a target population to spread public health messages. ©Phyo Thiha, Anthony

  3. Starting Off on the Best Foot: A Review of Message Framing and Message Tailoring, and Recommendations for the Comprehensive Messaging Strategy for Sustained Behavior Change.

    PubMed

    Pope, J Paige; Pelletier, Luc; Guertin, Camille

    2018-09-01

    Health promotion programs represent a salient means through which physical activity promoters can cultivate positive health behavior change and maintenance. The messages communicated within these programs serve as an essential component as they are often used to convey valuable information, resources, or tools that facilitate health behavior initiation and sustained engagement. Identifying the most effective way to communicate health promotion information is, therefore, of considerable importance to ensuring that people not only attend to these messages, but also connect with and internalize the information conveyed within them. This paper was written to (1) summarize and evaluate the most prominent reviewed research approaches of message framing and tailoring to message design; and (2) offer a comprehensive messaging strategy to promote sustained health behavior change. A review of the literature demonstrated that a messaging strategy that has consistently led to healthy behavior change has yet to be identified. Furthermore, scholars have articulated that a multi-theoretical approach that places emphasis on facilitating motivation and healthy behavior change needs to be employed. Thus, this paper proposes and provides recommendations for employing the Comprehensive Messaging Strategy for Sustained Behavior Change (CMSSBC), which advocates tailoring messages to peoples' stage of change and framing them to focus on self-determined motives and intrinsic goals.

  4. Text messaging data collection for monitoring an infant feeding intervention program in rural China: feasibility study.

    PubMed

    Li, Ye; Wang, Wei; van Velthoven, Michelle Helena; Chen, Li; Car, Josip; Rudan, Igor; Zhang, Yanfeng; Wu, Qiong; Du, Xiaozhen; Scherpbier, Robert W

    2013-12-04

    An effective data collection method is crucial for high quality monitoring of health interventions. The traditional face-to-face data collection method is labor intensive, expensive, and time consuming. With the rapid increase of mobile phone subscribers, text messaging has the potential to be used for evaluation of population health interventions in rural China. The objective of this study was to explore the feasibility of using text messaging as a data collection tool to monitor an infant feeding intervention program. Participants were caregivers of children aged 0 to 23 months in rural China who participated in an infant feeding health education program. We used the test-retest method. First, we collected data with a text messaging survey and then with a face-to-face survey for 2 periods of 3 days. We compared the response rate, data agreement, costs, and participants' acceptability of the two methods. Also, we interviewed participants to explore their reasons for not responding to the text messages and the reasons for disagreement in the two methods. In addition, we evaluated the most appropriate time during the day for sending text messages. We included 258 participants; 99 (38.4%) participated in the text messaging survey and 177 (68.6%) in the face-to-face survey. Compared with the face-to-face survey, the text messaging survey had much lower response rates to at least one question (38.4% vs 68.6%) and to all 7 questions (27.9% vs 67.4%) with moderate data agreement (most kappa values between .5 and .75, the intraclass correlation coefficients between .53 to .72). Participants who took part in both surveys gave the same acceptability rating for both methods (median 4.0 for both on a 5-point scale, 1=disliked very much and 5=liked very much). The costs per questionnaire for the text messaging method were much lower than the costs for the face-to-face method: ¥19.7 (US $3.13) versus ¥33.9 (US $5.39) for all questionnaires, and ¥27.1 (US $4.31) versus ¥34

  5. Messages about appearance, food, weight and exercise in "tween" television.

    PubMed

    Simpson, Courtney C; Kwitowski, Melissa; Boutte, Rachel; Gow, Rachel W; Mazzeo, Suzanne E

    2016-12-01

    Tweens (children ages ~8-14years) are a relatively recently defined age group, increasingly targeted by marketers. Individuals in this age group are particularly vulnerable to opinions and behaviors presented in media messages, given their level of cognitive and social development. However, little research has examined messages about appearance, food, weight, and exercise in television specifically targeting tweens, despite the popularity of this media type among this age group. This study used a content analytic approach to explore these messages in the five most popular television shows for tweens on the Disney Channel (as of 2015). Using a multiple-pass approach, relevant content in episodes from the most recently completed seasons of each show was coded. Appearance related incidents occurred in every episode; these most frequently mentioned attractiveness/beauty. Food related incidents were also present in every episode; typically, these situations were appearance and weight neutral. Exercise related incidents occurred in 53.3% of episodes; the majority expressed resistance to exercise. Weight related incidents occurred in 40.0% of the episodes; the majority praised the muscular ideal. Women were more likely to initiate appearance incidents, and men were more likely to initiate exercise incidents. These results suggest that programs specifically marketed to tweens reinforce appearance ideals, including stereotypes about female attractiveness and male athleticism, two constructs linked to eating pathology and body dissatisfaction. Given the developmental vulnerability of the target group, these findings are concerning, and highlight potential foci for prevention programming, including media literacy, for tweens. Copyright © 2016 Elsevier Ltd. All rights reserved.

  6. Boys to Men: Sports Media. Messages about Masculinity: A National Poll of Children, Focus Groups, and Content Analysis of Sports Programs and Commercials.

    ERIC Educational Resources Information Center

    Messner, Mike; Hunt, Darnell; Dunbar, Michele; Chen, Perry; Lapp, Joan; Miller, Patti

    Sports programming plays a significant role in the media messages that American boys receive today. To explore the messages that sports programming presents to its audience, this report relates the findings of a study that analyzed a representative selection of sports programs and their accompanying commercials; also presented are findings from a…

  7. Performance Measurement, Visualization and Modeling of Parallel and Distributed Programs

    NASA Technical Reports Server (NTRS)

    Yan, Jerry C.; Sarukkai, Sekhar R.; Mehra, Pankaj; Lum, Henry, Jr. (Technical Monitor)

    1994-01-01

    This paper presents a methodology for debugging the performance of message-passing programs on both tightly coupled and loosely coupled distributed-memory machines. The AIMS (Automated Instrumentation and Monitoring System) toolkit, a suite of software tools for measurement and analysis of performance, is introduced and its application illustrated using several benchmark programs drawn from the field of computational fluid dynamics. AIMS includes (i) Xinstrument, a powerful source-code instrumentor, which supports both Fortran77 and C as well as a number of different message-passing libraries including Intel's NX Thinking Machines' CMMD, and PVM; (ii) Monitor, a library of timestamping and trace -collection routines that run on supercomputers (such as Intel's iPSC/860, Delta, and Paragon and Thinking Machines' CM5) as well as on networks of workstations (including Convex Cluster and SparcStations connected by a LAN); (iii) Visualization Kernel, a trace-animation facility that supports source-code clickback, simultaneous visualization of computation and communication patterns, as well as analysis of data movements; (iv) Statistics Kernel, an advanced profiling facility, that associates a variety of performance data with various syntactic components of a parallel program; (v) Index Kernel, a diagnostic tool that helps pinpoint performance bottlenecks through the use of abstract indices; (vi) Modeling Kernel, a facility for automated modeling of message-passing programs that supports both simulation -based and analytical approaches to performance prediction and scalability analysis; (vii) Intrusion Compensator, a utility for recovering true performance from observed performance by removing the overheads of monitoring and their effects on the communication pattern of the program; and (viii) Compatibility Tools, that convert AIMS-generated traces into formats used by other performance-visualization tools, such as ParaGraph, Pablo, and certain AVS/Explorer modules.

  8. Text Messaging Data Collection for Monitoring an Infant Feeding Intervention Program in Rural China: Feasibility Study

    PubMed Central

    van Velthoven, Michelle Helena; Chen, Li; Car, Josip; Rudan, Igor; Wu, Qiong; Du, Xiaozhen; Scherpbier, Robert W

    2013-01-01

    Background An effective data collection method is crucial for high quality monitoring of health interventions. The traditional face-to-face data collection method is labor intensive, expensive, and time consuming. With the rapid increase of mobile phone subscribers, text messaging has the potential to be used for evaluation of population health interventions in rural China. Objective The objective of this study was to explore the feasibility of using text messaging as a data collection tool to monitor an infant feeding intervention program. Methods Participants were caregivers of children aged 0 to 23 months in rural China who participated in an infant feeding health education program. We used the test-retest method. First, we collected data with a text messaging survey and then with a face-to-face survey for 2 periods of 3 days. We compared the response rate, data agreement, costs, and participants’ acceptability of the two methods. Also, we interviewed participants to explore their reasons for not responding to the text messages and the reasons for disagreement in the two methods. In addition, we evaluated the most appropriate time during the day for sending text messages. Results We included 258 participants; 99 (38.4%) participated in the text messaging survey and 177 (68.6%) in the face-to-face survey. Compared with the face-to-face survey, the text messaging survey had much lower response rates to at least one question (38.4% vs 68.6%) and to all 7 questions (27.9% vs 67.4%) with moderate data agreement (most kappa values between .5 and .75, the intraclass correlation coefficients between .53 to .72). Participants who took part in both surveys gave the same acceptability rating for both methods (median 4.0 for both on a 5-point scale, 1=disliked very much and 5=liked very much). The costs per questionnaire for the text messaging method were much lower than the costs for the face-to-face method: ¥19.7 (US $3.13) versus ¥33.9 (US $5.39) for all

  9. Support for Debugging Automatically Parallelized Programs

    NASA Technical Reports Server (NTRS)

    Hood, Robert; Jost, Gabriele

    2001-01-01

    This viewgraph presentation provides information on support sources available for the automatic parallelization of computer program. CAPTools, a support tool developed at the University of Greenwich, transforms, with user guidance, existing sequential Fortran code into parallel message passing code. Comparison routines are then run for debugging purposes, in essence, ensuring that the code transformation was accurate.

  10. The Utility of the Memorable Messages Framework as an Intermediary Evaluation Tool for Fruit and Vegetable Consumption in a Nutrition Education Program

    ERIC Educational Resources Information Center

    Davis, LaShara A.; Morgan, Susan E.; Mobley, Amy R.

    2016-01-01

    Additional strategies to evaluate the impact of community nutrition education programs on low-income individuals are needed. The objective of this qualitative study was to examine the use of the Memorable Messages Framework as an intermediary nutrition education program evaluation tool to determine what fruit and vegetable messages were reported…

  11. Development and Application of a Message Metric for NOAA NWS Tsunami Warnings and Recommended Guidelines for the NWS TsunamiReady Program

    NASA Astrophysics Data System (ADS)

    Gregg, C. E.; Johnston, D. M.; Ricthie, L.; Meinhold, S.; Johnson, V.; Scott, C.; Farnham, C.; Houghton, B. F.; Horan, J.; Gill, D.

    2012-12-01

    Improving the quality and effectiveness of tsunami warning messages and the TsunamiReady community preparedness program of the US National Oceanic and Atmospheric Administration, National Weather Service's (NWS), Tsunami Program are two key objectives of a three year project (Award NA10NWS4670015) to help integrate social science into the NWS' Tsunami Program and improve the preparedness of member states and territories of the National Tsunami Hazard Mitigation Program (NTHMP). Research was conducted in collaboration with state and local emergency managers. Based on findings from focus group meetings with a purposive sample of local, state and Federal stakeholders and emergency managers in six states (AK, WA, OR, CA, HI and NC) and two US Territories (US Virgin Islands and American Samoa), and upon review of research literature on behavioral response to warnings, we developed a warning message metric to help guide revisions to tsunami warning messages issued by the NWS' West Coast/Alaska Tsunami Warning Center, Alaska and Pacific Tsunami Warning Center, Hawaii. The metric incorporates factors that predict response to warning information, which are divided into categories of Message Content, Style, Order and Formatting and Receiver Characteristics. A message is evaluated by cross-referencing the message with the meaning of metric factors and assigning a maximum score of one point per factor. Findings are then used to guide revisions of the message until the characteristics of each factor are met. From focus groups that gathered information on the usefulness and achievability of tsunami preparedness actions, we developed recommendations for revisions to the proposed draft guidelines of the TsunamiReady Improvement Program. Proposed key revisions include the incorporation of community vulnerability to distant (far-field) versus local (near-field) tsunamis as a primary determinant of mandatory actions, rather than community population. Our team continues to work with

  12. Baseline Motivation Type as a Predictor of Dropout in a Healthy Eating Text Messaging Program.

    PubMed

    Coa, Kisha; Patrick, Heather

    2016-09-29

    Growing evidence suggests that text messaging programs are effective in facilitating health behavior change. However, high dropout rates limit the potential effectiveness of these programs. This paper describes patterns of early dropout in the HealthyYou text (HYTxt) program, with a focus on the impact of baseline motivation quality on dropout, as characterized by Self-Determination Theory (SDT). This analysis included 193 users of HYTxt, a diet and physical activity text messaging intervention developed by the US National Cancer Institute. Descriptive statistics were computed, and logistic regression models were run to examine the association between baseline motivation type and early program dropout. Overall, 43.0% (83/193) of users dropped out of the program; of these, 65.1% (54/83; 28.0% of all users) did so within the first 2 weeks. Users with higher autonomous motivation had significantly lower odds of dropping out within the first 2 weeks. A one unit increase in autonomous motivation was associated with lower odds (odds ratio 0.44, 95% CI 0.24-0.81) of early dropout, which persisted after adjusting for level of controlled motivation. Applying SDT-based strategies to enhance autonomous motivation might reduce early dropout rates, which can improve program exposure and effectiveness.

  13. Feasibility and usability of a text message-based program for diabetes self-management in an urban African-American population.

    PubMed

    Dick, Jonathan J; Nundy, Shantanu; Solomon, Marla C; Bishop, Keisha N; Chin, Marshall H; Peek, Monica E

    2011-09-01

    We pilot-tested a text message-based diabetes care program in an urban African-American population in which automated text messages were sent to participants with personalized medication, foot care, and appointment reminders and text messages were received from participants on adherence. Eighteen patients participated in a 4-week pilot study. Baseline surveys collected data about demographics, historical cell phone usage, and adherence to core diabetes care measures. Exit interview surveys (using close-coded and open-ended questions) were administered to patients at the end of the program. A 1-month follow-up interview was conducted surveying patients on perceived self-efficacy. Wilcoxon signed-rank tests were used to compare baseline survey responses about self-management activities to those at the pilot's end and at 1-month follow-up. Eighteen urban African-American participants completed the pilot study. The average age was 55 and the average number of years with diabetes was 8. Half the participants were initially uncomfortable with text messaging. Example messages include "Did you take your diabetes medications today" and "How many times did you check your feet for wounds this week?" Participants averaged 220 text messages with the system, responded to messages 80% of the time, and on average responded within 6 minutes. Participants strongly agreed that text messaging was easy to perform and helped with diabetes self-care. Missed medication doses decreased from 1.6 per week to 0.6 (p = .003). Patient confidence in diabetes self-management was significantly increased during and 1 month after the pilot (p = .002, p = .008). Text messaging may be a feasible and useful approach to improve diabetes self-management in urban African Americans. © 2011 Diabetes Technology Society.

  14. Impact of a Text-Messaging Program on Adolescent Reproductive Health: A Cluster-Randomized Trial in Ghana.

    PubMed

    Rokicki, Slawa; Cohen, Jessica; Salomon, Joshua A; Fink, Günther

    2017-02-01

    To evaluate whether text-messaging programs can improve reproductive health among adolescent girls in low- and middle-income countries. We conducted a cluster-randomized controlled trial among 756 female students aged 14 to 24 years in Accra, Ghana, in 2014. We randomized 38 schools to unidirectional intervention (n = 12), interactive intervention (n = 12), and control (n = 14). The unidirectional intervention sent participants text messages with reproductive health information. The interactive intervention engaged adolescents in text-messaging reproductive health quizzes. The primary study outcome was reproductive health knowledge at 3 and 15 months. Additional outcomes included self-reported pregnancy and sexual behavior. Analysis was by intent-to-treat. From baseline to 3 months, the unidirectional intervention increased knowledge by 11 percentage points (95% confidence interval [CI] = 7, 15) and the interactive intervention by 24 percentage points (95% CI = 19, 28), from a control baseline of 26%. Although we found no changes in reproductive health outcomes overall, both unidirectional (odds ratio [OR] = 0.14; 95% CI = 0.03, 0.71) and interactive interventions (OR = 0.15; 95% CI = 0.03, 0.86) lowered odds of self-reported pregnancy for sexually active participants. Text-messaging programs can lead to large improvements in reproductive health knowledge and have the potential to lower pregnancy risk for sexually active adolescent girls.

  15. Get the Message: A Teen Distracted Driving Program.

    PubMed

    Adeola, Ruth; Omorogbe, Ashleigh; Johnson, Abree

    Elimination of distracted driving is becoming a public health priority. Each day, an average of 8 people are killed due to a distracted driver in the United Sates. Although all drivers are at risk, research has indicated that teenage drivers are overrepresented in motor vehicle crashes due to distracted driving. Teenage drivers are hindered by limited driving experience, and the illusion of invincibility is a common phase in social and cognitive adolescent development. "Get the Message: A Teenage Distracted Driving Program" was established at the R Adams Cowley Shock Trauma Center to identify, define, and measure the factors that contribute to distracted driving in teens. A convenience sample of 1,238 teenagers in this study represented all 50 states in the United States, the District of Columbia, Puerto Rico, Canada, and 21 other countries. At the beginning of each program, a presurvey is administered to assess baseline behavior, attitude, and knowledge regarding distracted driving. After completing the program, teens complete a postsurvey to measure proposed changes in driving behaviors, attitude, and knowledge. The program employs the use of a slide presentation, hospital tour, video, and survivor's testimony to influence teen driving behaviors and increase knowledge. Research has indicated that an increase in the Health Belief Model constructs may enhance engagement in health-promoting behaviors, such as safe driving practices in teens. Based on the postsurvey results, the reduction in projected phone use while driving in this teen population indicates the effectiveness of this hospital-based teen distracted driving program.

  16. Petascale computation performance of lightweight multiscale cardiac models using hybrid programming models.

    PubMed

    Pope, Bernard J; Fitch, Blake G; Pitman, Michael C; Rice, John J; Reumann, Matthias

    2011-01-01

    Future multiscale and multiphysics models must use the power of high performance computing (HPC) systems to enable research into human disease, translational medical science, and treatment. Previously we showed that computationally efficient multiscale models will require the use of sophisticated hybrid programming models, mixing distributed message passing processes (e.g. the message passing interface (MPI)) with multithreading (e.g. OpenMP, POSIX pthreads). The objective of this work is to compare the performance of such hybrid programming models when applied to the simulation of a lightweight multiscale cardiac model. Our results show that the hybrid models do not perform favourably when compared to an implementation using only MPI which is in contrast to our results using complex physiological models. Thus, with regards to lightweight multiscale cardiac models, the user may not need to increase programming complexity by using a hybrid programming approach. However, considering that model complexity will increase as well as the HPC system size in both node count and number of cores per node, it is still foreseeable that we will achieve faster than real time multiscale cardiac simulations on these systems using hybrid programming models.

  17. Cross-Cultural Adaptation of a Text Message-Based Program for Smoking Cessation in Buenos Aires, Argentina.

    PubMed

    Colantonio, Lisandro D; Peña, Lorena; Whittaker, Robyn; Mejia, Raul M

    2016-03-01

    Few individual-level nonpharmacological interventions are available in Argentina to support smokers who attempt to quit. We conducted a cross-cultural adaptation of Stop Smoking with Mobile Phones, an English text message-based tobacco cessation program, in Buenos Aires. The process included English-Spanish translation and back-translation, face validity checking by two local tobacco cessation experts, and a complete review using a structured questionnaire and discussion groups with potential users (current smokers who want to quit or former smokers who quit in the past 6 months). An editing group was responsible for analyzing information collected and preparing adapted messages. Readability of final messages was assessed. Tobacco cessation experts found translated messages suitable for the local setting, although mention of "mate" (a local infusion which can trigger cravings) was recommended. Review of messages by two potential users confirmed most of the messages would help smokers to quit and resulted in minor edits. Potential users who participated in two discussion groups (n = 17, 64.7% female, age range: 30-73) found the content of messages was relevant for cessation and related to their own experiences, although they suggested adding information regarding the negative consequences of smoking. Participants emphasized that messages should be formatted using voseo and informal style and provided feedback on specific words and expressions. Readability of final messages was easy/very easy (Fernández Huerta Index: 79.93). The cross-cultural adaptation of Stop Smoking with Mobile Phones resulted in relevant revisions for the study population, including tone, wording, and pertinent information (eg, smoking consequences). Local acceptability and effectiveness should be confirmed in future studies. © The Author 2015. Published by Oxford University Press on behalf of the Society for Research on Nicotine and Tobacco. All rights reserved. For permissions, please e

  18. Engineered cell-cell communication via DNA messaging

    PubMed Central

    2012-01-01

    Background Evolution has selected for organisms that benefit from genetically encoded cell-cell communication. Engineers have begun to repurpose elements of natural communication systems to realize programmed pattern formation and coordinate other population-level behaviors. However, existing engineered systems rely on system-specific small molecules to send molecular messages among cells. Thus, the information transmission capacity of current engineered biological communication systems is physically limited by specific biomolecules that are capable of sending only a single message, typically “regulate transcription.” Results We have engineered a cell-cell communication platform using bacteriophage M13 gene products to autonomously package and deliver heterologous DNA messages of varying lengths and encoded functions. We demonstrate the decoupling of messages from a common communication channel via the autonomous transmission of various arbitrary genetic messages. Further, we increase the range of engineered DNA messaging across semisolid media by linking message transmission or receipt to active cellular chemotaxis. Conclusions We demonstrate decoupling of a communication channel from message transmission within engineered biological systems via the autonomous targeted transduction of user-specified heterologous DNA messages. We also demonstrate that bacteriophage M13 particle production and message transduction occurs among chemotactic bacteria. We use chemotaxis to improve the range of DNA messaging, increasing both transmission distance and communication bit rates relative to existing small molecule-based communication systems. We postulate that integration of different engineered cell-cell communication platforms will allow for more complex spatial programming of dynamic cellular consortia. PMID:22958599

  19. Application of a Tsunami Warning Message Metric to refine NOAA NWS Tsunami Warning Messages

    NASA Astrophysics Data System (ADS)

    Gregg, C. E.; Johnston, D.; Sorensen, J.; Whitmore, P.

    2013-12-01

    In 2010, the U.S. National Weather Service (NWS) funded a three year project to integrate social science into their Tsunami Program. One of three primary requirements of the grant was to make improvements to tsunami warning messages of the NWS' two Tsunami Warning Centers- the West Coast/Alaska Tsunami Warning Center (WCATWC) in Palmer, Alaska and the Pacific Tsunami Warning Center (PTWC) in Ewa Beach, Hawaii. We conducted focus group meetings with a purposive sample of local, state and Federal stakeholders and emergency managers in six states (AK, WA, OR, CA, HI and NC) and two US Territories (US Virgin Islands and American Samoa) to qualitatively asses information needs in tsunami warning messages using WCATWC tsunami messages for the March 2011 Tohoku earthquake and tsunami event. We also reviewed research literature on behavioral response to warnings to develop a tsunami warning message metric that could be used to guide revisions to tsunami warning messages of both warning centers. The message metric is divided into categories of Message Content, Style, Order and Formatting and Receiver Characteristics. A message is evaluated by cross-referencing the message with the operational definitions of metric factors. Findings are then used to guide revisions of the message until the characteristics of each factor are met. Using findings from this project and findings from a parallel NWS Warning Tiger Team study led by T. Nicolini, the WCATWC implemented the first of two phases of revisions to their warning messages in November 2012. A second phase of additional changes, which will fully implement the redesign of messages based on the metric, is in progress. The resulting messages will reflect current state-of-the-art knowledge on warning message effectiveness. Here we present the message metric; evidence-based rational for message factors; and examples of previous, existing and proposed messages.

  20. Message-passing-interface-based parallel FDTD investigation on the EM scattering from a 1-D rough sea surface using uniaxial perfectly matched layer absorbing boundary.

    PubMed

    Li, J; Guo, L-X; Zeng, H; Han, X-B

    2009-06-01

    A message-passing-interface (MPI)-based parallel finite-difference time-domain (FDTD) algorithm for the electromagnetic scattering from a 1-D randomly rough sea surface is presented. The uniaxial perfectly matched layer (UPML) medium is adopted for truncation of FDTD lattices, in which the finite-difference equations can be used for the total computation domain by properly choosing the uniaxial parameters. This makes the parallel FDTD algorithm easier to implement. The parallel performance with different processors is illustrated for one sea surface realization, and the computation time of the parallel FDTD algorithm is dramatically reduced compared to a single-process implementation. Finally, some numerical results are shown, including the backscattering characteristics of sea surface for different polarization and the bistatic scattering from a sea surface with large incident angle and large wind speed.

  1. Tailored message interventions versus typical messages for increasing participation in colorectal cancer screening among a non-adherent population: A randomized controlled trial.

    PubMed

    Hirai, Kei; Ishikawa, Yoshiki; Fukuyoshi, Jun; Yonekura, Akio; Harada, Kazuhiro; Shibuya, Daisuke; Yamamoto, Seiichiro; Mizota, Yuri; Hamashima, Chisato; Saito, Hiroshi

    2016-05-24

    The purpose of this study was to examine the effectiveness and cost-efficiency of a tailored message intervention compared with a non-tailored message intervention for increasing colorectal cancer (CRC) screening rates among a non-adherent population, in a community-based client reminder program. After a baseline survey for psychological segmentation, 2140 eligible individuals were randomly assigned either to a group with a tailored matched-message condition (N = 356), a group with a non-tailored unmatched-message condition (N = 355), or to two control groups, one using a typical message with a professional design (N = 717) and one without a professional design (N = 712). The main outcome measure was attendance rates in a community-organized CRC screening program within five months of receiving a print reminder. There was a significant difference in fecal occult blood test (FOBT) attendance rates at follow-up assessments between the tailored matched-message condition (14.0 %) and the control (9.9 %; OR = 1.48, p = 0.026), while there was no significant difference between the unmatched-message condition (11.0 %) and the control (OR = 1.12, p = 0.558), and between the matched-message condition and the unmatched-message condition (OR = 1.32, p = 0.219). The cost of a one-person increase in FOBT screening was 3,740 JPY for the tailored matched-message condition, while it was 2,747 JPY for the control. A tailored-message intervention for segmented individuals designed to increase CRC screening rates in a community-based client reminder program was significantly effective compared to a usual reminder, but not more effective than an unmatched message in a randomized controlled trial, and was not sufficiently effective to highlight its value from a cost perspective. Therefore, the tailored intervention including target segmentation needs to be improved for future implementation in a CRC screening program for a non

  2. Lessons learned: program messaging in gender-transformative work with men and boys in South Africa

    PubMed Central

    Viitanen, Amanda P.; Colvin, Christopher J.

    2015-01-01

    Background Adherence to traditional notions of masculinity has been identified as an important driver in the perpetuation of numerous health and social problems, including gender-based violence and HIV. With the largest generalized HIV epidemic in the world and high rates of violence against women, the need for gender-transformative work in South Africa is broadly accepted in activist circles and at the national and community level. Because of the integral role men play in both of these epidemics, initiatives and strategies that engage men in promoting gender equality have emerged over the last decade and the evidence base supporting the effectiveness of masculinities-based interventions is growing. However, little research exists on men's receptivity to the messages delivered in these programs. Objective This article examines the current practices among a set of gender-transformation initiatives in South Africa to see what lessons can be derived from them. We look at how South African men participating in these programs responded to three thematic messages frequently found in gender-transformative work: 1) the ‘costs of masculinity’ men pay for adherence to harmful gender constructs; 2) multiple forms of masculinity; and 3) the human rights framework and contested rights. Design This article synthesizes qualitative findings from in-depth interviews, focus group discussions, and ethnographic research with men participating in several gender- and health-intervention programs in South Africa. The data were collected between 2007 and 2011 and synthesized using some of the basic principles of meta-ethnography. Results and conclusions Overall, men were receptive to the three thematic messages reviewed; they were able to see them in the context of their own lives and the messages facilitated rich dialog among participants. However, some men were more ambivalent toward shifting gender notions and some even adamantly resisted engaging in discussions over gender

  3. Lessons learned: program messaging in gender-transformative work with men and boys in South Africa.

    PubMed

    Viitanen, Amanda P; Colvin, Christopher J

    2015-01-01

    Adherence to traditional notions of masculinity has been identified as an important driver in the perpetuation of numerous health and social problems, including gender-based violence and HIV. With the largest generalized HIV epidemic in the world and high rates of violence against women, the need for gender-transformative work in South Africa is broadly accepted in activist circles and at the national and community level. Because of the integral role men play in both of these epidemics, initiatives and strategies that engage men in promoting gender equality have emerged over the last decade and the evidence base supporting the effectiveness of masculinities-based interventions is growing. However, little research exists on men's receptivity to the messages delivered in these programs. This article examines the current practices among a set of gender-transformation initiatives in South Africa to see what lessons can be derived from them. We look at how South African men participating in these programs responded to three thematic messages frequently found in gender-transformative work: 1) the 'costs of masculinity' men pay for adherence to harmful gender constructs; 2) multiple forms of masculinity; and 3) the human rights framework and contested rights. This article synthesizes qualitative findings from in-depth interviews, focus group discussions, and ethnographic research with men participating in several gender- and health-intervention programs in South Africa. The data were collected between 2007 and 2011 and synthesized using some of the basic principles of meta-ethnography. Overall, men were receptive to the three thematic messages reviewed; they were able to see them in the context of their own lives and the messages facilitated rich dialog among participants. However, some men were more ambivalent toward shifting gender notions and some even adamantly resisted engaging in discussions over gender equality. More research is needed to gauge the long-term impact

  4. NASA electronic message experiment and study: Detailed test plans

    NASA Technical Reports Server (NTRS)

    1979-01-01

    A methodology for evaluating the utility of high speed digital facsimile as a component of the projected NASA-wide electronic message network is presented. Equipment checkout, operator familiarization, pretest calibration, and the development of procedures are addressed. An experimental test program of the facsimile message service which will carry duplicates of the actual messages sent by other means is highlighted. Also, an operational test program during which messages will be sent on a regular basis in order to accumulate the information that will be used to evaluate system performance and project future growth is described.

  5. Internet and Mobile Phone Text Messaging Intervention for College Smokers

    ERIC Educational Resources Information Center

    Riley, William; Obermayer, Jami; Jean-Mary, Jersino

    2008-01-01

    Objective: The authors developed a smoking cessation program using mobile phone text messaging to provide tailored and stage-specific messages to college smokers. Participants and Methods: The authors recruited 31 daily smokers who desired to quit from a college campus and asked them to use an Internet and mobile phone text messaging program to…

  6. Implementing Multidisciplinary and Multi-Zonal Applications Using MPI

    NASA Technical Reports Server (NTRS)

    Fineberg, Samuel A.

    1995-01-01

    Multidisciplinary and multi-zonal applications are an important class of applications in the area of Computational Aerosciences. In these codes, two or more distinct parallel programs or copies of a single program are utilized to model a single problem. To support such applications, it is common to use a programming model where a program is divided into several single program multiple data stream (SPMD) applications, each of which solves the equations for a single physical discipline or grid zone. These SPMD applications are then bound together to form a single multidisciplinary or multi-zonal program in which the constituent parts communicate via point-to-point message passing routines. Unfortunately, simple message passing models, like Intel's NX library, only allow point-to-point and global communication within a single system-defined partition. This makes implementation of these applications quite difficult, if not impossible. In this report it is shown that the new Message Passing Interface (MPI) standard is a viable portable library for implementing the message passing portion of multidisciplinary applications. Further, with the extension of a portable loader, fully portable multidisciplinary application programs can be developed. Finally, the performance of MPI is compared to that of some native message passing libraries. This comparison shows that MPI can be implemented to deliver performance commensurate with native message libraries.

  7. ACHP | News | Legislation Passes Senate

    Science.gov Websites

    Search skip specific nav links Home arrow News arrow Legislation Passes Senate Secretary Kempthorne continue historic preservation programs founded by each of the past two First Ladies in legislation passed Hillary Clinton. "Bipartisan approval of this legislation by an overwhelming margin reflects the

  8. Effect of Outreach Messages on Medicaid Enrollment

    PubMed Central

    Stillson, Christian; Rosin, Roy; Cahill, Rachel; Kruger, Evelyne; Grande, David

    2017-01-01

    Objectives. To measure the impact of different outreach messages on health insurance enrollment among Medicaid-eligible adults. Methods. Between March 2015 and April 2016, we conducted a series of experiments using mail-based outreach that encouraged individuals to enroll in Pennsylvania’s expanded Medicaid program. Recipients were randomized to receive 1 of 4 different messages describing the benefits of health insurance. The primary outcome was the response rate to each letter. Results. We mailed outreach letters to 32 993 adults in Philadelphia. Messages that emphasized the dental benefits of insurance were significantly more likely to result in a response than messages emphasizing the health benefits (odds ratio = 1.33; 95% confidence interval = 1.10, 1.61). Conclusions. Medicaid enrollment outreach messages that emphasized the dental benefits of insurance were more effective than those that emphasized the health-related benefits. Public Health Implications. Although the structure and eligibility of the Medicaid program are likely to change, testing and identifying successful outreach and enrollment strategies remains important. Outreach messages that emphasize dental benefits may be more effective at motivating enrollment among individuals of low socioeconomic status. PMID:28661816

  9. High Performance Programming Using Explicit Shared Memory Model on Cray T3D1

    NASA Technical Reports Server (NTRS)

    Simon, Horst D.; Saini, Subhash; Grassi, Charles

    1994-01-01

    The Cray T3D system is the first-phase system in Cray Research, Inc.'s (CRI) three-phase massively parallel processing (MPP) program. This system features a heterogeneous architecture that closely couples DEC's Alpha microprocessors and CRI's parallel-vector technology, i.e., the Cray Y-MP and Cray C90. An overview of the Cray T3D hardware and available programming models is presented. Under Cray Research adaptive Fortran (CRAFT) model four programming methods (data parallel, work sharing, message-passing using PVM, and explicit shared memory model) are available to the users. However, at this time data parallel and work sharing programming models are not available to the user community. The differences between standard PVM and CRI's PVM are highlighted with performance measurements such as latencies and communication bandwidths. We have found that the performance of neither standard PVM nor CRI s PVM exploits the hardware capabilities of the T3D. The reasons for the bad performance of PVM as a native message-passing library are presented. This is illustrated by the performance of NAS Parallel Benchmarks (NPB) programmed in explicit shared memory model on Cray T3D. In general, the performance of standard PVM is about 4 to 5 times less than obtained by using explicit shared memory model. This degradation in performance is also seen on CM-5 where the performance of applications using native message-passing library CMMD on CM-5 is also about 4 to 5 times less than using data parallel methods. The issues involved (such as barriers, synchronization, invalidating data cache, aligning data cache etc.) while programming in explicit shared memory model are discussed. Comparative performance of NPB using explicit shared memory programming model on the Cray T3D and other highly parallel systems such as the TMC CM-5, Intel Paragon, Cray C90, IBM-SP1, etc. is presented.

  10. Increasing the Operational Value of Event Messages

    NASA Technical Reports Server (NTRS)

    Li, Zhenping; Savkli, Cetin; Smith, Dan

    2003-01-01

    Assessing the health of a space mission has traditionally been performed using telemetry analysis tools. Parameter values are compared to known operational limits and are plotted over various time periods. This presentation begins with the notion that there is an incredible amount of untapped information contained within the mission s event message logs. Through creative advancements in message handling tools, the event message logs can be used to better assess spacecraft and ground system status and to highlight and report on conditions not readily apparent when messages are evaluated one-at-a-time during a real-time pass. Work in this area is being funded as part of a larger NASA effort at the Goddard Space Flight Center to create component-based, middleware-based, standards-based general purpose ground system architecture referred to as GMSEC - the GSFC Mission Services Evolution Center. The new capabilities and operational concepts for event display, event data analyses and data mining are being developed by Lockheed Martin and the new subsystem has been named GREAT - the GMSEC Reusable Event Analysis Toolkit. Planned for use on existing and future missions, GREAT has the potential to increase operational efficiency in areas of problem detection and analysis, general status reporting, and real-time situational awareness.

  11. Participation Rates in a Worksite Wellness Program Using E-Mail Wellness Messages

    ERIC Educational Resources Information Center

    Anenson, Larry W.; Brunt, Ardith; Terbizan, Donna J.; Christensen, Bryan

    2014-01-01

    The purpose of this study was to determine which days of the work week had the largest rate of opened e-health messages, whether detailed or basic e-health messages were more likely to be opened, if motivation influenced the rate of message opening, and if the rate of opening messages declined over time. Ninety-one city employees (52 male and 39…

  12. The Relation of Source Credibility and Message Frequency to Program Evaluation and Self-Confidence of Students in a Job Shadowing Program

    ERIC Educational Resources Information Center

    Linnehan, Frank

    2004-01-01

    Using a pre- and post-test design, this study examined the relation of an adult's credibility and message frequency to the beliefs of female high school students participating in a job-shadowing program. Hypotheses were based on the Elaboration Likelihood Model of attitude formation and change. Findings indicate that credibility of the adult…

  13. A Research Protocol to Test the Effectiveness of Text Messaging and Reminder Calls to Increase Service Use Referrals in a Community Engagement Program.

    PubMed

    Varma, Deepthi Satheesa; Hart, Mark; McIntyre, Denise Sonya; Kwiatkowski, Evan; Cottler, Linda Bauer

    2016-06-28

    Mobile phoned-based interventions have been increasingly used in clinical populations to improve health and health care delivery. The literature has shown that mobile phone-based text messages (short message service, SMS) are instantaneous, cost effective, and have less chance of being misplaced. Studies using mobile phone based-text messages have reported text messages as effective reminders that have resulted in increased appointment attendance, adherence to treatment, and better self-management. There have been no reports of adverse events when using text messaging in terms of misreading or misinterpreting data, transmitting inaccurate data, losing verbal or nonverbal communication cues, privacy issues, or failure or delay in message delivery. However, the literature has cited a need for personalized messages that are more responsive to individual needs. In addition, there has been a dearth of information on the use of reminders in nonclinical populations. The goal of this study is to assess the effectiveness of adding reminders in the form of text messaging versus reminder calls versus text messages and reminder calls to increase use of service referrals provided through community outreach. A total of 300 participants will be recruited for the study. Each participant will be randomized to one of three arms: a group that receives only reminder calls (CALLSONLY); a group that receives only text message reminders (TEXTONLY); and a group that receives both reminder calls and text messages (CALLS+TEXT). All groups will receive their reminder intervention on the 15th and 45th day after baseline when they receive medical and social service referrals from the community health workers (CHWs). A standard script will be used to administer the call and text reminders and a 15-item telephone-based satisfaction survey will be administered to assess the participant satisfaction with the process of receiving periodic reminders. The study is in the recruitment and follow

  14. Collecting outcome data of a text messaging smoking cessation intervention with in-program text assessments: How reliable are the results?

    PubMed

    Thrul, Johannes; Mendel, Judith A; Simmens, Samuel J; Abroms, Lorien C

    2018-05-18

    Text messaging interventions have shown promise in helping people quit smoking. Texting programs periodically survey participants about their smoking status. This study examined the consistency of participant self-reported smoking between external surveys and internal program text message assessments. Participants in Text2Quit program were surveyed about their past 7-day smoking at one, three, and six months post-enrollment using different survey modes (external surveys and internal program text message assessments) and responses were compared for consistency. The first set of analyses was conducted for participants responding on both modes (n = 45 at one month; n = 50 at three months; n = 42 at six months). Additional analyses, assuming missing = smoking, were conducted with the full sample of 262 smokers (68.7% female, mean age = 35.8 years) and compared to saliva-confirmed abstinence rates. Participants responding to both modes consistently reported smoking status at one (88.9%), three (88.0%) and six (88.1%) months post-enrollment, with fair to substantial levels of agreement (one month: κ = 0.24; three months: κ = 0.63; six months: κ = 0.66). Participants responding to both modes reported high rates of abstinence. In missing = smoking analyses, significant differences in abstinence rates reported across modes were detected at each timepoint (one month: external = 30.5%, internal = 16.4%; three months: external = 33.2%, internal = 16.0%; six months: external = 31.7%, internal = 12.2%; all p < .001). Moderate levels of agreement were found between the two modes. At 6 months, abstinence rates obtained via internal data were closer to those biochemically verified (15.7%) compared to external surveys. Results provide initial support for the use of internal program assessments in text messaging programs with missing = smoking assumptions in order to gather outcome data on smoking behavior

  15. Strategies for Energy Efficient Resource Management of Hybrid Programming Models

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Li, Dong; Supinski, Bronis de; Schulz, Martin

    2013-01-01

    Many scientific applications are programmed using hybrid programming models that use both message-passing and shared-memory, due to the increasing prevalence of large-scale systems with multicore, multisocket nodes. Previous work has shown that energy efficiency can be improved using software-controlled execution schemes that consider both the programming model and the power-aware execution capabilities of the system. However, such approaches have focused on identifying optimal resource utilization for one programming model, either shared-memory or message-passing, in isolation. The potential solution space, thus the challenge, increases substantially when optimizing hybrid models since the possible resource configurations increase exponentially. Nonetheless, with the accelerating adoptionmore » of hybrid programming models, we increasingly need improved energy efficiency in hybrid parallel applications on large-scale systems. In this work, we present new software-controlled execution schemes that consider the effects of dynamic concurrency throttling (DCT) and dynamic voltage and frequency scaling (DVFS) in the context of hybrid programming models. Specifically, we present predictive models and novel algorithms based on statistical analysis that anticipate application power and time requirements under different concurrency and frequency configurations. We apply our models and methods to the NPB MZ benchmarks and selected applications from the ASC Sequoia codes. Overall, we achieve substantial energy savings (8.74% on average and up to 13.8%) with some performance gain (up to 7.5%) or negligible performance loss.« less

  16. Integrating Research, Quality Improvement, and Medical Education for Better Handoffs and Safer Care: Disseminating, Adapting, and Implementing the I-PASS Program.

    PubMed

    Starmer, Amy J; Spector, Nancy D; West, Daniel C; Srivastava, Rajendu; Sectish, Theodore C; Landrigan, Christopher P

    2017-07-01

    In 2009 the I-PASS Study Group was formed by patient safety, medical education, health services research, and clinical experts from multiple institutions in the United States and Canada. When the I-PASS Handoff Program, which was developed by the I-PASS Study Group, was implemented in nine hospitals, it was associated with a 30% reduction in injuries due to medical errors and significant improvements in handoff processes, without any adverse effects on provider work flow. To effectively disseminate and adapt I-PASS for use across specialties and disciplines, a series of federally and privately funded dissemination and implementation projects were carried out following the publication of the initial study. The results of these efforts have informed ongoing initiatives intended to continue adapting and scaling the program. As of this writing, I-PASS Study Group members have directly worked with more than 50 hospitals to facilitate implementation of I-PASS. To further disseminate I-PASS, Study Group members delivered hundreds of academic presentations, including plenaries at scientific meetings, workshops, and institutional Grand Rounds. Some 3,563 individuals, representing more than 500 institutions in the 50 states in the United States, the District of Columbia, Puerto Rico, and 57 other countries, have requested access to I-PASS materials. Most recently, the I-PASS SM Patient Safety Institute has developed a virtual immersion training platform, mobile handoff observational tools, and processes to facilitate further spread of I-PASS. Implementation of I-PASS has been associated with substantial improvements in patient safety and can be applied to a variety of disciplines and types of patient handoffs. Widespread implementation of I-PASS has the potential to substantially improve patient safety in the United States and beyond. Copyright © 2017 The Joint Commission. Published by Elsevier Inc. All rights reserved.

  17. Performance standards for pass-fail determinations in the national air traffic flight service station training program.

    DOT National Transportation Integrated Search

    1979-07-01

    This report describes and documents Pass-Fail procedures for the new FSS Training Program. New types of measures and sets of norms are used to create standards of performance that students must meet to become eligible for acceptance into the operatio...

  18. MPIRUN: A Portable Loader for Multidisciplinary and Multi-Zonal Applications

    NASA Technical Reports Server (NTRS)

    Fineberg, Samuel A.; Woodrow, Thomas S. (Technical Monitor)

    1994-01-01

    Multidisciplinary and multi-zonal applications are an important class of applications in the area of Computational Aerosciences. In these codes, two or more distinct parallel programs or copies of a single program are utilized to model a single problem. To support such applications, it is common to use a programming model where a program is divided into several single program multiple data stream (SPMD) applications, each of which solves the equations for a single physical discipline or grid zone. These SPMD applications are then bound together to form a single multidisciplinary or multi-zonal program in which the constituent parts communicate via point-to-point message passing routines. One method for implementing the message passing portion of these codes is with the new Message Passing Interface (MPI) standard. Unfortunately, this standard only specifies the message passing portion of an application, but does not specify any portable mechanisms for loading an application. MPIRUN was developed to provide a portable means for loading MPI programs, and was specifically targeted at multidisciplinary and multi-zonal applications. Programs using MPIRUN for loading and MPI for message passing are then portable between all machines supported by MPIRUN. MPIRUN is currently implemented for the Intel iPSC/860, TMC CM5, IBM SP-1 and SP-2, Intel Paragon, and workstation clusters. Further, MPIRUN is designed to be simple enough to port easily to any system supporting MPI.

  19. Optimal message log reclamation for independent checkpointing

    NASA Technical Reports Server (NTRS)

    Wang, Yi-Min; Fuchs, W. Kent

    1993-01-01

    Independent (uncoordinated) check pointing for parallel and distributed systems allows maximum process autonomy but suffers from possible domino effects and the associated storage space overhead for maintaining multiple checkpoints and message logs. In most research on check pointing and recovery, it was assumed that only the checkpoints and message logs older than the global recovery line can be discarded. It is shown how recovery line transformation and decomposition can be applied to the problem of efficiently identifying all discardable message logs, thereby achieving optimal garbage collection. Communication trace-driven simulation for several parallel programs is used to show the benefits of the proposed algorithm for message log reclamation.

  20. Asynchronous Messaging and Data Transfer in a Spacecraft: An Implementation

    NASA Technical Reports Server (NTRS)

    Moholt, Joseph M.

    2005-01-01

    Data transfer and messaging is an important part of a spacecraft. Creating a standard protocol for messaging that can be used for a variety of applications is an extremely beneficial project at the Jet Propulsion Laboratory (JPL). The Asynchronous Messaging Service (AMS) is a protocol outlining how subsystems initialize and conduct communication between each other. There are currently two implementations of AMS in the works. At JPL, my task is to get a working implementation of AMS onto vxWorks as a proof of concept. An Autocoder, a program used to convert visually created state chart diagrams to C++, has also been created to accomplish a part of the implementation. I was assigned to make the program portable on any Unix type environment. Lastly, I was to develop a program to demonstrate messaging between two FireWire cards running vxworks.

  1. Identifying effective components of alcohol abuse prevention programs: effects of fear appeals, message style, and source expertise.

    PubMed

    Stainback, R D; Rogers, R W

    1983-04-01

    Despite the importance of alcohol abuse prevention programs, the effectiveness of many components of these programs has not been demonstrated empirically. An experiment tested the efficacy of three components of many prevention programs: fear appeals, one- versus two-sided message style, and the expertise of the source. The persuasive impact of this information was examined on 113 ninth-grade students' intentions to abstain from drinking alcohol while they are teenagers. The results reveal that fear appeals are successful in strengthening students' intentions to refrain from drinking. Implications are discussed for implementing these principles and for designing future investigations of alcohol abuse prevention programs.

  2. An Examination of Adolescent Recall of Anti-Smoking Messages: Attitudes, Message Type, and Message Perceptions.

    PubMed

    Bigsby, Elisabeth; Monahan, Jennifer L; Ewoldsen, David R

    2017-04-01

    Delayed message recall may be influenced by currently held accessible attitudes, the nature of the message, and message perceptions (perception of bias and message elaboration). This study examined the potential of message perceptions to mediate the influence of valenced attitude accessibility and message type on unaided recall of anti-smoking Public Service Announcements (PSAs). In a field experiment, ninth grade students (N = 244) watched three PSAs and responded to items on laptop computers. Twelve weeks later, follow-up telephone surveys were conducted to assess unaided recall. Both valenced attitude accessibility and message type were associated with message perceptions. However, only perception of message bias partially mediated the relationship between message type and unaided recall.

  3. Combined Quitline Counseling and Text Messaging for Smoking Cessation: A Quasi-Experimental Evaluation.

    PubMed

    Boal, Ashley L; Abroms, Lorien C; Simmens, Samuel; Graham, Amanda L; Carpenter, Kelly M

    2016-05-01

    This study seeks to determine whether comprehensive quitline services combined with text messaging improve smoking cessation rates beyond those achieved by offering comprehensive quitline services alone. The study sample consisted of callers to the Alere Wellbeing, Inc, commercial quitline in 2012. A quasi-experimental design was implemented using propensity score matching to create the intervention and control groups. The intervention group consisted of those who were offered and accepted a text message intervention in addition to usual quitline services, while the control group consisted of those who were not offered the text message intervention. Analyses utilized baseline data collected at intake, program use data (eg, call history and text message use), and reports of smoking behaviors and program satisfaction collected 6 months after intake. Similar rates of 7-day abstinence were reported regardless of whether participants received combined multi-call quitline services plus text messaging (25.3%) or multi-call quitline services in isolation (25.5%), though those who received combined services reported higher treatment satisfaction (P < .05). Among those who received combined services, the number of text messages sent to the text message program predicted 7-day abstinence such that those who sent more text messages were less likely to report 7-day abstinence. Text messaging may not confer additional benefits over and above those received through multi-modal, multi-call quitline programs. Future research should investigate whether text messaging programs improve quit rates when combined with less intensive services such as single-call phone counseling. While the impact of quitline and text messaging services for smoking cessation have been examined in isolation, no study has explored the impact of combined services on smoking outcomes. This study examines the role of text messaging in combination with comprehensive quitline services including multi-call phone

  4. Event Driven Messaging with Role-Based Subscriptions

    NASA Technical Reports Server (NTRS)

    Bui, Tung; Bui, Bach; Malhotra, Shantanu; Chen, Fannie; Kim, rachel; Allen, Christopher; Luong, Ivy; Chang, George; Zendejas, Silvino; Sadaqathulla, Syed

    2009-01-01

    Event Driven Messaging with Role-Based Subscriptions (EDM-RBS) is a framework integrated into the Service Management Database (SMDB) to allow for role-based and subscription-based delivery of synchronous and asynchronous messages over JMS (Java Messaging Service), SMTP (Simple Mail Transfer Protocol), or SMS (Short Messaging Service). This allows for 24/7 operation with users in all parts of the world. The software classifies messages by triggering data type, application source, owner of data triggering event (mission), classification, sub-classification and various other secondary classifying tags. Messages are routed to applications or users based on subscription rules using a combination of the above message attributes. This program provides a framework for identifying connected users and their applications for targeted delivery of messages over JMS to the client applications the user is logged into. EDMRBS provides the ability to send notifications over e-mail or pager rather than having to rely on a live human to do it. It is implemented as an Oracle application that uses Oracle relational database management system intrinsic functions. It is configurable to use Oracle AQ JMS API or an external JMS provider for messaging. It fully integrates into the event-logging framework of SMDB (Subnet Management Database).

  5. Effectiveness of 6 Months of Tailored Text Message Reminders for Obese Male Participants in a Worksite Weight Loss Program: Randomized Controlled Trial

    PubMed Central

    Oh, Sohee; Steinhubl, Steven; Kim, Sohye; Bae, Woo Kyung; Han, Jong Soo; Kim, Jeong-Hyun; Lee, Keehyuck; Kim, Mi Jin

    2015-01-01

    Background Worksite nutrition and physical activity interventions are important to help overweight and obese employees lose weight, but costs and insufficient sustained motivation prevent the majority of these programs from succeeding. Tailored text messaging in aiding weight management has been effective in several studies, but no studies have evaluated the effect of a tailored text message service on weight loss in a worksite health promotion program. Objective We studied the efficacy of a tailored text-messaging intervention for obese male participants in a worksite weight loss program of 6 months duration. Methods The study was an unblinded, randomized controlled trial. Men with a body mass index greater than 25 kg/m2 were recruited from the Korea District Heating Corporation, the Korea Expressway Corporation, and the Korea Gas Corporation. The participants were identified by nurse managers. Participants were randomly allocated to 1 of the following 2 groups for 24 weeks: (1) intervention group, which received tailored text message reminders every other day plus 4 offline education sessions and brief counseling with monthly weight check by nurses for weight control over 6 months and (2) control group, which received the 4 offline education sessions and brief counseling with monthly weight check by nurses about weight control over 6 months. The primary outcome was the difference in weight loss at 6 months. A mixed-model repeated-measures analysis was performed to evaluate the effect of the intervention group’s weight loss compared with the control group. Results A total of 205 obese men were randomized into either the intervention (n=104) or the control group (n=101). At the end of 6 months, the intervention group (n=63) had lost 1.71 kg (95% CI –2.53 to –0.88) and the control group (n=59) had lost 1.56 kg (95% CI –2.45 to –0.66); the difference between the 2 groups was not significant (mean difference –0.15, 95% CI –1.36 to 1.07). At the end of

  6. Automated Generation of Message-Passing Programs: An Evaluation Using CAPTools

    NASA Technical Reports Server (NTRS)

    Hribar, Michelle R.; Jin, Haoqiang; Yan, Jerry C.; Saini, Subhash (Technical Monitor)

    1998-01-01

    Scientists at NASA Ames Research Center have been developing computational aeroscience applications on highly parallel architectures over the past ten years. During that same time period, a steady transition of hardware and system software also occurred, forcing us to expend great efforts into migrating and re-coding our applications. As applications and machine architectures become increasingly complex, the cost and time required for this process will become prohibitive. In this paper, we present the first set of results in our evaluation of interactive parallelization tools. In particular, we evaluate CAPTool's ability to parallelize computational aeroscience applications. CAPTools was tested on serial versions of the NAS Parallel Benchmarks and ARC3D, a computational fluid dynamics application, on two platforms: the SGI Origin 2000 and the Cray T3E. This evaluation includes performance, amount of user interaction required, limitations and portability. Based on these results, a discussion on the feasibility of computer aided parallelization of aerospace applications is presented along with suggestions for future work.

  7. Tolerant (parallel) Programming

    NASA Technical Reports Server (NTRS)

    DiNucci, David C.; Bailey, David H. (Technical Monitor)

    1997-01-01

    In order to be truly portable, a program must be tolerant of a wide range of development and execution environments, and a parallel program is just one which must be tolerant of a very wide range. This paper first defines the term "tolerant programming", then describes many layers of tools to accomplish it. The primary focus is on F-Nets, a formal model for expressing computation as a folded partial-ordering of operations, thereby providing an architecture-independent expression of tolerant parallel algorithms. For implementing F-Nets, Cooperative Data Sharing (CDS) is a subroutine package for implementing communication efficiently in a large number of environments (e.g. shared memory and message passing). Software Cabling (SC), a very-high-level graphical programming language for building large F-Nets, possesses many of the features normally expected from today's computer languages (e.g. data abstraction, array operations). Finally, L2(sup 3) is a CASE tool which facilitates the construction, compilation, execution, and debugging of SC programs.

  8. User preferences for a text message-based smoking cessation intervention.

    PubMed

    Bock, Beth C; Heron, Kristin E; Jennings, Ernestine G; Magee, Joshua C; Morrow, Kathleen M

    2013-04-01

    Younger adults are more likely to smoke and less likely to seek treatment than older smokers. They are also frequent users of communication technology. In the current study, we conducted focus groups to obtain feedback about preferences for a text message-based smoking cessation program from potential users. Participants (N = 21, M age = 25.6 years, age range = 20-33 years) were current or recently quit smokers (M cigarettes/day = 12.8) who used text messaging. Participants completed questionnaires and participated in a 2-hour focus group. Focus groups were conducted using an a priori semistructured interview guide to promote discussion of the content and functionality of the intervention. Major themes from analysis of the focus groups included support for the acceptability of a text-based cessation program, suggestions for a more technologically broad-based program, and adjustments to the program structure. Participants recommended including social networking functions, user control of program output through an online profile, and text message features to promote interaction with the system. Interestingly, many participants suggested the program should begin on individuals' identified quit day, challenging the procedures used in most cessation programs, which begin by preparing participants for a future quit date. Overall, younger adult smokers appear to be interested in participating in a smoking cessation program that uses text messages and web-based elements. Qualitative feedback regarding the perceived optimal features and structure of a technology-based intervention challenged traditional methods of implementing smoking cessation interventions and will inform the development of future programs.

  9. Performance of hybrid programming models for multiscale cardiac simulations: preparing for petascale computation.

    PubMed

    Pope, Bernard J; Fitch, Blake G; Pitman, Michael C; Rice, John J; Reumann, Matthias

    2011-10-01

    Future multiscale and multiphysics models that support research into human disease, translational medical science, and treatment can utilize the power of high-performance computing (HPC) systems. We anticipate that computationally efficient multiscale models will require the use of sophisticated hybrid programming models, mixing distributed message-passing processes [e.g., the message-passing interface (MPI)] with multithreading (e.g., OpenMP, Pthreads). The objective of this study is to compare the performance of such hybrid programming models when applied to the simulation of a realistic physiological multiscale model of the heart. Our results show that the hybrid models perform favorably when compared to an implementation using only the MPI and, furthermore, that OpenMP in combination with the MPI provides a satisfactory compromise between performance and code complexity. Having the ability to use threads within MPI processes enables the sophisticated use of all processor cores for both computation and communication phases. Considering that HPC systems in 2012 will have two orders of magnitude more cores than what was used in this study, we believe that faster than real-time multiscale cardiac simulations can be achieved on these systems.

  10. Enhancing a Teen Pregnancy Prevention Program with text messaging: engaging minority youth to develop TOP ® Plus Text.

    PubMed

    Devine, Sharon; Bull, Sheana; Dreisbach, Susan; Shlay, Judith

    2014-03-01

    To develop and pilot a theory-based, mobile phone texting component attractive to minority youth as a supplement to the Teen Outreach Program(®), a youth development program for reducing teen pregnancy and school dropout. We conducted iterative formative research with minority youth in multiple focus groups to explore interest in texting and reaction to text messages. We piloted a month-long version of TOP(®) Plus Text with 96 teens at four sites and conducted a computer-based survey immediately after enrollment and at the end of the pilot that collected information about teens' values, social support, self-efficacy, and behaviors relating to school performance, trouble with the law, and sexual activity. After each of the first three weekly sessions we collected satisfaction measures. Upon completion of the pilot we conducted exit interviews with twelve purposively selected pilot participants. We successfully recruited and enrolled minority youth into the pilot. Teens were enthusiastic about text messages complementing TOP(®). Results also revealed barriers: access to text-capable mobile phones, retention as measured by completion of the post-pilot survey, and a need to be attentive to teen literacy. Piloting helped identify improvements for implementation including offering text messages through multiple platforms so youth without access to a mobile phone could receive messages; rewording texts to allow youth to express opinions without feeling judged; and collecting multiple types of contact information to improve follow-up. Thoughtful attention to social and behavioral theory and investment in iterative formative research with extensive consultation with teens can lead to an engaging texting curriculum that enhances and complements TOP(®). Copyright © 2014 Society for Adolescent Health and Medicine. Published by Elsevier Inc. All rights reserved.

  11. Low-pass filtering of noisy Schlumberger sounding curves. Part I: Theory

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Patella, D.

    1986-02-01

    A contribution is given to the solution of the problem of filtering noise-degraded Schlumberger sounding curves. It is shown that the transformation to the pole-pole system is actually a smoothing operation that filters high-frequency noise. In the case of residual noise contamination in the transformed pole-pole curve, it is demonstrated that a subsequent application of a conventional rectangular low-pass filter, with cut-off frequency not less than the right-hand frequency limit of the main message pass-band, may satisfactorily solve the problem by leaving a pole-pole curve available for interpretation. An attempt is also made to understand the essential peculiarities of themore » pole-pole system as far as penetration depth, resolving power and selectivity power are concerned.« less

  12. Standardized Testing Practices: Effect on Graduation and NCLEX® Pass Rates.

    PubMed

    Randolph, Pamela K

    The use standardized testing in pre-licensure nursing programs has been accompanied by conflicting reports of effective practices. The purpose of this project was to describe standardized testing practices in one states' nursing programs and discover if the use of a cut score or oversight of remediation had any effect on (a) first time NCLEX® pass rates, (b) on-time graduation (OTG) or (c) the combination of (a) and (b). Administrators of 38 nursing programs in one Southwest state were sent surveys; surveys were returned by 34 programs (89%). Survey responses were compared to each program's NCLEX pass rate and on-time graduation rate; t-tests were conducted for significant differences associated with a required minimum score (cut score) and oversight of remediation. There were no significant differences in NCLEX pass or on-time graduation rates related to establishment of a cut score. There was a significant difference when the NCLEX pass rate and on-time graduation rate were combined (Outcome Index "OI") with significantly higher program outcomes (P=.02.) for programs without cut-scores. There were no differences associated with faculty oversight of remediation. The results of this study do not support establishment of a cut-score when implementing a standardized testing. Copyright © 2016. Published by Elsevier Inc.

  13. [Effects of a smoking cessation program including telephone counseling and text messaging using stages of change for outpatients after a myocardial infarction].

    PubMed

    Kong, Jung-Hyeon; Ha, Yeongmi

    2013-08-01

    This study was done to identify effects of a smoking cessation program including telephone counseling and text messaging using stages of change for outpatients who have had a myocardial infarction (MI). This research was a quasi-experimental design with a nonequivalent control group pretest-posttest. The participants were 48 outpatients (experimental group=24, control group=24) recruited from one university hospital. They were randomly assigned to one of two groups: (a) an experimental group with telephone counseling (once a week) and text messaging (five times a week) using stages of change, and (b) a control group with traditional telephone counseling (once a month). Efficacy of the intervention was measured by comparing the two groups on smoking-related variables at 3 weeks and 12 weeks. At the 3-week and 12-week measurements, there were significant differences between the experimental and control groups on smoking cessation self-efficacy (p<.001), nicotine dependence (p<.001), CO levels (p<.001), and smoking cessation rates (p<.001). The results indicate that the smoking cessation program including telephone counseling and text messaging using stages of change is effective for outpatients after a MI. Further attention should be paid to the intensity of the smoking cessation program and periods for long-term follow-up.

  14. A Text Message Program as a Booster to In-Person Brief Interventions for Mandated College Students to Prevent Weekend Binge Drinking

    ERIC Educational Resources Information Center

    Suffoletto, Brian; Merrill, Jennifer E.; Chung, Tammy; Kristan, Jeffrey; Vanek, Marian; Clark, Duncan B.

    2016-01-01

    Objective: To evaluate a text message (SMS) program as a booster to an in-person alcohol intervention with mandated college students. Participants: Undergraduates (N = 224; 46% female) who violated an on-campus alcohol policy over a 2-semester period in 2014. Methods: The SMS program sent drinking-related queries each Thursday and Sunday and…

  15. Testing New Programming Paradigms with NAS Parallel Benchmarks

    NASA Technical Reports Server (NTRS)

    Jin, H.; Frumkin, M.; Schultz, M.; Yan, J.

    2000-01-01

    Over the past decade, high performance computing has evolved rapidly, not only in hardware architectures but also with increasing complexity of real applications. Technologies have been developing to aim at scaling up to thousands of processors on both distributed and shared memory systems. Development of parallel programs on these computers is always a challenging task. Today, writing parallel programs with message passing (e.g. MPI) is the most popular way of achieving scalability and high performance. However, writing message passing programs is difficult and error prone. Recent years new effort has been made in defining new parallel programming paradigms. The best examples are: HPF (based on data parallelism) and OpenMP (based on shared memory parallelism). Both provide simple and clear extensions to sequential programs, thus greatly simplify the tedious tasks encountered in writing message passing programs. HPF is independent of memory hierarchy, however, due to the immaturity of compiler technology its performance is still questionable. Although use of parallel compiler directives is not new, OpenMP offers a portable solution in the shared-memory domain. Another important development involves the tremendous progress in the internet and its associated technology. Although still in its infancy, Java promisses portability in a heterogeneous environment and offers possibility to "compile once and run anywhere." In light of testing these new technologies, we implemented new parallel versions of the NAS Parallel Benchmarks (NPBs) with HPF and OpenMP directives, and extended the work with Java and Java-threads. The purpose of this study is to examine the effectiveness of alternative programming paradigms. NPBs consist of five kernels and three simulated applications that mimic the computation and data movement of large scale computational fluid dynamics (CFD) applications. We started with the serial version included in NPB2.3. Optimization of memory and cache usage

  16. Text Messaging, Teen Outreach Program, and Sexual Health Behavior: A Cluster Randomized Trial.

    PubMed

    Bull, Sheana; Devine, Sharon; Schmiege, Sarah J; Pickard, Leslie; Campbell, Jon; Shlay, Judith C

    2016-09-01

    To consider whether Youth All Engaged! (a text message intervention) intensified the effects of the adolescent pregnancy prevention Teen Outreach Program (control) for youths. In this trial performed in Denver, Colorado, from 2011 to 2014, we randomized 8 Boys & Girls Clubs each of 4 years into 32 clubs per year combinations to ensure each club would serve as a treatment site for 2 years and a control site for 2 years. Control intervention consisted of the Teen Outreach Program only. We enrolled 852 youths (aged 14-18 years), and 632 were retained at follow-up, with analytic samples ranging from 50 to 624 across outcomes. We examined program costs, and whether the intervention increased condom and contraceptive use, access to care, and pregnancy prevention. Control program costs were $1184 per participant, and intervention costs were an additional $126 per participant (+10.6%). There were no statistically significant differences in primary outcomes for the full sample. Hispanic participants in the intervention condition had fewer pregnancies at follow-up (1.79%) than did those in the control group (6.72%; P = .02). Youth All Engaged is feasible, low cost, and could have potential benefits for Hispanic youths.

  17. Healthcare resource utilisation by patients with coronary heart disease receiving a lifestyle-focused text message support program: an analysis from the TEXT ME study.

    PubMed

    Thakkar, Jay; Redfern, Julie; Khan, Ehsan; Atkins, Emily; Ha, Jeffrey; Vo, Kha; Thiagalingam, Aravinda; Chow, Clara K

    2018-05-23

    The 'Tobacco, Exercise and Diet Messages' (TEXT ME) study was a 6-month, single-centre randomised clinical trial (RCT) that found a text message support program improved levels of cardiovascular risk factors in patients with coronary heart disease (CHD). The current analyses examined whether receipt of text messages influenced participants' engagement with conventional healthcare resources. The TEXT ME study database (N=710) was linked with routinely collected health department databases. Number of doctor consultations, investigations and cardiac medication prescriptions in the two study groups were compared. The most frequently accessed health service was consultations with a General Practitioner (mean 7.1, s.d. 5.4). The numbers of medical consultations, biochemical tests or cardiac-specific investigations were similar between the study groups. There was at least one prescription registered for statin, ACEI/ARBs and β-blockers in 79, 66 and 50% of patients respectively, with similar refill rates in both the study groups. The study identified TEXT ME text messaging program did not increase use of Medicare Benefits Schedule (MBS) and Pharmaceutical Benefits Scheme (PBS) captured healthcare services. The observed benefits of TEXT ME reflect direct effects of intervention independent of conventional healthcare resource engagement.

  18. Diagnosing the Causes and Severity of One-sided Message Contention

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Tallent, Nathan R.; Vishnu, Abhinav; van Dam, Hubertus

    Two trends suggest network contention for one-sided messages is poised to become a performance problem that concerns application developers: an increased interest in one-sided programming models and a rising ratio of hardware threads to network injection bandwidth. Unfortunately, it is difficult to reason about network contention and one-sided messages because one-sided tasks can either decrease or increase contention. We present effective and portable techniques for diagnosing the causes and severity of one-sided message contention. To detect that a message is affected by contention, we maintain statistics representing instantaneous (non-local) network resource demand. Using lightweight measurement and modeling, we identify themore » portion of a message's latency that is due to contention and whether contention occurs at the initiator or target. We attribute these metrics to program statements in their full static and dynamic context. We characterize contention for an important computational chemistry benchmark on InfiniBand, Cray Aries, and IBM Blue Gene/Q interconnects. We pinpoint the sources of contention, estimate their severity, and show that when message delivery time deviates from an ideal model, there are other messages contending for the same network links. With a small change to the benchmark, we reduce contention up to 50% and improve total runtime as much as 20%.« less

  19. Health messages on television commercials.

    PubMed

    Wallack, L; Dorfman, L

    1992-01-01

    Television is an important source of health information in the United States, yet little research has focused on the presentation of general health issues on television. This preliminary study reports on the health-related content of television commercials found on a typical television day. We conducted a content analysis of a composite day of television comprising 20 hours randomly selected over a three week period (April-May 1989). Findings are presented regarding health messages found in commercial time--advertisements, public service announcements (PSAs), editorials, and promotions for upcoming programs. Overall, 31% of the 654 commercial spots contained health messages. Most health messages were claims of good nutrition in food and beverage advertisements. PSAs comprise 1.4% of the 20-hour sample and 5.8% of the commercial time. Health messages appeared in 38% of PSAs, accounting for less than seven minutes. Not one PSA addressed tobacco, alcohol, or diet--the three leading behavioral risk factors for poor health. PSAs are usually seen as a mechanism by which the public health community can alert the public to important health issues. Given the declining pool of PSA time, public health educators will need to seek alternative strategies for influencing television content, such as media advocacy. In addition, further research on audience interpretation and response to commercial messages is suggested.

  20. Static analysis techniques for semiautomatic synthesis of message passing software skeletons

    DOE PAGES

    Sottile, Matthew; Dagit, Jason; Zhang, Deli; ...

    2015-06-29

    The design of high-performance computing architectures demands performance analysis of large-scale parallel applications to derive various parameters concerning hardware design and software development. The process of performance analysis and benchmarking an application can be done in several ways with varying degrees of fidelity. One of the most cost-effective ways is to do a coarse-grained study of large-scale parallel applications through the use of program skeletons. The concept of a “program skeleton” that we discuss in this article is an abstracted program that is derived from a larger program where source code that is determined to be irrelevant is removed formore » the purposes of the skeleton. In this work, we develop a semiautomatic approach for extracting program skeletons based on compiler program analysis. Finally, we demonstrate correctness of our skeleton extraction process by comparing details from communication traces, as well as show the performance speedup of using skeletons by running simulations in the SST/macro simulator.« less

  1. Post-acute crisis text messaging outreach for suicide prevention: a pilot study.

    PubMed

    Berrouiguet, Sofian; Gravey, Michel; Le Galudec, Mickaël; Alavi, Zarrin; Walter, Michel

    2014-07-30

    Several post-suicide prevention strategies such as sending postcards or making phone calls have been used to keep in contact with suicide attempters. The continuity of care has been beneficial to the prevention of post-acute suicidal behaviors. The aim of the study was to evaluate the technical feasibility and acceptability of text messaging outreach in post-acute suicide attempters. Eighteen post-suicidal patients were included in a prospective, monocentric, open-label, 2 months pilot study. The text messages were sent from the intranet program that we specially developed for the study. Technical feasibility of this text message intervention was evaluated by the analysis of text message reports. Acceptability of such intervention was evaluated by a standardized phone interview. Our study showed that receiving text messages sent from an intranet program after a suicide attempt is technically possible. This post-crisis outreach program was accepted by the patients who found it to have a positive preventive impact. Text messaging outreach offers several advantages such as lower cost, and easier utilization compared to current post-acute care strategies. We suggest further randomized controlled trials in a large sample of suicidal patients to assess the efficacy of this novel outreach tool for prevention of post-acute suicide. Copyright © 2014 Elsevier Ireland Ltd. All rights reserved.

  2. The Physical Therapy and Society Summit (PASS) Meeting: observations and opportunities.

    PubMed

    Kigin, Colleen M; Rodgers, Mary M; Wolf, Steven L

    2010-11-01

    The construct of delivering high-quality and cost-effective health care is in flux, and the profession must strategically plan how to meet the needs of society. In 2006, the House of Delegates of the American Physical Therapy Association passed a motion to convene a summit on "how physical therapists can meet current, evolving, and future societal health care needs." The Physical Therapy and Society Summit (PASS) meeting on February 27-28, 2009, in Leesburg, Virginia, sent a clear message that for physical therapists to be effective and thrive in the health care environment of the future, a paradigm shift is required. During the PASS meeting, participants reframed our traditional focus on the physical therapist and the patient/client (consumer) to one in which physical therapists are an integral part of a collaborative, multidisciplinary health care team with the health care consumer as its focus. The PASS Steering Committee recognized that some of the opportunities that surfaced during the PASS meeting may be disruptive or may not be within the profession's present strategic or tactical plans. Thus, adopting a framework that helps to establish the need for change that is provocative and potentially disruptive to our present care delivery, yet prioritizes opportunities, is a critical and essential step. Each of us in the physical therapy profession must take on post-PASS roles and responsibilities to accomplish the systemic change that is so intimately intertwined with our destiny. This article offers a perspective of the dynamic dialogue and suggestions that emerged from the PASS event, providing further opportunities for discussion and action within our profession.

  3. Compiling global name-space programs for distributed execution

    NASA Technical Reports Server (NTRS)

    Koelbel, Charles; Mehrotra, Piyush

    1990-01-01

    Distributed memory machines do not provide hardware support for a global address space. Thus programmers are forced to partition the data across the memories of the architecture and use explicit message passing to communicate data between processors. The compiler support required to allow programmers to express their algorithms using a global name-space is examined. A general method is presented for analysis of a high level source program and along with its translation to a set of independently executing tasks communicating via messages. If the compiler has enough information, this translation can be carried out at compile-time. Otherwise run-time code is generated to implement the required data movement. The analysis required in both situations is described and the performance of the generated code on the Intel iPSC/2 is presented.

  4. 20 CFR 631.18 - Federal by-pass authority.

    Code of Federal Regulations, 2010 CFR

    2010-04-01

    ... 20 Employees' Benefits 3 2010-04-01 2010-04-01 false Federal by-pass authority. 631.18 Section 631.18 Employees' Benefits EMPLOYMENT AND TRAINING ADMINISTRATION, DEPARTMENT OF LABOR PROGRAMS UNDER... Secretary's intent to exercise by-pass authority and an opportunity to request and to receive a hearing...

  5. Immediate increase in food intake following exercise messages.

    PubMed

    Albarracin, Dolores; Wang, Wei; Leeper, Joshua

    2009-07-01

    Communications to stimulate weight loss include exercise-promotion messages that often produce unsatisfactory results due to compensatory behavioral and metabolic mechanisms triggered by physical activity. This research investigated potential automatic facilitation of eating immediately after exercise messages in the absence of actual exercise. Two controlled experiments demonstrated greater than control food intake following exposure to print messages typical of exercise campaigns as well as subliminal presentation of action words associated with exercise (e.g., "active"). These inadvertent effects may explain the limited efficacy of exercise-promotion programs for weight loss, particularly when systematic dietary guidelines are absent.

  6. Asynchronous Message Service Reference Implementation

    NASA Technical Reports Server (NTRS)

    Burleigh, Scott C.

    2011-01-01

    This software provides a library of middleware functions with a simple application programming interface, enabling implementation of distributed applications in conformance with the CCSDS AMS (Consultative Committee for Space Data Systems Asynchronous Message Service) specification. The AMS service, and its protocols, implement an architectural concept under which the modules of mission systems may be designed as if they were to operate in isolation, each one producing and consuming mission information without explicit awareness of which other modules are currently operating. Communication relationships among such modules are self-configuring; this tends to minimize complexity in the development and operations of modular data systems. A system built on this model is a society of generally autonomous, inter-operating modules that may fluctuate freely over time in response to changing mission objectives, modules functional upgrades, and recovery from individual module failure. The purpose of AMS, then, is to reduce mission cost and risk by providing standard, reusable infrastructure for the exchange of information among data system modules in a manner that is simple to use, highly automated, flexible, robust, scalable, and efficient. The implementation is designed to spawn multiple threads of AMS functionality under the control of an AMS application program. These threads enable all members of an AMS-based, distributed application to discover one another in real time, subscribe to messages on specific topics, and to publish messages on specific topics. The query/reply (client/server) communication model is also supported. Message exchange is optionally subject to encryption (to support confidentiality) and authorization. Fault tolerance measures in the discovery protocol minimize the likelihood of overall application failure due to any single operational error anywhere in the system. The multi-threaded design simplifies processing while enabling application nodes to

  7. Adolescents' receptivity to E-cigarette harms messages delivered using text messaging.

    PubMed

    Noar, Seth M; Rohde, Jacob A; Horvitz, Casey; Lazard, Allison J; Cornacchione Ross, Jennifer; Sutfin, Erin L

    2018-06-02

    E-cigarette use among adolescents has dramatically risen since 2011, yet little research has tested e-cigarette harms messages among adolescents. We conducted a pretest-posttest pilot study to examine adolescents' receptivity to e-cigarette health harms messages delivered using text messaging. N = 69 adolescents were enrolled in an 8-day pretest-posttest text messaging study. Participants completed a pretest survey on day one, were texted one of three e-cigarette health harms messages per day on days two through seven, and completed a posttest survey on day eight (88% retention). We assessed message ratings at posttest and knowledge, thoughts, and beliefs about e-cigarette harms at pretest and posttest. Adolescents rated the three messages favorably, with both the chemical and brain messages scoring higher than the nicotine message on fear arousal and perceived message effectiveness. More than one-third of adolescents showed the messages to others and talked to others about the messages. At posttest, knowledge about the harms of e-cigarettes, thinking about the risks of e-cigarettes, and perceived risks of e-cigarettes were all significantly higher compared to pretest (p < .05). Participants largely adhered to the text messaging protocol and found the study highly acceptable. This pilot study suggests that adolescents are receptive to e-cigarette health harms messages and that delivering such messages using text messaging is feasible and acceptable. Future research should systematically develop and test a broad set of e-cigarette health harms messages and examine their impact in a randomized controlled trial. Copyright © 2018 Elsevier Ltd. All rights reserved.

  8. Using dual-phase message signs to display airline information : technical summary.

    DOT National Transportation Integrated Search

    2010-01-01

    Changeable Message Signs are electronic traffic signs that can be programmed to display : important messages that vary according to current roadway conditions, including the : presence of traffic congestion and accidents. CMSs can also be used to dis...

  9. Nature and Impact of Alcohol Messages in a Youth-Oriented Television Series.

    PubMed

    Russell, Cristel Antonia; Russell, Dale W; Grube, Joel W

    2009-01-01

    This research contributes to the extant literature on television influence by pairing a stimulus-side approach documenting how information is presented within a TV series with a response-side assessment of whether connectedness and exposure to a series influence the processing of that information differently depending on its format. The inquiry focuses on the nature and impact of messages about alcohol contained within a youth oriented TV program. The findings indicate that the recall and perception of the more overt negative messages increase with exposure and that receptiveness to the subtle and less remembered positive messages increases with levels of program connectedness. Highly connected viewers are both more receptive to and in greater agreement with the underlying positive alcohol message communicated in the series.

  10. Nature and Impact of Alcohol Messages in a Youth-Oriented Television Series

    PubMed Central

    Russell, Cristel Antonia; Russell, Dale W.; Grube, Joel W.

    2008-01-01

    This research contributes to the extant literature on television influence by pairing a stimulus-side approach documenting how information is presented within a TV series with a response-side assessment of whether connectedness and exposure to a series influence the processing of that information differently depending on its format. The inquiry focuses on the nature and impact of messages about alcohol contained within a youth oriented TV program. The findings indicate that the recall and perception of the more overt negative messages increase with exposure and that receptiveness to the subtle and less remembered positive messages increases with levels of program connectedness. Highly connected viewers are both more receptive to and in greater agreement with the underlying positive alcohol message communicated in the series. PMID:21113396

  11. A text message intervention for alcohol risk reduction among community college students: TMAP.

    PubMed

    Bock, Beth C; Barnett, Nancy P; Thind, Herpreet; Rosen, Rochelle; Walaska, Kristen; Traficante, Regina; Foster, Robert; Deutsch, Chris; Fava, Joseph L; Scott-Sheldon, Lori A J

    2016-12-01

    Students at community colleges comprise nearly half of all U.S. college students and show higher risk of heavy drinking and related consequences compared to students at 4-year colleges, but no alcohol safety programs currently target this population. To examine the feasibility, acceptability, and preliminary efficacy of an alcohol risk-reduction program delivered through text messaging designed for community college (CC) students. Heavy drinking adult CC students (N=60) were enrolled and randomly assigned to the six-week active intervention (Text Message Alcohol Program: TMAP) or a control condition of general motivational (not alcohol related) text messages. TMAP text messages consisted of alcohol facts, strategies to limit alcohol use and related risks, and motivational messages. Assessments were conducted at baseline, week 6 (end of treatment) and week 12 (follow up). Most participants (87%) completed all follow up assessments. Intervention messages received an average rating of 6.8 (SD=1.5) on a 10-point scale. At week six, TMAP participants were less likely than controls to report heavy drinking and negative alcohol consequences. The TMAP group also showed significant increases in self-efficacy to resist drinking in high risk situations between baseline and week six, with no such increase among controls. Results were maintained through the week 12 follow up. The TMAP alcohol risk reduction program was feasible and highly acceptable indicated by high retention rates through the final follow up assessment and good ratings for the text message content. Reductions in multiple outcomes provide positive indications of intervention efficacy. Copyright © 2016. Published by Elsevier Ltd.

  12. PASS Student Leader and Mentor Roles: A Tertiary Leadership Pathway

    ERIC Educational Resources Information Center

    Skalicky, Jane; Caney, Annaliese

    2010-01-01

    In relation to developing leadership skills during tertiary studies, this paper considers the leadership pathway afforded by a Peer Assisted Study Sessions (PASS) program which includes the traditional PASS Leader role and a more senior PASS Mentor role. Data was collected using a structured survey with open-ended questions designed to capture the…

  13. SmartMom Text Messaging for Prenatal Education: A Qualitative Focus Group Study to Explore Canadian Women's Perceptions.

    PubMed

    Munro, Sarah; Hui, Amber; Salmons, Vanessa; Solomon, Carolyn; Gemmell, Emily; Torabi, Nahal; Janssen, Patricia A

    2017-02-07

    We engaged Canadian women in the development of a prenatal education program delivered via one-way text messaging called SmartMom. SmartMom is the first peer-reviewed, evidence-based mHealth program for prenatal education in Canada and the first to be endorsed by the Society of Obstetricians and Gynaecologists of Canada. To explore women's preferences for a prenatal education program by text messaging. We conducted a qualitative focus group study in three Canadian communities in the Northern Health Authority. Women completed a demographic questionnaire, participated in a guided discussion about their pregnancy information-seeking behavior, reviewed a printed copy of the SmartMom text messages, and then engaged in a moderated discussion about their perceptions of the usability of the SmartMom program. Open-ended questions explored women's perceptions regarding the message content, acceptability of receiving information by text message, positive health behaviors they might engage in after receiving a message, modifiable program factors, and intention to use the program. Thematic analysis of transcribed audio recordings was undertaken and modifications were made to the SmartMom program based on these findings. A total of 40 women participated in seven focus groups in three rural northern communities. The vast majority had a mobile phone (39/40, 98%), used text messages "all the time" (28/40, 70%), and surfed the Internet on their phone (37/40, 93%). Participants perceived SmartMom to be highly acceptable and relevant. The text message modality reflected how participants currently sought pregnancy-related information and provided them with local information tailored to their gestational age, which they had not received through other pregnancy resources. Women recommended adding the opportunity to receive supplemental streams of messages tailored to their individual needs, for example, depression, pregnancy after previous cesarean, >35 years of age, new immigrants, and

  14. The Hidden Messages of Secondary Reading Programs: What Students Learn vs. What Teachers Teach.

    ERIC Educational Resources Information Center

    Battraw, Judith L.

    Hidden messages are part of the culture of reading at any school, particularly at the secondary level. In many schools, the overt message that reading is essential to success on state-mandated tests and in society is jeopardized due to hidden messages about the nature of the reading process and the place of reading in everyday life. A qualitative…

  15. Academic and Demographic Predictors of NCLEX-RN Pass Rates in First- and Second-Degree Accelerated BSN Programs.

    PubMed

    Kaddoura, Mahmoud A; Flint, Elizabeth P; Van Dyke, Olga; Yang, Qing; Chiang, Li-Chi

    Relatively few studies have addressed predictors of first-attempt outcomes (pass-fail) on the National Council Licensure Examination-Registered Nurses (NCLEX-RN) for accelerated BSN programs. The purpose of this study was to compare potential predictors of NCLEX outcomes in graduates of first-degree accelerated (FDA; n=62) and second-degree accelerated (SDA; n=173) BSN programs sharing a common nursing curriculum. In this retrospective study, bivariate analyses and multiple logistic regression assessed significance of selected demographic and academic characteristics as predictors of NCLEX-RN outcomes. FDA graduates were more likely than SDA graduates to fail the NCLEX-RN (P=.0013). FDA graduates were more likely to speak English as a second or additional language (P<.0001), have lower end-of-program GPA and HESI Exit Exam scores (both P<.0001), and have a higher proportions of grades ≤ C (P=.0023). All four variables were significant predictors of NCLEX-RN outcomes within both FDA and SDA programs. The only significant predictors in adjusted logistic regression of NCLEX-RN outcome for the pooled FDA+SDA graduate sample were proportion of grades ≤ C (a predictor of NCLEX-RN failure) and HESI Exit Exam score (a predictor of passing NCLEX-RN). Grades of C or lower on any course may indicate inadequate mastery of critical NCLEX-RN content and increased risk of NCLEX-RN failure. Copyright © 2016 Elsevier Inc. All rights reserved.

  16. Text messaging to support a perinatal collaborative care model for depression: A multi-methods inquiry.

    PubMed

    Bhat, Amritha; Mao, Johnny; Unützer, Jürgen; Reed, Susan; Unger, Jennifer

    Mental health care integrated into obstetric settings improves access to perinatal depression treatments. Digital interactions such as text messaging between patient and provider can further improve access. We describe the use of text messaging within a perinatal Collaborative Care (CC) program, and explore the association of text messaging content with perinatal depression outcomes. We analyzed data from an open treatment trial of perinatal CC in a rural obstetric clinic. Twenty five women with Patient Health Questionnaire-9 score of ≥10 enrolled in CC, and used text messaging to communicate with their Care Manager(CM). We used surveys and focus groups to assessacceptability of text messaging with surveys and focus groups. We calculated the number of text messages exchanged, and analyzed content to understand usage patterns. We explored association between text messaging content and depression outcomes. CMs initiated 85.4% messages, and patients responded to 86.9% messages. CMs used text messaging for appointment reminders, and patients used it to obtain obstetric and parenting information. CMs had concerns about the likelihood of boundary violations. Patients appreciated the asynchronous nature of text messaging. Text messaging is feasible and acceptable within a perinatal CC program. We need further research into the effectiveness of text messaging content, and response protocols. Copyright © 2018 Elsevier Inc. All rights reserved.

  17. Motivating Smoking Cessation Text Messages: Perspectives from Pregnant Smokers.

    PubMed

    Schindler-Ruwisch, Jennifer M; Leavitt, Leah E; Macherelli, Laura E; Turner, Monique M; Abroms, Lorien C

    2018-06-01

    The purpose of this research is to analyze cessation text-messages written by pregnant smokers to elucidate the target population's preferred content and message attributes. To achieve this goal, the objectives of this study are three-fold; to qualitatively code messages written by pregnant smokers for frame, type of appeal, and intended target. Study participants were recruited as part of a larger trial of pregnant smokers who were enrolled in a text-messaging program or control group and surveyed 1 month post-enrollment. Each participant was asked to write a brief message to another pregnant smoker and two independent coders qualitatively analyzed responses. User generated messages (N = 51) were equally loss and gain framed, and the most common appeals were: fear, guilt, cognitive, hope and empathy, in order of most to least frequent. The target of the majority of the messages was the baby. Allowing pregnant smokers to write cessation text-messages for other pregnant women can provide relevant insight into intervention content. Specifically, pregnant smokers appear to equally promote gain and loss frames, but may prefer messages that include components of fear and guilt related to the impact of smoking on their baby. Additional research is needed to systematically uncover perspectives of pregnant smokers to ensure interventions are optimally effective.

  18. Text Messaging, Teen Outreach Program, and Sexual Health Behavior: A Cluster Randomized Trial

    PubMed Central

    Devine, Sharon; Schmiege, Sara J.; Pickard, Leslie; Campbell, Jon; Shlay, Judith C.

    2016-01-01

    Objectives. To consider whether Youth All Engaged! (a text message intervention) intensified the effects of the adolescent pregnancy prevention Teen Outreach Program (control) for youths. Methods. In this trial performed in Denver, Colorado, from 2011 to 2014, we randomized 8 Boys & Girls Clubs each of 4 years into 32 clubs per year combinations to ensure each club would serve as a treatment site for 2 years and a control site for 2 years. Control intervention consisted of the Teen Outreach Program only. We enrolled 852 youths (aged 14–18 years), and 632 were retained at follow-up, with analytic samples ranging from 50 to 624 across outcomes. We examined program costs, and whether the intervention increased condom and contraceptive use, access to care, and pregnancy prevention. Results. Control program costs were $1184 per participant, and intervention costs were an additional $126 per participant (+10.6%). There were no statistically significant differences in primary outcomes for the full sample. Hispanic participants in the intervention condition had fewer pregnancies at follow-up (1.79%) than did those in the control group (6.72%; P = .02). Conclusions. Youth All Engaged is feasible, low cost, and could have potential benefits for Hispanic youths. PMID:27689478

  19. Secure Web-Site Access with Tickets and Message-Dependent Digests

    USGS Publications Warehouse

    Donato, David I.

    2008-01-01

    Although there are various methods for restricting access to documents stored on a World Wide Web (WWW) site (a Web site), none of the widely used methods is completely suitable for restricting access to Web applications hosted on an otherwise publicly accessible Web site. A new technique, however, provides a mix of features well suited for restricting Web-site or Web-application access to authorized users, including the following: secure user authentication, tamper-resistant sessions, simple access to user state variables by server-side applications, and clean session terminations. This technique, called message-dependent digests with tickets, or MDDT, maintains secure user sessions by passing single-use nonces (tickets) and message-dependent digests of user credentials back and forth between client and server. Appendix 2 provides a working implementation of MDDT with PHP server-side code and JavaScript client-side code.

  20. Designing Anti-Binge Drinking Prevention Messages: Message Framing vs. Evidence Type.

    PubMed

    Kang, Hannah; Lee, Moon J

    2017-09-27

    We investigated whether presenting anti-binge drinking health campaign messages in different message framing and evidence types influences college students' intention to avoid binge drinking, based on prospect theory (PT) and exemplification theory. A 2 (message framing: loss-framed message/gain-framed message) X 2 (evidence type: statistical/narrative) between-subjects factorial design with a control group was conducted with 156 college students. College students who were exposed to the loss-framed message condition exhibited a higher level of intention to avoid binge drinking in the near future than those who did not see any messages (the control group). This finding was mainly among non-binge drinkers. Regardless of evidence type, those who were exposed to the messages exhibited a higher level of intention to avoid binge drinking than those in the control group. This is also mainly among non-binge drinkers. We also found the main effects of message framing and evidence type on attitude toward the message and the main effect of message framing on attitude toward drinking.

  1. Streamlining Tsunami Messages (e.g., Warnings) of the US National Tsunami Warning Center, Palmer, Alaska

    NASA Astrophysics Data System (ADS)

    Gregg, C. E.; Sorensen, J. H.; Vogt Sorensen, B.; Whitmore, P.; Johnston, D. M.

    2016-12-01

    Spurred in part by world-wide interest in improving warning messaging for and response to tsunamis in the wake of several catastrophic tsunamis since 2004 and growing interest at the US National Weather Service (NWS) to integrate social science into their Tsunami Program, the NWS Tsunami Warning Centers in Alaska and Hawaii have made great progress toward enhancing tsunami messages. These include numerous products, among them being Tsunami Warnings, Tsunami Advisories and Tsunami Watches. Beginning in 2010 we have worked with US National Tsunami Hazard Mitigation Program (NTHMP) Warning Coordination and Mitigation and Education Subcommittee members; Tsunami Program administrators; and NWS Weather Forecast Officers to conduct a series of focus group meetings with stakeholders in coastal areas of Alaska, American Samoa, California, Hawaii, North Carolina, Oregon, US Virgin Islands and Washington to understand end-user perceptions of existing messages and their existing needs in message products. We also reviewed research literature on behavioral response to warnings to develop a Tsunami Warning Message Metric that could be used to guide revisions to tsunami warning messages of both warning centers. The message metric is divided into categories of Message Content, Style, Order, Formatting, and Receiver Characteristics. A sample message is evaluated by cross-referencing the message with the operational definitions of metric factors. Findings are then used to guide revisions of the message until the characteristics of each factor are met, whether the message is a full length or short message. Incrementally, this work contributed to revisions in the format, content and style of message products issued by the National Tsunami Warning Center (NTWC). Since that time, interest in short warning messages has continued to increase and in May 2016 the NTWC began efforts to revise message products to take advantage of recent NWS policy changes allowing use of mixed-case text

  2. A visual interface for generic message translation

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Blattner, M.M.; Kou, L.T.; Carlson, J.W.

    1988-06-21

    This paper is concerned with the translation of data structures we call messages. Messages are an example of a type of data structure encountered in generic data translation. Our objective is to provide a system that the nonprogrammer can use to specify the nature of translations from one type to another. For this reason we selected a visual interface that uses interaction techniques that do not require a knowledge of programming or command languages. The translator must accomplish two tasks: create a mapping between fields in different message types that specifies which fields have similar semantic content, and reformat ormore » translate data specifications within those fields. The translations are accomplished with appropriate, but different, visual metaphors. 14 refs., 4 figs.« less

  3. Editor's message: Student involvement

    Treesearch

    Bill Block

    2012-01-01

    In the initial Editor's Message of this volume, I stated my intent to involve more students in the publication process. A number of people commented on it being a good idea, but only a couple have followed up. One was Paul Krausman, President of The Wildlife Society. We matched graduate students from the University of Montana wildlife program with manuscripts...

  4. Cross-sectional survey evaluating Text4Mood: mobile health program to reduce psychological treatment gap in mental healthcare in Alberta through daily supportive text messages.

    PubMed

    Agyapong, Vincent I O; Mrklas, Kelly; Juhás, Michal; Omeje, Joy; Ohinmaa, Arto; Dursun, Serdar M; Greenshaw, Andrew J

    2016-11-08

    To complement the oversubscribed counselling services in Alberta, the Text4Mood program which delivers daily supportive text messages to subscribers was launched on the 18th of January, 2016. This report presents an evaluation of self-reports of the impact of the program on the mental wellbeing of subscribers. An online link to a survey questionnaire was created by an expert group and delivered via text messages to mobile phones of all 4111 active subscribers of the Text4Mood program as of April 11, 2016. Overall, 894 subscribers answered the survey (overall response rate 21.7 %). The response rate for individual questions varied and is reported alongside the results. Most respondents were female (83 %, n = 668), Caucasian (83 %, n = 679), and diagnosed with a psychiatric disorder (38 %, n = 307), including Depression (25.4 %, n = 227) and Anxiety (20 %, n = 177). Overall, 52 % (n = 461) signed up for Text4Mood to help elevate their mood and 24.5 % (n = 219) signed up to help them worry less. Most respondents felt the text messages made them more hopeful about managing issues in their lives (81.7 %, n = 588), feel in charge of managing depression and anxiety (76.7 %, n = 552), and feel connected to a support system (75.2 %, n = 542). The majority of respondents felt Text4Mood improved their overall mental well-being (83.1 %, n = 598). Supportive text messages are a feasible and acceptable way of delivering adjunctive psychological interventions to the general public with mental health problems. Given that text messages are affordable, readily available, and can be delivered to thousands of people simultaneously, they present an opportunity to help close the psychological treatment gap for mental health patients in Alberta and elsewhere.

  5. 78 FR 62344 - Sabine Pass Liquefaction Expansion, LLC, Sabine Pass Liquefaction, LLC, and Sabine Pass LNG, L.P...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-10-18

    .... CP13-553-000] Sabine Pass Liquefaction Expansion, LLC, Sabine Pass Liquefaction, LLC, and Sabine Pass... 30, 2013, Sabine Pass Liquefaction Expansion, LLC, Sabine Pass Liquefaction, LLC, and Sabine Pass LNG, L.P. (collectively referred to as Sabine Pass) filed with the Federal Energy Regulatory Commission...

  6. The Prime Time Diet: A Content Analysis of Eating Behavior and Food Messages in Television Program Content and Commercials.

    ERIC Educational Resources Information Center

    Story, Mary; Faulkner, Patricia

    1990-01-01

    Identifies and analyzes messages related to food and eating behavior as presented on prime time television programing and commercials. Finds that food references occur an average of 4.8 times per 30 minutes and that over half of all food references were for low nutrient beverages and sweets, which is inconsistent with healthy dietary guidelines.…

  7. SmartMom Text Messaging for Prenatal Education: A Qualitative Focus Group Study to Explore Canadian Women’s Perceptions

    PubMed Central

    Munro, Sarah; Hui, Amber; Salmons, Vanessa; Solomon, Carolyn; Gemmell, Emily; Torabi, Nahal

    2017-01-01

    Background We engaged Canadian women in the development of a prenatal education program delivered via one-way text messaging called SmartMom. SmartMom is the first peer-reviewed, evidence-based mHealth program for prenatal education in Canada and the first to be endorsed by the Society of Obstetricians and Gynaecologists of Canada. Objective To explore women’s preferences for a prenatal education program by text messaging. Methods We conducted a qualitative focus group study in three Canadian communities in the Northern Health Authority. Women completed a demographic questionnaire, participated in a guided discussion about their pregnancy information-seeking behavior, reviewed a printed copy of the SmartMom text messages, and then engaged in a moderated discussion about their perceptions of the usability of the SmartMom program. Open-ended questions explored women’s perceptions regarding the message content, acceptability of receiving information by text message, positive health behaviors they might engage in after receiving a message, modifiable program factors, and intention to use the program. Thematic analysis of transcribed audio recordings was undertaken and modifications were made to the SmartMom program based on these findings. Results A total of 40 women participated in seven focus groups in three rural northern communities. The vast majority had a mobile phone (39/40, 98%), used text messages “all the time” (28/40, 70%), and surfed the Internet on their phone (37/40, 93%). Participants perceived SmartMom to be highly acceptable and relevant. The text message modality reflected how participants currently sought pregnancy-related information and provided them with local information tailored to their gestational age, which they had not received through other pregnancy resources. Women recommended adding the opportunity to receive supplemental streams of messages tailored to their individual needs, for example, depression, pregnancy after previous

  8. Improving Refill Adherence in Medicare Patients With Tailored and Interactive Mobile Text Messaging: Pilot Study

    PubMed Central

    Jeong, Erwin W; Feger, Erin; Noble, Harmony K; Kmiec, Magdalen; Prayaga, Ram S

    2018-01-01

    Background Nonadherence is a major concern in the management of chronic conditions such as hypertension, cardiovascular disease, and diabetes where patients may discontinue or interrupt their medication for a variety of reasons. Text message reminders have been used to improve adherence. However, few programs or studies have explored the benefits of text messaging with older populations and at scale. In this paper, we present a program design using tailored and interactive text messaging to improve refill rates of partially adherent or nonadherent Medicare members of a large integrated health plan. Objective The aim of this 3-month program was to gain an understanding of whether tailored interactive text message dialogues could be used to improve medication refills in Medicare patients with one or more chronic diseases. Methods We used the mPulse Mobile interactive text messaging solution with partially adherent and nonadherent Medicare patients (ie, over age 65 years or younger with disabilities) of Kaiser Permanente Southern California (KP), a large integrated health plan, and compared refill rates of the text messaging group (n=12,272) to a group of partially adherent or nonadherent Medicare patients at KP who did not receive text messages (nontext messaging group, n=76,068). Both groups were exposed to other forms of refill and adherence outreach including phone calls, secure emails, and robo-calls from December 2016 to February 2017. Results The text messaging group and nontext messaging group were compared using an independent samples t test to test difference in group average of refill rates. There was a significant difference in medication refill rates between the 2 groups, with a 14.07 percentage points higher refill rate in the text messaging group (P<.001). Conclusions The results showed a strong benefit of using this text messaging solution to improve medication refill rates among Medicare patients. These findings also support using interactive text

  9. Using Text Message Surveys to Evaluate a Mobile Sexual Health Question-and-Answer Service.

    PubMed

    Willoughby, Jessica Fitts; L'Engle, Kelly Ladin; Jackson, Kennon; Brickman, Jared

    2018-01-01

    Text message programs for sexual health are becoming increasingly popular as practitioners aim to meet youth on media they use frequently. Two-way mobile health (mHealth) interventions allow for feedback solicitation from participants. This study explores the use of a text message survey to assess demographics and program feedback from users of an adolescent sexual health text message question-and-answer service. Development and feasibility of the short-message service survey are discussed. The text message survey achieved a 43.9% response rate, which is comparable to response rates of surveys conducted via other methods. When compared to respondents who used the service and completed an online in-school questionnaire, text survey respondents were more likely to be female and older. They also reported higher service satisfaction. Results have implications for text message service providers and researchers. This article examines a community application of a new intervention strategy and research methodology.

  10. Strategies for lowering attrition rates and raising NCLEX-RN pass rates.

    PubMed

    Higgins, Bonnie

    2005-12-01

    This study was designed to determine strategies to raise the NCLEX-RN pass rate and lower the attrition rate in a community college nursing program. Ex-post facto data were collected from 213 former nursing student records. Qualitative data were collected from 10 full-time faculty, 30 new graduates, and 45 directors of associate degree nursing programs in Texas. The findings linked the academic variables of two biology courses and three components of the preadmission test to completion of the nursing program. A relationship was found between one biology course, the science component of the preadmission test, the HESI Exit Examination score, and the nursing skills course to passing the NCLEX-RN. Qualitative data indicated preadmission requirements, campus counselors, remediation, faculty, test-item writing, and teaching method were instrumental in completion of the program and passing the NCLEX-RN.

  11. When message-frame fits salient cultural-frame, messages feel more persuasive.

    PubMed

    Uskul, Ayse K; Oyserman, Daphna

    2010-03-01

    The present study examines the persuasive effects of tailored health messages comparing those tailored to match (versus not match) both chronic cultural frame and momentarily salient cultural frame. Evidence from two studies (Study 1: n = 72 European Americans; Study 2: n = 48 Asian Americans) supports the hypothesis that message persuasiveness increases when chronic cultural frame, health message tailoring and momentarily salient cultural frame all match. The hypothesis was tested using a message about health risks of caffeine consumption among individuals prescreened to be regular caffeine consumers. After being primed for individualism, European Americans who read a health message that focused on the personal self were more likely to accept the message-they found it more persuasive, believed they were more at risk and engaged in more message-congruent behaviour. These effects were also found among Asian Americans who were primed for collectivism and who read a health message that focused on relational obligations. The findings point to the importance of investigating the role of situational cues in persuasive effects of health messages and suggest that matching content to primed frame consistent with the chronic frame may be a way to know what to match messages to.

  12. Exploring the feasibility of text messaging to support substance abuse recovery among youth in treatment

    PubMed Central

    Gonzales, Rachel; Douglas Anglin, M.; Glik, Deborah C.

    2014-01-01

    This exploratory study examined treatment involved youth opinions about (i) the utility of using text messaging to support recovery behaviors after treatment; (ii) important types of text messages that could help youth self-manage their substance use behaviors after treatment; and (iii) programmatic or logistical areas associated with text messaging programs. Eight focus groups were conducted with 67 youth (aged 12–24) enrolled in outpatient and residential publicly funded substance abuse treatment programs around Los Angeles County, California. Results highlight that 70% of youth positively endorsed text messaging as a viable method of intervention during aftercare, 20% expressed ambivalent feelings, and 10% conveyed dislike. Thematic data exploration revealed seven themes related to the types of text messages youth recommend for helping youth avoid relapse after treatment, including positive appraisal (90%), lifestyle change tips (85%), motivational reinforcing (80%), coping advice (75%), confidence boosters (65%), inspiration encouragement (55%), and informational resources (50%). Youth opinions about key logistical features of text messaging programs, including frequency, timing, sender, and length are also examined. Findings offer insight for the development and enhancement of recovery support interventions with substance abusing youth. Results imply text messaging may serve as a promising opportunity for recovery support for young people with substance abuse problems. PMID:24038196

  13. Exploring the feasibility of text messaging to support substance abuse recovery among youth in treatment.

    PubMed

    Gonzales, Rachel; Douglas Anglin, M; Glik, Deborah C

    2014-02-01

    This exploratory study examined treatment involved youth opinions about (i) the utility of using text messaging to support recovery behaviors after treatment; (ii) important types of text messages that could help youth self-manage their substance use behaviors after treatment; and (iii) programmatic or logistical areas associated with text messaging programs. Eight focus groups were conducted with 67 youth (aged 12-24) enrolled in outpatient and residential publicly funded substance abuse treatment programs around Los Angeles County, California. Results highlight that 70% of youth positively endorsed text messaging as a viable method of intervention during aftercare, 20% expressed ambivalent feelings, and 10% conveyed dislike. Thematic data exploration revealed seven themes related to the types of text messages youth recommend for helping youth avoid relapse after treatment, including positive appraisal (90%), lifestyle change tips (85%), motivational reinforcing (80%), coping advice (75%), confidence boosters (65%), inspiration encouragement (55%), and informational resources (50%). Youth opinions about key logistical features of text messaging programs, including frequency, timing, sender, and length are also examined. Findings offer insight for the development and enhancement of recovery support interventions with substance abusing youth. Results imply text messaging may serve as a promising opportunity for recovery support for young people with substance abuse problems.

  14. Pass Pricing Demonstration in Cincinnati, OH

    DOT National Transportation Integrated Search

    1984-11-01

    This report presents an evaluation of the Cincinnati Pass Pricing Demonstration. The demonstration, implemented and operated by Queen City Metro in part through a grant from the UMTA Service and Methods Demonstration Program, began in October 1981 an...

  15. An interactive parallel programming environment applied in atmospheric science

    NASA Technical Reports Server (NTRS)

    vonLaszewski, G.

    1996-01-01

    This article introduces an interactive parallel programming environment (IPPE) that simplifies the generation and execution of parallel programs. One of the tasks of the environment is to generate message-passing parallel programs for homogeneous and heterogeneous computing platforms. The parallel programs are represented by using visual objects. This is accomplished with the help of a graphical programming editor that is implemented in Java and enables portability to a wide variety of computer platforms. In contrast to other graphical programming systems, reusable parts of the programs can be stored in a program library to support rapid prototyping. In addition, runtime performance data on different computing platforms is collected in a database. A selection process determines dynamically the software and the hardware platform to be used to solve the problem in minimal wall-clock time. The environment is currently being tested on a Grand Challenge problem, the NASA four-dimensional data assimilation system.

  16. Development of macaronic Hindi-English ‘Hinglish’ text message content for a coronary heart disease secondary prevention programme

    PubMed Central

    Thakkar, Jay; Karthikeyan, Ganesan; Purohit, Gaurav; Thakkar, Swetha; Sharma, Jitender; Verma, Sunilkumar; Parakh, Neeraj; Seth, Sandeep; Mishra, Sundeep; Yadav, Rakesh; Singh, Sandeep; Joshi, Rohina; Thiagalingam, Aravinda; Chow, Clara K; Redfern, Julie

    2016-01-01

    Background Coronary heart disease (CHD) is a leading cause of morbidity and mortality in India. Text message based prevention programs have demonstrated reduction in cardiovascular risk factors among patients with CHD in selected populations. Customisation is important as behaviour change is influenced by culture and linguistic context. Objectives To customise a mobile phone text message program supporting behaviour and treatment adherence in CHD for delivery in North India. Methods We used an iterative process with mixed methods involving three phases: (1) Initial translation, (2) Review and incorporation of feedback including review by cardiologists in India to assess alignment with local guidelines and by consumers on perceived utility and clarity and (3) Pilot testing of message management software. Results Messages were translated in three ways: symmetrical translation, asymmetrical translation and substitution. Feedback from cardiologists and 25 patients was incorporated to develop the final bank. Patients reported Hinglish messages were easy to understand (93%) and useful (78%). The software located in Australia successfully delivered messages to participants based in Delhi-surrounds (India). Conclusions Our process for customisation of a text message program considered cultural, linguistic and the medical context of potential participants. This is important in optimising intervention fidelity across populations enabling examination of the generalisability of text message programs across populations. We also demonstrated the customised program was acceptable to patients in India and that a centralised cross-country delivery model was feasible. This process could be used as a guide for other groups seeking to customise their programs. Trial registration number TEXTMEDS Australia (Parent study)—ACTRN 12613000793718. PMID:27752288

  17. A lightweight messaging-based distributed processing and workflow execution framework for real-time and big data analysis

    NASA Astrophysics Data System (ADS)

    Laban, Shaban; El-Desouky, Aly

    2014-05-01

    To achieve a rapid, simple and reliable parallel processing of different types of tasks and big data processing on any compute cluster, a lightweight messaging-based distributed applications processing and workflow execution framework model is proposed. The framework is based on Apache ActiveMQ and Simple (or Streaming) Text Oriented Message Protocol (STOMP). ActiveMQ , a popular and powerful open source persistence messaging and integration patterns server with scheduler capabilities, acts as a message broker in the framework. STOMP provides an interoperable wire format that allows framework programs to talk and interact between each other and ActiveMQ easily. In order to efficiently use the message broker a unified message and topic naming pattern is utilized to achieve the required operation. Only three Python programs and simple library, used to unify and simplify the implementation of activeMQ and STOMP protocol, are needed to use the framework. A watchdog program is used to monitor, remove, add, start and stop any machine and/or its different tasks when necessary. For every machine a dedicated one and only one zoo keeper program is used to start different functions or tasks, stompShell program, needed for executing the user required workflow. The stompShell instances are used to execute any workflow jobs based on received message. A well-defined, simple and flexible message structure, based on JavaScript Object Notation (JSON), is used to build any complex workflow systems. Also, JSON format is used in configuration, communication between machines and programs. The framework is platform independent. Although, the framework is built using Python the actual workflow programs or jobs can be implemented by any programming language. The generic framework can be used in small national data centres for processing seismological and radionuclide data received from the International Data Centre (IDC) of the Preparatory Commission for the Comprehensive Nuclear

  18. Integrating a Natural Language Message Pre-Processor with UIMA

    DTIC Science & Technology

    2008-01-01

    Carnegie Mellon Language Technologies Institute NL Message Preprocessing with UIMA Copyright © 2008, Carnegie Mellon. All Rights Reserved...Integrating a Natural Language Message Pre-Processor with UIMA Eric Nyberg, Eric Riebling, Richard C. Wang & Robert Frederking Language Technologies Institute...with UIMA 5a. CONTRACT NUMBER 5b. GRANT NUMBER 5c. PROGRAM ELEMENT NUMBER 6. AUTHOR(S) 5d. PROJECT NUMBER 5e. TASK NUMBER 5f. WORK UNIT NUMBER

  19. Using Facebook and text messaging to deliver a weight loss program to college students.

    PubMed

    Napolitano, Melissa A; Hayes, Sharon; Bennett, Gary G; Ives, Allison K; Foster, Gary D

    2013-01-01

    Between 31 and 35% of the college-aged population is overweight or obese, yet few weight loss trials for this population have been conducted. This study examined the feasibility, acceptability, and initial efficacy of a technology-based 8-week weight loss intervention among college students. Students (N = 52) were randomly assigned to one of the three arms: Facebook (n = 17); Facebook Plus text messaging and personalized feedback (n = 18); Waiting List control (n = 17), with assessments at 4 weeks and 8 weeks (post-treatment). Participants were 20.47 ± 2.19 years old, 86.45 ± 17.11 kg, with a body mass index of 31.36 ± 5.3 kg/m(2) . Participants were primarily female (86.5%), and the sample was racially diverse (57.7% Caucasian, 30.8% African American, 5.8% Hispanic, and 5.7% other races). The primary outcome was weight loss after 8 weeks (post-treatment); 96.0% of the participants completed this assessment. At 8 weeks, the Facebook Plus group had significantly greater weight loss (-2.4 ± 2.5 kg) than the Facebook (-0.63 ± 2.4 kg) and Waiting List (-0.24 ± 2.6 kg) (both Ps < 0.05). Weight change at 8 weeks was not significantly different between the Facebook and Waiting List groups. Results show preliminary efficacy and acceptability of the two active intervention arms (97.0% found the program helpful, 81.3% found the videos/handouts helpful, and 100% would recommend the program to others). Results indicate the potential for an innovative weight loss intervention that uses technology platforms (Facebook and text messaging) that are frequently used and already integrated into the cultural life of college students. Copyright © 2012 The Obesity Society.

  20. Education Bill passes

    NASA Astrophysics Data System (ADS)

    Richman, Barbara T.

    On March 2 the U.S. House of Representatives passed a bill authorizing $425 million for science and mathematics education in fiscal 1984; the authorization is $350 million more than President Ronald Reagan requested in his budget proposal (Eos, February 15, 1983, p. 65).H.R. 1310 allocates $295 million to the Department of Education not only to improve precollege instruction in science and math, but to beef up foreign language training to aid in improving international communication among scientists. The bill also allots $130 million to the National Science Foundation for a variety of programs, the lion's share of which aims to upgrade research equipment at colleges and universities. It is hoped that industry will match the $100 million targeted for this program.

  1. Improving Refill Adherence in Medicare Patients With Tailored and Interactive Mobile Text Messaging: Pilot Study.

    PubMed

    Brar Prayaga, Rena; Jeong, Erwin W; Feger, Erin; Noble, Harmony K; Kmiec, Magdalen; Prayaga, Ram S

    2018-01-30

    Nonadherence is a major concern in the management of chronic conditions such as hypertension, cardiovascular disease, and diabetes where patients may discontinue or interrupt their medication for a variety of reasons. Text message reminders have been used to improve adherence. However, few programs or studies have explored the benefits of text messaging with older populations and at scale. In this paper, we present a program design using tailored and interactive text messaging to improve refill rates of partially adherent or nonadherent Medicare members of a large integrated health plan. The aim of this 3-month program was to gain an understanding of whether tailored interactive text message dialogues could be used to improve medication refills in Medicare patients with one or more chronic diseases. We used the mPulse Mobile interactive text messaging solution with partially adherent and nonadherent Medicare patients (ie, over age 65 years or younger with disabilities) of Kaiser Permanente Southern California (KP), a large integrated health plan, and compared refill rates of the text messaging group (n=12,272) to a group of partially adherent or nonadherent Medicare patients at KP who did not receive text messages (nontext messaging group, n=76,068). Both groups were exposed to other forms of refill and adherence outreach including phone calls, secure emails, and robo-calls from December 2016 to February 2017. The text messaging group and nontext messaging group were compared using an independent samples t test to test difference in group average of refill rates. There was a significant difference in medication refill rates between the 2 groups, with a 14.07 percentage points higher refill rate in the text messaging group (P<.001). The results showed a strong benefit of using this text messaging solution to improve medication refill rates among Medicare patients. These findings also support using interactive text messaging as a cost-effective, convenient, and user

  2. Impact of Text Message Reminders on Caregivers’ Adherence to a Home Fortification Program Against Child Anemia in Rural Western China: A Cluster-Randomized Controlled Trial

    PubMed Central

    Zhou, Huan; Sun, Shuai; Sylvia, Sean; Yue, Ai; Shi, Yaojiang; Zhang, Linxiu; Medina, Alexis; Rozelle, Scott

    2016-01-01

    Objectives. To test whether text message reminders sent to caregivers improve the effectiveness of a home micronutrient fortification program in western China. Methods. We carried out a cluster-randomized controlled trial in 351 villages (clusters) in Shaanxi Province in 2013 and 2014, enrolling children aged 6 to 12 months. We randomly assigned each village to 1 of 3 groups: free delivery group, text messaging group, or control group. We collected information on compliance with treatments and hemoglobin concentrations from all children at baseline and 6-month follow-up. We estimated the intent-to-treat effects on compliance and child anemia using a logistic regression model. Results. There were 1393 eligible children. We found that assignment to the text messaging group led to an increase in full compliance (marginal effect = 0.10; 95% confidence interval [CI] = 0.03, 0.16) compared with the free delivery group and decrease in the rate of anemia at end line relative to the control group (marginal effect = −0.07; 95% CI = −0.12, −0.01), but not relative to the free delivery group (marginal effect = −0.03; 95% CI = −0.09, 0.03). Conclusions. Text messages improved compliance of caregivers to a home fortification program and children’s nutrition. PMID:27077354

  3. Education for all draws upon population education messages.

    PubMed

    1991-01-01

    In May 1991, UNESCO and the Ministry of Education of Pakistan sponsored a Regional Workshop for the Integration of Population Education in Asia-Pacific Programme of Education for All in Islamabad, Pakistan. Prior to the workshop, resource persons and experts met to develop guidelines for participants that were geared towards curriculum and material needs and core population education messages. 1 workshop group addressed integration of population education messages into primary education and the other into literacy programs. All participants observed and analyzed the problems and needs of a Muslim community and Saidpur village. The 1st group visited primary schools and spoke to teachers. The participants agreed that population education messages should be integrated into social studies, science, languages, and religion subjects at grade levels 3-5. The messages should include population related beliefs and values, problems of population growth, small family size, responsible parenthood, sex preference, population and development, the role of elders, and improving the status of women. They tested 4 of 11 developed lesson plans. Both teachers and students were generally pleased, but believed that posters and illustrations would better the plans. The other group conducted a needs assessment survey among 27 Muslim families. Participants found 100 population related issues that needed to be addressed in literacy programs. These issues fit into 6 categories and the group focused on social and cultural values and beliefs. Participants developed materials that highlighted several topics, such as early marriage and preference for males. They used puppet shows, puzzle games, posters and discussions, and story telling with pictures to communicate the messages. Puppet shows were the most popular method among housewives.

  4. Calculating inspector probability of detection using performance demonstration program pass rates

    NASA Astrophysics Data System (ADS)

    Cumblidge, Stephen; D'Agostino, Amy

    2016-02-01

    The United States Nuclear Regulatory Commission (NRC) staff has been working since the 1970's to ensure that nondestructive testing performed on nuclear power plants in the United States will provide reasonable assurance of structural integrity of the nuclear power plant components. One tool used by the NRC has been the development and implementation of the American Society of Mechanical Engineers (ASME) Boiler and Pressure Vessel Code Section XI Appendix VIII[1] (Appendix VIII) blind testing requirements for ultrasonic procedures, equipment, and personnel. Some concerns have been raised, over the years, by the relatively low pass rates for the Appendix VIII qualification testing. The NRC staff has applied statistical tools and simulations to determine the expected probability of detection (POD) for ultrasonic examinations under ideal conditions based on the pass rates for the Appendix VIII qualification tests for the ultrasonic testing personnel. This work was primarily performed to answer three questions. First, given a test design and pass rate, what is the expected overall POD for inspectors? Second, can we calculate the probability of detection for flaws of different sizes using this information? Finally, if a previously qualified inspector fails a requalification test, does this call their earlier inspections into question? The calculations have shown that one can expect good performance from inspectors who have passed appendix VIII testing in a laboratory-like environment, and the requalification pass rates show that the inspectors have maintained their skills between tests. While these calculations showed that the PODs for the ultrasonic inspections are very good under laboratory conditions, the field inspections are conducted in a very different environment. The NRC staff has initiated a project to systematically analyze the human factors differences between qualification testing and field examinations. This work will be used to evaluate and prioritize

  5. A content analysis of health and physical activity messages marketed to African American children during after-school television programming.

    PubMed

    Outley, Corliss Wilson; Taddese, Abdissa

    2006-04-01

    To examine the number of food advertisements African American children are exposed to during children's television programming aired on predominantly African American and general television stations. A content analysis was conducted to identify and analyze the health-related content (HRC) and physical activity-related content (PARC) of food advertisements shown during children's television programming. Three sets of television advertisements from 3 stations (Black Entertainment Television, The WB [Warner Bros], and Disney Channel) served as the sample during a 1-week period in July 2005 (July 11-15), from 3 pm to 9 pm. In total, 1098 advertisements were recorded, with 256 food and beverage commercials used for this study. Results indicate that 36.3% of all commercials were based on fast food restaurants, 31.3% were for drinks, 16.8% were for candy, 13.7% were for cereals, and 2.0% were for snacks (percentages do not total 100 because of rounding). Compared with The WB and Disney Channel, Black Entertainment Television had significantly (P=.001) more food and beverage advertisements. Few HRC or PARC advertisements were shown. Of 256 food and beverage commercials, only 8.2% contained HRC and 9.4% had PARC. Also, the HRC and PARC scenes contained messages that were implied vs explicitly talking about the health or physical benefits of the product. African American children are overexposed to numerous types of food and beverage advertisements. These advertisements do not provide an adequate level of positive HRC and PARC messages. Consequently, the messages that are portrayed may undermine efforts to teach African American children about the importance of healthy living and physical activity.

  6. Theater dramatizes ORT message.

    PubMed

    White, K

    1990-04-01

    The Zambian Control of Diarrheal Diseases (CDD) Program sought the assistance of 2 popular theater groups to develop a play on diarrhea including messages on using oral rehydration therapy (ORT), breast feeding, continued feeding, and using fluids. This was a more appropriate channel for promoting ORT because only 30% of the population had access to a radio and even less to a television set. The groups performed their 35-40 minute plays, complete with dancing and singing, in the local language for 40 different high density communities in Lusaka 6 times/week for 3 months. Before each play, 1 group went door to door telling the occupants that they were going to perform a play about diarrhea management, specifically ORT. If no one could come, the group described ORT for the occupants. The other group held discussions after each performance to determine what learned and to correct any misconceptions about ORT. 1 group concentrated on bottle feeding as the cause of diarrhea while the other group concentrated on poor sanitation and personal hygiene. The groups always performed in locations convenient to mothers, such as markets, outside clinics, and schools, thereby reaching an estimated 10,000 people. Men also attended the plays which was good because fathers often decide whether or not to use ORT for a sick child. Several performances were recorded and aired on local language radio programs to increase awareness of ORT. The entire 1989 campaign of the CDD Program cost $3000 while radio spots for the same period cost the program $8000-10,000. Popular theater is now being used to publicize many other health messages, such as AIDS-prevention.

  7. A message to school girls.

    PubMed

    Akinwande, A

    1993-06-01

    Information, education, and communication (IEC) programs need to be strengthened to appeal to adolescents, who are increasingly contributing to unwanted pregnancy and are using abortion as a means of birth control. Successful IEC programs have the following characteristics: 1) established communication theories that guide development of materials; 2) a multimedia and a mass media approach to information dissemination, and 3) emphasis on visual displays. The primary emphasis should be on presentation of a concise, clear message with the appropriate visual medium. Many communication specialists in developing countries, however, lack the training to design and use effective IEC software. Designing effective messages involves a process of integrating scientific ideas with artistic appeal. The aim is to stimulate the target audience to change its behavior of life style. The message must be convincing and contain practical and useful information. The IEC Software Design Cycle focuses on analysis and diagnosis, design production, pretesting and modification, and distribution and evaluation. Each of these processes are described. Necessary before any attempt is made is obtaining data on historical, sociocultural, and demographic characteristics, economic activities, health and social services, communication infrastructure, marriage and family life patterns, and decision making systems. Focus group discussions may be used to collect information about the target group. An example is given of the process of development, in a course through the Center or African Family Studies, of a poster about premarital sex directed to 11-16 year olds. On the basis of focus group discussions, it was decided that the message would be to encourage girls to talk with their mothers about family life and premarital sex. The poster was produced with 2 school girls talking in front of the school. The evaluation yielded modifications such as including a school building that resembled actual

  8. Audience reactions and receptivity to HIV prevention message concepts for people living with HIV.

    PubMed

    Uhrig, Jennifer D; Bann, Carla M; Wasserman, Jill; Guenther-Grey, Carolyn; Eroğlu, Doğan

    2010-04-01

    This study measured audience reactions and receptivity to five draft HIV prevention messages developed for people living with HIV (PLWH) to inform future HIV message choice and audience targeting decisions. Our premise was that message concepts that receive wide audience appeal constitute a strong starting point for designing future HIV prevention messages, program activities, and health communication and marketing campaigns for PLWH. The majority of participants indicated agreement with evaluative statements that expressed favorable attitudes toward all five of the message concepts we evaluated. Participants gave the lowest approval to the message promoting sero-sorting. Sociodemographic characteristics played less of a role in predicting differences in message perceptions than attitudes, beliefs and sexual behavior. The general appeal for these messages is encouraging given that messages were expressed in plain text without the support of other creative elements that are commonly used in message execution. These results confirm the utility of systematic efforts to generate and screen message concepts prior to large-scale testing.

  9. Does administering a comprehensive examination affect pass rates on the Registered Health Information Administrator certification examination?

    PubMed

    McNeill, Marjorie H

    2009-01-01

    The purpose of this research study was to determine whether the administration of a comprehensive examination before graduation increases the percentage of students passing the Registered Health Information Administrator certification examination. A t-test for independent means yielded a statistically significant difference between the Registered Health Information Administrator certification examination pass rates of health information administration programs that administer a comprehensive examination and programs that do not administer a comprehensive examination. Programs with a high certification examination pass rate do not require a comprehensive examination when compared with those programs with a lower pass rate. It is concluded that health information administration faculty at the local level should perform program self-analysis to improve student progress toward achievement of learning outcomes and entry-level competencies.

  10. Traffic Safety Messages on Dynamic Message Signs (DMS)

    DOT National Transportation Integrated Search

    2018-05-01

    This technical assistance report investigated the existing state of practice across the nation for placing safety campaign messages on dynamic message signs (DMS) and reviewed relevant studies that documented any evidence of effectiveness in influenc...

  11. Pass rates on the American Board of Family Medicine Certification Exam by residency location and size.

    PubMed

    Falcone, John L; Middleton, Donald B

    2013-01-01

    The Accreditation Council for Graduate Medical Education (ACGME) sets residency performance standards for the American Board of Family Medicine Certification Examination. This study aims are to describe the compliance of residency programs with ACGME standards and to determine whether residency pass rates depend on program size and location. In this retrospective cohort study, residency performance from 2007 to 2011 was compared with the ACGME performance standards. Simple linear regression was performed to see whether program pass rates were dependent on program size. Regional differences in performance were compared with χ(2) tests, using an α level of 0.05. Of 429 total residency programs, there were 205 (47.8%) that violate ACGME performance standards. Linear regression showed that program pass rates were positively correlated and dependent on program size (P < .001). The median pass rate per state was 86.4% (interquartile range, 82.0-90.8. χ(2) Tests showed that states in the West performed higher than the other 3 US Census Bureau Regions (all P < .001). Approximately half of the family medicine training programs do not meet the ACGME examination performance standards. Pass rates are associated with residency program size, and regional variation occurs. These findings have the potential to affect ACGME policy and residency program application patterns.

  12. Multistakeholder Perspectives on Maternal Text Messaging Intervention in Uganda: Qualitative Study.

    PubMed

    Ilozumba, Onaedo; Dieleman, Marjolein; Van Belle, Sara; Mukuru, Moses; Bardají, Azucena; Broerse, Jacqueline Ew

    2018-05-10

    Despite continued interest in the use of mobile health for improving maternal health outcomes, there have been limited attempts to identify relevant program theories. This study had two aims: first, to explicate the assumptions of program designers, which we call the program theory and second, to contrast this program theory with empirical data to gain a better understanding of mechanisms, facilitators, and barriers related to the program outcomes. To achieve the aforementioned objectives, we conducted a retrospective qualitative study of a text messaging (short message service) platform geared at improving individual maternal health outcomes in Uganda. Through interviews with program designers (n=3), we elicited 3 main designers' assumptions and explored these against data from qualitative interviews with primary beneficiaries (n=26; 15 women and 11 men) and health service providers (n=6), as well as 6 focus group discussions with village health team members (n=50) who were all involved in the program. Our study results highlighted that while the program designers' assumptions were appropriate, additional mechanisms and contextual factors, such as the importance of incentives for village health team members, mobile phone ownership, and health system factors should have been considered. Our results indicate that text messages could be an effective part of a more comprehensive maternal health program when context and system barriers are identified and addressed in the program theories. ©Onaedo Ilozumba, Marjolein Dieleman, Sara Van Belle, Moses Mukuru, Azucena Bardají, Jacqueline EW Broerse. Originally published in JMIR Mhealth and Uhealth (http://mhealth.jmir.org), 10.05.2018.

  13. MPI_XSTAR: MPI-based parallelization of XSTAR program

    NASA Astrophysics Data System (ADS)

    Danehkar, A.

    2017-12-01

    MPI_XSTAR parallelizes execution of multiple XSTAR runs using Message Passing Interface (MPI). XSTAR (ascl:9910.008), part of the HEASARC's HEAsoft (ascl:1408.004) package, calculates the physical conditions and emission spectra of ionized gases. MPI_XSTAR invokes XSTINITABLE from HEASoft to generate a job list of XSTAR commands for given physical parameters. The job list is used to make directories in ascending order, where each individual XSTAR is spawned on each processor and outputs are saved. HEASoft's XSTAR2TABLE program is invoked upon the contents of each directory in order to produce table model FITS files for spectroscopy analysis tools.

  14. OMG Do Not Say LOL: Obese Adolescents’ Perspectives on the Content of Text Messages to Enhance Weight Loss Efforts

    PubMed Central

    Woolford, Susan J.; Barr, Kathryn L.C.; Derry, Holly A.; Jepson, Christina M.; Clark, Sarah J.; Strecher, Victor J.; Resnicow, Kenneth

    2011-01-01

    Adolescents participating in weight loss programs experience difficulty adhering to behavior change recommendations. Communications technology provides a low cost means to increase the frequency of contact with adolescents which can improve their engagement and also lead to behavior change. Within a larger project on the development of tailored text messages for adolescents enrolled in an existing multidisciplinary weight management program, this study explored participants’ perspectives about message content. A library of messages was developed focused on topics central to weight management. Four focus groups were conducted with a total of 24 participants from the weight management program to gage their reactions to the messages. Detailed notes from the focus groups were analyzed to assess the acceptability of individual messages and to identify overriding themes. Results indicate that participants were very enthusiastic about receiving text messages. They preferred messages that provided recipe ideas, included successful weight loss strategies used by peers, and requested feedback regarding their progress. They preferred positive, encouraging, and direct messages. They were unanimous that messages should include encouraging symbols (e.g., exclamation points and “smiley faces”) as often as possible. They emphasized that any mention of unhealthy foods or behaviors would trigger them to eat those foods or engage in those behaviors. Text messaging acronyms (e.g., LOL) were considered too informal for messages from healthcare providers. This study suggests that including text messages in obesity interventions is acceptable to obese adolescents as a means of supporting their weight loss efforts, and it highlights the need for such messages to be carefully constructed. PMID:21869762

  15. Business Professionals Workplace Message Quality Perceptions

    ERIC Educational Resources Information Center

    Roach, Joy L.; Anderson, Marcia A.

    2007-01-01

    In light of today's large amount of written workplace communication, this study attempted to reveal information regarding the quality in which business messages are encoded on the job. Data were gathered through a questionnaire administered to a sample of 1994-2004 MBA graduates of three AACSB-accredited programs. Findings suggest that business…

  16. Does the Screening Status of Message Characters Affect Message Effects?

    ERIC Educational Resources Information Center

    Alber, Julia M.; Glanz, Karen

    2018-01-01

    Public health messages can be used to increase awareness about colorectal cancer screenings. Free or inexpensive images for creating health messages are readily available, yet little is known about how a pictured individual's engagement in the behavior of interest affects message outcomes. Participants (N = 360), aged 50 to 75 years, completed an…

  17. Designing text-messaging (SMS) in HIV programs: ethics-framed recommendations from the field

    PubMed Central

    Pérez, Guillermo Martínez; Hwang, Bella; Bygrave, Helen; Venables, Emilie

    2015-01-01

    Text messages (SMS) are being increasingly integrated into HIV programs across Southern Africa to improve patient adherence, linkage to care and provide psycho-social support. Careful attention needs to be paid to the design of SMS-based interventions for clients of HIV-care services to ensure that any potential harm, such as unwanted disclosure of HIV status, is minimized. In this article we propose a set of best practice recommendations to ensure that any SMS-based intervention considers ethical principles to safeguard safety, autonomy and confidentiality of its targeted HIV-positive beneficiaries. This analysis draws from our operational experience in Southern Africa in the design and conduct of mHealth interventions in the frame of HIV projects. The recommendations, framed in the context of the Belmont Report's three ethical pillars, may contribute to more safely operationalize any SMS service integrated into an HIV program if adopted by mHealth planners and implementers. We encourage actors to report on the ethical and methodological pathways followed when conducting SMS-based innovations to improve the wellbeing and quality provision of HIV-care for their targeted clients. PMID:26421096

  18. DMS message design workshops.

    DOT National Transportation Integrated Search

    2009-03-01

    This report summarizes the training conducted statewide regarding the design and display of messages on : dynamic message signs. The training is based on the Dynamic Message Sign Message Design and Display : Manual (0-4023-P3). Researchers developed ...

  19. Messages that matter: Age differences in affective responses to framed health messages.

    PubMed

    Mikels, Joseph A; Shuster, Michael M; Thai, Sydney T; Smith-Ray, Renae; Waugh, Christian E; Roth, Kayla; Keilly, Alexis; Stine-Morrow, Elizabeth A L

    2016-06-01

    Age differences in responses to framed health messages-which can influence judgments and decisions-are critical to understand yet relatively unexplored. Age-related emotional shifts toward positivity would be expected to differentially impact the affective responses of older and younger adults to framed messages. In this study, we measured the subjective and physiological affective responses of older and younger adults to gain- and loss-framed exercise promotion messages. Relative to older adults, younger adults exhibited greater negative reactivity to loss-framed health messages. These results suggest that health message framing does matter, but it depends on the age of the message recipient. (PsycINFO Database Record (c) 2016 APA, all rights reserved).

  20. Spot: A Programming Language for Verified Flight Software

    NASA Technical Reports Server (NTRS)

    Bocchino, Robert L., Jr.; Gamble, Edward; Gostelow, Kim P.; Some, Raphael R.

    2014-01-01

    The C programming language is widely used for programming space flight software and other safety-critical real time systems. C, however, is far from ideal for this purpose: as is well known, it is both low-level and unsafe. This paper describes Spot, a language derived from C for programming space flight systems. Spot aims to maintain compatibility with existing C code while improving the language and supporting verification with the SPIN model checker. The major features of Spot include actor-based concurrency, distributed state with message passing and transactional updates, and annotations for testing and verification. Spot also supports domain-specific annotations for managing spacecraft state, e.g., communicating telemetry information to the ground. We describe the motivation and design rationale for Spot, give an overview of the design, provide examples of Spot's capabilities, and discuss the current status of the implementation.

  1. Parallel Programming Strategies for Irregular Adaptive Applications

    NASA Technical Reports Server (NTRS)

    Biswas, Rupak; Biegel, Bryan (Technical Monitor)

    2001-01-01

    Achieving scalable performance for dynamic irregular applications is eminently challenging. Traditional message-passing approaches have been making steady progress towards this goal; however, they suffer from complex implementation requirements. The use of a global address space greatly simplifies the programming task, but can degrade the performance for such computations. In this work, we examine two typical irregular adaptive applications, Dynamic Remeshing and N-Body, under competing programming methodologies and across various parallel architectures. The Dynamic Remeshing application simulates flow over an airfoil, and refines localized regions of the underlying unstructured mesh. The N-Body experiment models two neighboring Plummer galaxies that are about to undergo a merger. Both problems demonstrate dramatic changes in processor workloads and interprocessor communication with time; thus, dynamic load balancing is a required component.

  2. Is Provider Secure Messaging Associated With Patient Messaging Behavior? Evidence From the US Army.

    PubMed

    Wolcott, Vickee; Agarwal, Ritu; Nelson, D Alan

    2017-04-06

    Secure messaging with health care providers offers the promise of improved patient-provider relationships, potentially facilitating outcome improvements. But, will patients use messaging technology in the manner envisioned by policy-makers if their providers do not actively use it? We hypothesized that the level and type of secure messaging usage by providers might be associated with messaging initiation by their patients. The study employed a dataset of health care and secure messaging records of more than 81,000 US Army soldiers and nearly 3000 clinicians with access to a patient portal system. We used a negative binomial regression model on over 25 million observations to determine the adjusted association between provider-initiated and provider-response messaging and subsequent messaging by their patients in this population over a 4-year period. Prior provider-initiated and response messaging levels were associated with new patient messaging when controlling for the patient's health care utilization and diagnoses, with the strongest association for high provider-response messaging level. Patients whose providers were highly responsive to the messages of other patients initiated 334% more secure messages (P<.001) than patients with providers who did not personally respond to other patients' messages. Our results indicate that provider messaging usage levels and types thereof predict their patients' subsequent communication behavior. The findings suggest the need for more study into the factors associated with provider messaging to fully understand the mechanisms of this relationship. ©Vickee Wolcott, Ritu Agarwal, D. Alan Nelson. Originally published in the Journal of Medical Internet Research (http://www.jmir.org), 06.04.2017.

  3. Effects of color scheme and message lines of variable message signs on driver performance.

    PubMed

    Lai, Chien-Jung

    2010-07-01

    The advancement in variable message signs (VMS) technology has made it possible to display message with various formats. This study presented an ergonomic study on the message design of Chinese variable message signs on urban roads in Taiwan. Effects of color scheme (one, two and three) and number of message lines (single, double and triple) of VMS on participants' response performance were investigated through a laboratory experiment. Results of analysis showed that color scheme and number of message lines are significant factors for participants' response time to VMS. Participants responded faster for two-color than for one- and three-color scheme. Participants also took less response time for double line message than for single and triple line message. Both color scheme and number of message lines had no significant effect on participants' response accuracy. The preference survey after the experiment showed that most participants preferred two-color scheme and double line message to the other combinations. The results can assist in adopting appropriate color scheme and number of message lines of Chinese VMS. Copyright 2009 Elsevier Ltd. All rights reserved.

  4. From Our Practices to Yours: Key Messages for the Journey to Integrated Behavioral Health.

    PubMed

    Gold, Stephanie B; Green, Larry A; Peek, C J

    The historic, cultural separation of primary care and behavioral health has caused the spread of integrated care to lag behind other practice transformation efforts. The Advancing Care Together study was a 3-year evaluation of how practices implemented integrated care in their local contexts; at its culmination, practice leaders ("innovators") identified lessons learned to pass on to others. Individual feedback from innovators, key messages created by workgroups of innovators and the study team, and a synthesis of key messages from a facilitated discussion were analyzed for themes via immersion/crystallization. Five key themes were captured: (1) frame integrated care as a necessary paradigm shift to patient-centered, whole-person health care; (2) initialize: define relationships and protocols up-front, understanding they will evolve; (3) build inclusive, empowered teams to provide the foundation for integration; (4) develop a change management strategy of continuous evaluation and course-correction; and (5) use targeted data collection pertinent to integrated care to drive improvement and impart accountability. Innovators integrating primary care and behavioral health discerned key messages from their practical experience that they felt were worth sharing with others. Their messages present insight into the challenges unique to integrating care beyond other practice transformation efforts. © Copyright 2017 by the American Board of Family Medicine.

  5. The Effects of Text Message Content on the Use of an Internet-Based Physical Activity Intervention in Hong Kong Chinese Adolescents.

    PubMed

    Lau, Erica Y; Lau, Patrick W C; Cai, Bo; Archer, Edward

    2015-01-01

    This study examined the effects of text message content (generic vs. culturally tailored) on the login rate of an Internet physical activity program in Hong Kong Chinese adolescent school children. A convenience sample of 252 Hong Kong secondary school adolescents (51% female, 49% male; M age = 13.17 years, SD = 1.28 years) were assigned to one of 3 treatments for 8 weeks. The control group consisted of an Internet physical activity program. The Internet plus generic text message group consisted of the same Internet physical activity program and included daily generic text messages. The Internet plus culturally tailored text message group consisted of the Internet physical activity program and included daily culturally tailored text messages. Zero-inflated Poisson mixed models showed that the overall effect of the treatment group on the login rates varied significantly across individuals. The login rates over time were significantly higher in the Internet plus culturally tailored text message group than the control group (β = 46.06, 95% CI 13.60, 156.02; p = .002) and the Internet plus generic text message group (β = 15.80, 95% CI 4.81, 51.9; p = .021) after adjusting for covariates. These findings suggest that culturally tailored text messages may be more advantageous than generic text messages on improving adolescents' website login rate, but effects varied significantly across individuals. Our results support the inclusion of culturally tailored messaging in future online physical activity interventions.

  6. Evaluation of a workshop on Public Education Messages for Reducing Health Risks from Ultraviolet Radiation.

    PubMed

    Ramsingh, R; Mills, C J

    1997-01-01

    The objective of this paper is to assess the impact of the 1994 Workshop on Public Education Messages for Reducing Health Risks from Ultraviolet Radiation (UVR). The target audience was any organization in Canada doing education on the health risks of UVR. A mailed survey with telephone follow-up was distributed to 130 addresses, including workshop participants, recipients of the workshop report and 40 local public health units. The response rate was 62%. Public health messages from the workshop served as an added impetus or helped to initiate activities around UVR in approximately 40% of organizations over the two years since the workshop. The public health messages were used directly in programming by approximately 38% of all organizations responding. However, looking at those who had previously seen the messages, 61% used them directly in programming. Forty percent of those sampled had never seen a copy of the messages. The results suggest the need for improved dissemination of consensus statements.

  7. Development of targeted messages to promote smoking cessation among construction trade workers

    PubMed Central

    Strickland, J. R.; Smock, N.; Casey, C.; Poor, T.; Kreuter, M. W.; Evanoff, B. A.

    2015-01-01

    Blue-collar workers, particularly those in the construction trades, are more likely to smoke and have less success in quitting when compared with white-collar workers. Little is known about health communication strategies that might influence this priority population. This article describes our formative work to develop targeted messages to increase participation in an existing smoking cessation program among construction workers. Using an iterative and sequential mixed-methods approach, we explored the culture, health attitudes and smoking behaviors of unionized construction workers. We used focus group and survey data to inform message development, and applied audience segmentation methods to identify potential subgroups. Among 144 current smokers, 65% reported wanting to quit smoking in the next 6 months and only 15% had heard of a union-sponsored smoking cessation program, despite widespread advertising. We tested 12 message concepts and 26 images with the target audience to evaluate perceived relevance and effectiveness. Participants responded most favorably to messages and images that emphasized family and work, although responses varied by audience segments based on age and parental status. This study is an important step towards integrating the culture of a high-risk group into targeted messages to increase participation in smoking cessation activities. PMID:25231165

  8. A Survey of Rollback-Recovery Protocols in Message-Passing Systems

    DTIC Science & Technology

    1999-06-01

    and M.A. Castillo. "Checkpointing through garbage collection." Technical report. Departamento de Ciencia de la Computation, Escuela de Ingenieria ...between consecutive checkpoints. It can be implemented by using the dirty-bit of the memory protection hardware or by emulating a dirty-bit in software [4...compare the program’s state with the previous checkpoint in software , and writing the difference in a new checkpoint [46]. The required storage and

  9. Utilizing Audiovisual and Gain-Framed Messages to Attenuate Psychological Reactance Toward Weight Management Health Messages.

    PubMed

    Lee, Hyunmin; Cameron, Glen T

    2017-01-01

    Guided by the psychological reactance theory, this study predicted that gain-framed messages and audiovisual content could counteract state reactance and increase the persuasiveness of weight management health messages. Data from a 2 (message frame: gain/loss) × 2 (modality: audiovisual/text) × 2 (message repetition) within-subjects experiment (N = 82) indicated that in the context of weight management messages for college students, gain-framed messages indeed mitigate psychological reactance. Furthermore, the modality and the frame of the health message interacted in such a way that gain-framed messages in an audiovisual modality generated the highest motivations to comply with the recommendations in the persuasive health messages.

  10. SMC Message Browser Projects

    NASA Technical Reports Server (NTRS)

    Wichmann, Benjamin C.

    2013-01-01

    I work directly with the System Monitoring and Control (SMC) software engineers who develop, test and release custom and commercial software in support of the Kennedy Space Center Spaceport Command and Control System. (SCCS). SMC uses Commercial Off-The-Shelf (COTS) Enterprise Management Systems (EMS) software which provides a centralized subsystem for configuring, monitoring, and controlling SCCS hardware and software used in the Control Rooms. There are multiple projects being worked on using the COTS EMS software. I am currently working with the HP Operations Manager for UNIX (OMU) software which allows Master Console Operators (MCO) to access, view and interpret messages regarding the status of the SCCS hardware and software. The OMU message browser gets cluttered with messages which can make it difficult for the MCO to manage. My main project involves determining ways to reduce the number of messages being displayed in the OMU message browser. I plan to accomplish this task in two different ways: (1) by correlating multiple messages into one single message being displayed and (2) to create policies that will determine the significance of each message and whether or not it needs to be displayed to the MCO. The core idea is to lessen the number of messages being sent to the OMU message browser so the MCO can more effectively use it.

  11. Remote Asynchronous Message Service Gateway

    NASA Technical Reports Server (NTRS)

    Wang, Shin-Ywan; Burleigh, Scott C.

    2011-01-01

    The Remote Asynchronous Message Service (RAMS) gateway is a special-purpose AMS application node that enables exchange of AMS messages between nodes residing in different AMS "continua," notionally in different geographical locations. JPL s implementation of RAMS gateway functionality is integrated with the ION (Interplanetary Overlay Network) implementation of the DTN (Delay-Tolerant Networking) bundle protocol, and with JPL s implementation of AMS itself. RAMS protocol data units are encapsulated in ION bundles and are forwarded to the neighboring RAMS gateways identified in the source gateway s AMS management information base. Each RAMS gateway has interfaces in two communication environments: the AMS message space it serves, and the RAMS network - the grid or tree of mutually aware RAMS gateways - that enables AMS messages produced in one message space to be forwarded to other message spaces of the same venture. Each gateway opens persistent, private RAMS network communication channels to the RAMS gateways of other message spaces for the same venture, in other continua. The interconnected RAMS gateways use these communication channels to forward message petition assertions and cancellations among themselves. Each RAMS gateway subscribes locally to all subjects that are of interest in any of the linked message spaces. On receiving its copy of a message on any of these subjects, the RAMS gateway node uses the RAMS network to forward the message to every other RAMS gateway whose message space contains at least one node that has subscribed to messages on that subject. On receiving a message via the RAMS network from some other RAMS gateway, the RAMS gateway node forwards the message to all subscribers in its own message space.

  12. Developing mobile phone text messages for tobacco risk communication among college students: a mixed methods study.

    PubMed

    Prokhorov, Alexander V; Machado, Tamara C; Calabro, Karen S; Vanderwater, Elizabeth A; Vidrine, Damon J; Pasch, Keryn P; Marani, Salma K; Buchberg, Meredith; Wagh, Aditya; Russell, Sophia C; Czerniak, Katarzyna W; Botello, Gabrielle C; Dobbins, Mackenzie H; Khalil, Georges E; Perry, Cheryl L

    2017-01-31

    Engaging young adults for the purpose of communicating health risks associated with nicotine and tobacco use can be challenging since they comprise a population heavily targeted with appealing marketing by the evolving tobacco industry. The Food and Drug Administration seeks novel ways to effectively communicate risks to warn about using these products. This paper describes the first step in developing a text messaging program delivered by smartphones that manipulate three messaging characteristics (i.e., depth, framing, and appeal). Perceptions of community college students were described after previewing text messages designed to inform about risks of using conventional and new tobacco products. Thirty-one tobacco users and nonusers, aged 18-25 participated in five focus discussions held on two community college campuses. Attendees reviewed prototype messages and contributed feedback about text message structure and content. Qualitative data were coded and analyzed using NVivo Version 10. Most participants were female and two-thirds were ethnic minorities. A variety of conventional and new tobacco products in the past month were used by a third of participants. Three identified domains were derived from the qualitative data. These included perceived risks of using tobacco products, receptivity to message content, and logistical feedback regarding the future message campaign. Overall, participants found the messages to be interesting and appropriate. A gap in awareness of the risks of using new tobacco products was revealed. Feedback on the prototype messages was incorporated into message revisions. These findings provided preliminary confirmation that the forthcoming messaging program will be appealing to young adults.

  13. Coding for Parallel Links to Maximize the Expected Value of Decodable Messages

    NASA Technical Reports Server (NTRS)

    Klimesh, Matthew A.; Chang, Christopher S.

    2011-01-01

    When multiple parallel communication links are available, it is useful to consider link-utilization strategies that provide tradeoffs between reliability and throughput. Interesting cases arise when there are three or more available links. Under the model considered, the links have known probabilities of being in working order, and each link has a known capacity. The sender has a number of messages to send to the receiver. Each message has a size and a value (i.e., a worth or priority). Messages may be divided into pieces arbitrarily, and the value of each piece is proportional to its size. The goal is to choose combinations of messages to send on the links so that the expected value of the messages decodable by the receiver is maximized. There are three parts to the innovation: (1) Applying coding to parallel links under the model; (2) Linear programming formulation for finding the optimal combinations of messages to send on the links; and (3) Algorithms for assisting in finding feasible combinations of messages, as support for the linear programming formulation. There are similarities between this innovation and methods developed in the field of network coding. However, network coding has generally been concerned with either maximizing throughput in a fixed network, or robust communication of a fixed volume of data. In contrast, under this model, the throughput is expected to vary depending on the state of the network. Examples of error-correcting codes that are useful under this model but which are not needed under previous models have been found. This model can represent either a one-shot communication attempt, or a stream of communications. Under the one-shot model, message sizes and link capacities are quantities of information (e.g., measured in bits), while under the communications stream model, message sizes and link capacities are information rates (e.g., measured in bits/second). This work has the potential to increase the value of data returned from

  14. Patient-Physician Web Messaging

    PubMed Central

    Liederman, Eric M; Lee, Jerry C; Baquero, Victor H; Seites, Paul G

    2005-01-01

    BACKGROUND Patients want electronic access to providers. Providers fear being overwhelmed by unreimbursed messages. OBJECTIVE Measure the effects of patient-physician web messaging on primary care practices. DESIGN/SETTING Retrospective analysis of 6 case and 9 control internal medicine (IM) and family practice (FP) physicians' message volume, and a survey of 5,971 patients' web messaging with 267 providers and staff in 16 community primary care clinics in the Sacramento, CA region. MEASUREMENTS AND MAIN RESULTS Case telephone volume was 18.2% lower (P =.002) and fell 6.50 times faster than control. Case total telephone plus web message volume was 13.7% lower (P =.025) and fell 5.84 times faster than control. Surveys were responded to by 40.3% (1,743/4,320) of patients and 61.4% (164/267) of providers and staff. Patients were overwhelmingly satisfied and providers and staff were generally satisfied; both found the system easy to use. Patient satisfaction correlated strongly with provider response time (Γ=0.557), and provider/staff satisfaction with computer skills (Γ=0.626) (Goodman-Kruskal Gamma [Γ] measure of ordinal association). CONCLUSIONS Secure web messaging improves on e-mail with encryption, access controls, message templates, customized message and prescription routing, knowledge content, and reimbursement. Further study is needed to determine whether reducing telephone traffic through the use of web messaging decreases provider interruptions and increases clinical efficiency during the workday. Satisfaction with web messaging may increase patient retention. PMID:15693928

  15. Dynamic message sign message design and display manual training : participant notebook, two-day course.

    DOT National Transportation Integrated Search

    2009-03-01

    This Dynamic Message Sign Message Design and Display Manual was written for use by Texas Department of : Transportation (TxDOT) personnel who have responsibility for the operation of and/or message design for large : permanent dynamic message signs (...

  16. Message communications of particular message types between compute nodes using DMA shadow buffers

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Blocksome, Michael A.; Parker, Jeffrey J.

    Message communications of particular message types between compute nodes using DMA shadow buffers includes: receiving a buffer identifier specifying an application buffer having a message of a particular type for transmission to a target compute node through a network; selecting one of a plurality of shadow buffers for a DMA engine on the compute node for storing the message, each shadow buffer corresponding to a slot of an injection FIFO buffer maintained by the DMA engine; storing the message in the selected shadow buffer; creating a data descriptor for the message stored in the selected shadow buffer; injecting the datamore » descriptor into the slot of the injection FIFO buffer corresponding to the selected shadow buffer; selecting the data descriptor from the injection FIFO buffer; and transmitting the message specified by the selected data descriptor through the data communications network to the target compute node.« less

  17. Social capital and health: civic engagement, community size, and recall of health messages.

    PubMed

    Viswanath, Kasisomayajula; Randolph Steele, Whitney; Finnegan, John R

    2006-08-01

    We explored the effects of community integration and pluralism on recall of cardiovascular disease health information messages. With 1980-1983 data from the Minnesota Heart Health Program, we examined whether ties to community groups were associated with recall of health messages, and whether this relation was modified by size and degree of differentiation of the community. A higher level of civic engagement through ties to community groups was associated with better recall of health messages. Ties to community groups independently contributed to better message recall even after control for gender, education, and other variables. The moderating role of community size was non-significant but intriguing. Community group membership could increase exposure to health messages, providing a critical pathway for social capital to influence health promotion and, thus, public health outcomes.

  18. Respectful Alignment of Programs as a Possible Factor in Remedial Writers' Pass Rates

    ERIC Educational Resources Information Center

    McDonald, Mary

    2017-01-01

    For over four years, students enrolled in remedial writing classes who attended eight writing center tutorials directly linked to their assignments had an average pass rate of 95.6 percent, whereas students who did not attend any writing center tutorials had an average pass rate of 39.4 percent. These correlations are just that--correlations that…

  19. Development of targeted messages to promote smoking cessation among construction trade workers.

    PubMed

    Strickland, J R; Smock, N; Casey, C; Poor, T; Kreuter, M W; Evanoff, B A

    2015-02-01

    Blue-collar workers, particularly those in the construction trades, are more likely to smoke and have less success in quitting when compared with white-collar workers. Little is known about health communication strategies that might influence this priority population. This article describes our formative work to develop targeted messages to increase participation in an existing smoking cessation program among construction workers. Using an iterative and sequential mixed-methods approach, we explored the culture, health attitudes and smoking behaviors of unionized construction workers. We used focus group and survey data to inform message development, and applied audience segmentation methods to identify potential subgroups. Among 144 current smokers, 65% reported wanting to quit smoking in the next 6 months and only 15% had heard of a union-sponsored smoking cessation program, despite widespread advertising. We tested 12 message concepts and 26 images with the target audience to evaluate perceived relevance and effectiveness. Participants responded most favorably to messages and images that emphasized family and work, although responses varied by audience segments based on age and parental status. This study is an important step towards integrating the culture of a high-risk group into targeted messages to increase participation in smoking cessation activities. © The Author 2014. Published by Oxford University Press. All rights reserved. For permissions, please email: journals.permissions@oup.com.

  20. LCS Master Console Event Message Reduction

    NASA Technical Reports Server (NTRS)

    Nguyen, Uyen

    2014-01-01

    System monitoring and control (SMC) message browsers receive so many messages daily that operators are unable to keep track all of them. Important messages are often mixed up among the less important ones. My job is to reduce the messages so that warning and emergency messages can be seen easily and therefore, responded promptly. There are multiple methods to achieve this. Firstly, messages that look the same should not appear many times in the message browser. Instead, the message should appear only once but with a number that counts the times that it appears. This method is called duplicate message suppression. Messages that display "normal" or "advisory" alarm level should be suppressed. Secondly, messages that update the most recent status of a system should replace the old-status messages. This method is called state based message correlation. Thirdly, some unnecessary messages should be sent straight to history after being displayed or not displayed at all. For an example, normal messages that are not a response to an operator's action should not be displayed. I also work on fixing messages that are not color-coded and formatted properly.

  1. Self-guide framing and persuasion: responsibly increasing message processing to ideal levels.

    PubMed

    Evans, Lisa M; Petty, Richard E

    2003-03-01

    The current research examines the effect that framing persuasive messages in terms of self-guides (ideal vs. ought) has on the attitudes and cognitive responses of individuals with chronic ideal versus ought self-guides. The strength of participants' ideal and ought self-guides and the magnitude of participants' ideal and ought self-discrepancies were measured using a computerized reaction time program. One week later, participants read a persuasive message about a fictional breakfast product, framed in terms of either ideals or oughts. Matching framing to stronger self-guide led to enhanced message processing activity, especially among individuals who were low in need for cognition. Individuals who read messages framed to match their stronger self-guides paid more attention to argument quality, as reflected in their attitudes and cognitive responses. Messages with self-guide framing that matched individuals' stronger self-discrepancies did not have this effect on processing.

  2. Feasibility and effectiveness of an automated bilingual text message intervention for weight loss: pilot study.

    PubMed

    Kolodziejczyk, Julia K; Norman, Gregory J; Barrera-Ng, Angelica; Dillon, Lindsay; Marshall, Simon; Arredondo, Elva; Rock, Cheryl L; Raab, Fred; Griswold, William G; Sullivan, Mark; Patrick, Kevin

    2013-11-06

    Little is known about the feasibility and acceptability of tailored text message based weight loss programs for English and Spanish-language speakers. This pilot study evaluated the feasibility, acceptability, and estimated impact of a tailored text message based weight loss program for English and Spanish-language speakers. The purpose of this pilot study was to inform the development of a full-scale randomized trial. There were 20 overweight or obese participants (mean age 40.10, SD 8.05; 8/20, 40% male; 9/20, 45% Spanish-speakers) that were recruited in San Diego, California, from March to May 2011 and evaluated in a one-group pre/post clinical trial. For 8 weeks, participants received and responded to 3-5 text messages daily sent from a fully automated text messaging system. They also received printed weight loss materials and brief 10-15 minute weekly counseling calls. To estimate the impact of the program, the primary outcome was weight (kg) measured during face-to-face measurement visits by trained research staff. Pre and post differences in weight were analyzed with a one-way repeated measures analysis of variance. Differences by language preference at both time points were analyzed with t tests. Body mass index and weight management behaviors also were examined. Feasibility and acceptability were determined by recruitment success, adherence (ie, percentage of replies to interactive text messages and attrition), and participant satisfaction. Participants who completed the final assessment (N=18) decreased body weight by 1.85 kg (F1,17=10.80, P=.004, CI∆ 0.66-3.03, η(2)=0.39). At both time points, there were no differences in weight by language preference. Participants responded to 88.04% (986/1120) of interactive text messages, attrition rate was 10% (2/20), and 94% (19/20) of participants reported satisfaction with the program. This fully automated text message based weight program was feasible with English and Spanish-speakers and may have promoted

  3. Identification and test of pedestrian safety messages for public education programs

    DOT National Transportation Integrated Search

    1975-03-01

    A review of the literature and data from pedestrian accident research was used as input to an analysis which developed 14 message contents. Each of these is directed at a specific aspect of the identified pedestrian accident problem. Seven of the mes...

  4. Clinical data exchange standards and vocabularies for messages.

    PubMed Central

    Huff, S. M.

    1998-01-01

    Motivation for the creation of electronic data interchange (message) standards is discussed. The ISO Open Systems Interface model is described. Clinical information models, message syntax and structure, and the need for a standardized coded vocabulary are explained. The HIPAA legislation and subsequent HHS transaction recommendations are reviewed. The history and mission statements of six of the most popular message development organizations (MDOs) are summarized, and the data exchange standards developed by these organizations are listed. The organizations described include Health Level Seven (HL7), American Standards for Testing and Materials (ASTM) E31, Digital Image Communication in Medicine (DICOM), European Committee for Standardization (Comité Européen de Normalisation), Technical Committee for Health Informatics (CEN/TC 251), the National Council for Prescription Drug Programs (NCPDP), and Accredited Standards Committee X12 Insurance Subcommittee (X12N). The locations of Internet web sites for the six organizations are provided as resources for further information. PMID:9929183

  5. Physician impressions of using text message technology to increase vaccination compliance.

    PubMed

    Hart, Traci; Ahlers-Schmidt, Carolyn R; Chesser, Amy; Jones, Jordan; Williams, Katherine S; Wittler, Robert R

    2011-01-01

    Immunization schedules are complicated and difficult for parents to remember. Parents are willing to receive text message reminders. However, it is unknown whether physicians are willing to implement such a system. The purpose of this study was to evaluate the feasibility of a text messaging reminder system from the physician's perspective. Surveys were distributed in the winter of 2009-2010 by e-mail, facsimile, and telephone interview to 149 family physicians and pediatricians who provide immunizations in Sedgwick County, Kansas. A 69% response rate was achieved. Nearly all (92%) respondents reported that they currently communicate information about immunization schedules to parents using traditional methods such as verbal reminders or appointment cards; however, none (0%) currently use text or email to generate reminders to parents. Even when asked to assume they had all of the necessary resources, almost one-third (31%) reported that they were "very unwilling" or "unwilling" to use a general text-messaging program, 43% were "neutral" or "undecided," and only 27% were "willing" or "very willing." Physician willingness to use a text-messaging program was not related to their reported gender (χ²(2)=0.224, p=0.894), specialization (χ² (2)=4.363, p=0.113), years in practice (F(2, 91)=0.435, p=0.149), or comfort level with technology (χ²(4)=1.861, p=0.761). There is a hesitancy to implement a text message reminder system for childhood vaccine schedules. This may be due to the lack of empirical evidence supporting the use of this technology for health reminders or the lack of willingness to implement another system. Further investigation is needed to determine why few physicians are willing to implement text messaging for immunization reminders.

  6. Social Capital and Health: Civic Engagement, Community Size, and Recall of Health Messages

    PubMed Central

    Viswanath, Kasisomayajula; Randolph Steele, Whitney; Finnegan, John R.

    2006-01-01

    Objectives. We explored the effects of community integration and pluralism on recall of cardiovascular disease health information messages. Methods. With 1980–1983 data from the Minnesota Heart Health Program, we examined whether ties to community groups were associated with recall of health messages, and whether this relation was modified by size and degree of differentiation of the community. Results. A higher level of civic engagement through ties to community groups was associated with better recall of health messages. Ties to community groups independently contributed to better message recall even after control for gender, education, and other variables. The moderating role of community size was non-significant but intriguing. Conclusions. Community group membership could increase exposure to health messages, providing a critical pathway for social capital to influence health promotion and, thus, public health outcomes. PMID:16809608

  7. Maintaining High Assurance in Asynchronous Messaging

    DTIC Science & Technology

    2015-10-24

    Assurance in Asynchronous Messaging Kevin E. Foltz and William R. Simpson Abstract—Asynchronous messaging is the delivery of a message without... integrity , and confidentiality guarantees. End-to-end security for asynchronous messaging must be provided by the asynchronous messaging layer itself... continuing its processing. At the completion of message transmission, the sender does not know when or whether the receiver received it. The message

  8. Dynamic message sign message design and display manual training : participant notebook, one-day "core" course.

    DOT National Transportation Integrated Search

    2009-03-01

    This Dynamic Message Sign Message Design and Display Manual was written for use by Texas Department of Transportation (TxDOT) personnel who have responsibility for the operation of and/or message design for large permanent dynamic message signs (DMSs...

  9. User-Defined Data Distributions in High-Level Programming Languages

    NASA Technical Reports Server (NTRS)

    Diaconescu, Roxana E.; Zima, Hans P.

    2006-01-01

    One of the characteristic features of today s high performance computing systems is a physically distributed memory. Efficient management of locality is essential for meeting key performance requirements for these architectures. The standard technique for dealing with this issue has involved the extension of traditional sequential programming languages with explicit message passing, in the context of a processor-centric view of parallel computation. This has resulted in complex and error-prone assembly-style codes in which algorithms and communication are inextricably interwoven. This paper presents a high-level approach to the design and implementation of data distributions. Our work is motivated by the need to improve the current parallel programming methodology by introducing a paradigm supporting the development of efficient and reusable parallel code. This approach is currently being implemented in the context of a new programming language called Chapel, which is designed in the HPCS project Cascade.

  10. Social media messaging in pregnancy: comparing content of Text4baby to content of free smart phone applications of pregnancy.

    PubMed

    Lewkowitz, Adam K; O'Donnell, Betsy E; Nakagawa, Sanae; Vargas, Juan E; Zlatnik, Marya G

    2016-03-01

    Text4baby is the only free text-message program for pregnancy available. Our objective was to determine whether content differed between Text4baby and popular pregnancy smart phone applications (apps). Researchers enrolled in Text4baby in 2012 and downloaded the four most-popular free pregnancy smart phone apps in July 2013; content was re-extracted in February 2014. Messages were assigned thematic codes. Two researchers coded messages independently before reviewing all the codes jointly to ensure consistency. Logistic regression modeling determined statistical differences between Text4baby and smart phone apps. About 1399 messages were delivered. Of these, 333 messages had content related to more than one theme and were coded as such, resulting in 1820 codes analyzed. Compared to smart phone apps, Text4baby was significantly more likely to have content regarding Postpartum Planning, Seeking Care, Recruitment and Prevention and significantly less likely to mention Normal Pregnancy Symptoms. No messaging program included content regarding postpartum contraception. To improve content without increasing text message number, Text4baby could replace messages on recruitment with messages regarding normal pregnancy symptoms, fetal development and postpartum contraception.

  11. Enhancing Application Performance Using Mini-Apps: Comparison of Hybrid Parallel Programming Paradigms

    NASA Technical Reports Server (NTRS)

    Lawson, Gary; Poteat, Michael; Sosonkina, Masha; Baurle, Robert; Hammond, Dana

    2016-01-01

    In this work, several mini-apps have been created to enhance a real-world application performance, namely the VULCAN code for complex flow analysis developed at the NASA Langley Research Center. These mini-apps explore hybrid parallel programming paradigms with Message Passing Interface (MPI) for distributed memory access and either Shared MPI (SMPI) or OpenMP for shared memory accesses. Performance testing shows that MPI+SMPI yields the best execution performance, while requiring the largest number of code changes. A maximum speedup of 23X was measured for MPI+SMPI, but only 10X was measured for MPI+OpenMP.

  12. MessageSpace: a messaging system for health research

    NASA Astrophysics Data System (ADS)

    Escobar, Rodrigo D.; Akopian, David; Parra-Medina, Deborah; Esparza, Laura

    2013-03-01

    Mobile Health (mHealth) has emerged as a promising direction for delivery of healthcare services via mobile communication devices such as cell phones. Examples include texting-based interventions for chronic disease monitoring, diabetes management, control of hypertension, smoking cessation, monitoring medication adherence, appointment keeping and medical test result delivery; as well as improving patient-provider communication, health information communication, data collection and access to health records. While existing messaging systems very well support bulk messaging and some polling applications, they are not designed for data collection and processing of health research oriented studies. For that reason known studies based on text-messaging campaigns have been constrained in participant numbers. In order to empower healthcare promotion and education research, this paper presents a system dedicated for healthcare research. It is designed for convenient communication with various study groups, feedback collection and automated processing.

  13. How Attention Partitions Itself during Simultaneous Message Presentations

    ERIC Educational Resources Information Center

    Bergen, Lori; Grimes, Tom; Potter, Deborah

    2005-01-01

    Television producers, across all types of programming, assume young viewers can parallel process simultaneously presented messages. For instance, television news producers appear to believe that young viewers can attend to weather icons, lexical news crawls, and sports scores while they also attend to news anchors who present the news.…

  14. MPI_XSTAR: MPI-based Parallelization of the XSTAR Photoionization Program

    NASA Astrophysics Data System (ADS)

    Danehkar, Ashkbiz; Nowak, Michael A.; Lee, Julia C.; Smith, Randall K.

    2018-02-01

    We describe a program for the parallel implementation of multiple runs of XSTAR, a photoionization code that is used to predict the physical properties of an ionized gas from its emission and/or absorption lines. The parallelization program, called MPI_XSTAR, has been developed and implemented in the C++ language by using the Message Passing Interface (MPI) protocol, a conventional standard of parallel computing. We have benchmarked parallel multiprocessing executions of XSTAR, using MPI_XSTAR, against a serial execution of XSTAR, in terms of the parallelization speedup and the computing resource efficiency. Our experience indicates that the parallel execution runs significantly faster than the serial execution, however, the efficiency in terms of the computing resource usage decreases with increasing the number of processors used in the parallel computing.

  15. Strategic Messaging to Promote Taxation of Sugar-Sweetened Beverages: Lessons From Recent Political Campaigns

    PubMed Central

    Jou, Judy; Niederdeppe, Jeff; Barry, Colleen L.; Gollust, Sarah E.

    2014-01-01

    Objectives. This study explored the use of strategic messaging by proponents of sugar-sweetened beverage (SSB) taxation to influence public opinion and shape the policy process, emphasizing the experiences in El Monte and Richmond, California, with SSB tax proposals in 2012. Methods. We conducted 18 semistructured interviews with key stakeholders about the use and perceived effectiveness of messages supporting and opposing SSB taxation, knowledge sharing among advocates, message dissemination, and lessons learned from their messaging experiences. Results. The protax messages most frequently mentioned by respondents were reinvesting tax revenue into health-related programs and linking SSB consumption to health outcomes such as obesity and diabetes. The most frequently mentioned antitax messages addressed negative economic effects on businesses and government restriction of personal choice. Factors contributing to perceived messaging success included clearly defining “sugar-sweetened beverage” and earmarking funds for obesity prevention, incorporating cultural sensitivity into messaging, and providing education about the health effects of SSB consumption. Conclusions. Sugar-sweetened beverage taxation has faced significant challenges in gaining political and public support. Future campaigns can benefit from insights gained through the experiences of stakeholders involved in previous policy debates. PMID:24625177

  16. Strategic messaging to promote taxation of sugar-sweetened beverages: lessons from recent political campaigns.

    PubMed

    Jou, Judy; Niederdeppe, Jeff; Barry, Colleen L; Gollust, Sarah E

    2014-05-01

    This study explored the use of strategic messaging by proponents of sugar-sweetened beverage (SSB) taxation to influence public opinion and shape the policy process, emphasizing the experiences in El Monte and Richmond, California, with SSB tax proposals in 2012. We conducted 18 semistructured interviews with key stakeholders about the use and perceived effectiveness of messages supporting and opposing SSB taxation, knowledge sharing among advocates, message dissemination, and lessons learned from their messaging experiences. The protax messages most frequently mentioned by respondents were reinvesting tax revenue into health-related programs and linking SSB consumption to health outcomes such as obesity and diabetes. The most frequently mentioned antitax messages addressed negative economic effects on businesses and government restriction of personal choice. Factors contributing to perceived messaging success included clearly defining "sugar-sweetened beverage" and earmarking funds for obesity prevention, incorporating cultural sensitivity into messaging, and providing education about the health effects of SSB consumption. Sugar-sweetened beverage taxation has faced significant challenges in gaining political and public support. Future campaigns can benefit from insights gained through the experiences of stakeholders involved in previous policy debates.

  17. Parents Working Together: development and feasibility trial of a workplace-based program for parents that incorporates general parenting and health behaviour messages.

    PubMed

    Wilson, L; Lero, Donna; Smofsky, Allan; Gross, Deborah; Haines, Jess

    2016-11-10

    Parenting programs integrating general parenting and health behaviour messaging may be an effective childhood obesity prevention strategy. The current study explored workplaces as an alternate setting to deliver parenting programs. This study involved two phases. The objective of the first phase was to explore interest in and preferred delivery mode of a workplace program that addresses general parenting and health behaviours. The objective of the second phase was to adapt and test the feasibility and acceptability of a pre-existing program that has been successfully run in community settings for parents in their workplace. To achieve the first objective, we conducted 9 individual or small group qualitative interviews with 11 workplace representatives involved in employee wellness/wellness programming from 8 different organizations across Southwestern Ontario. To achieve the second objective, we adapted a pre-existing program incorporating workplace representatives' suggestions to create Parents Working Together (PWT). We then tested the program using a pre/post uncontrolled feasibility trial with 9 employees of a large manufacturing company located in Guelph, Ontario. Results from the qualitative phase showed that a workplace parenting program that addresses general parenting and health behaviour messages is of interest to workplaces. Results from the feasibility trial suggest that PWT is feasible and well received by participants; attendance rates were high with 89 % of the participants attending 5 or more sessions and 44 % attending all 7 sessions offered. All participants stated they would recommend the program to co-workers. Just over half of our parent participants were male (55.6 %), which is a unique finding as the majority of existing parenting programs engage primarily mothers. Impact evaluation results suggest that changes in children's and parents' weight-related behaviours, as well as parents' reports of family interfering with work were in the

  18. Automated Instrumentation, Monitoring and Visualization of PVM Programs Using AIMS

    NASA Technical Reports Server (NTRS)

    Mehra, Pankaj; VanVoorst, Brian; Yan, Jerry; Lum, Henry, Jr. (Technical Monitor)

    1994-01-01

    We present views and analysis of the execution of several PVM (Parallel Virtual Machine) codes for Computational Fluid Dynamics on a networks of Sparcstations, including: (1) NAS Parallel Benchmarks CG and MG; (2) a multi-partitioning algorithm for NAS Parallel Benchmark SP; and (3) an overset grid flowsolver. These views and analysis were obtained using our Automated Instrumentation and Monitoring System (AIMS) version 3.0, a toolkit for debugging the performance of PVM programs. We will describe the architecture, operation and application of AIMS. The AIMS toolkit contains: (1) Xinstrument, which can automatically instrument various computational and communication constructs in message-passing parallel programs; (2) Monitor, a library of runtime trace-collection routines; (3) VK (Visual Kernel), an execution-animation tool with source-code clickback; and (4) Tally, a tool for statistical analysis of execution profiles. Currently, Xinstrument can handle C and Fortran 77 programs using PVM 3.2.x; Monitor has been implemented and tested on Sun 4 systems running SunOS 4.1.2; and VK uses XIIR5 and Motif 1.2. Data and views obtained using AIMS clearly illustrate several characteristic features of executing parallel programs on networked workstations: (1) the impact of long message latencies; (2) the impact of multiprogramming overheads and associated load imbalance; (3) cache and virtual-memory effects; and (4) significant skews between workstation clocks. Interestingly, AIMS can compensate for constant skew (zero drift) by calibrating the skew between a parent and its spawned children. In addition, AIMS' skew-compensation algorithm can adjust timestamps in a way that eliminates physically impossible communications (e.g., messages going backwards in time). Our current efforts are directed toward creating new views to explain the observed performance of PVM programs. Some of the features planned for the near future include: (1) ConfigView, showing the physical topology

  19. Automated Instrumentation, Monitoring and Visualization of PVM Programs Using AIMS

    NASA Technical Reports Server (NTRS)

    Mehra, Pankaj; VanVoorst, Brian; Yan, Jerry; Tucker, Deanne (Technical Monitor)

    1994-01-01

    We present views and analysis of the execution of several PVM codes for Computational Fluid Dynamics on a network of Sparcstations, including (a) NAS Parallel benchmarks CG and MG (White, Alund and Sunderam 1993); (b) a multi-partitioning algorithm for NAS Parallel Benchmark SP (Wijngaart 1993); and (c) an overset grid flowsolver (Smith 1993). These views and analysis were obtained using our Automated Instrumentation and Monitoring System (AIMS) version 3.0, a toolkit for debugging the performance of PVM programs. We will describe the architecture, operation and application of AIMS. The AIMS toolkit contains (a) Xinstrument, which can automatically instrument various computational and communication constructs in message-passing parallel programs; (b) Monitor, a library of run-time trace-collection routines; (c) VK (Visual Kernel), an execution-animation tool with source-code clickback; and (d) Tally, a tool for statistical analysis of execution profiles. Currently, Xinstrument can handle C and Fortran77 programs using PVM 3.2.x; Monitor has been implemented and tested on Sun 4 systems running SunOS 4.1.2; and VK uses X11R5 and Motif 1.2. Data and views obtained using AIMS clearly illustrate several characteristic features of executing parallel programs on networked workstations: (a) the impact of long message latencies; (b) the impact of multiprogramming overheads and associated load imbalance; (c) cache and virtual-memory effects; and (4significant skews between workstation clocks. Interestingly, AIMS can compensate for constant skew (zero drift) by calibrating the skew between a parent and its spawned children. In addition, AIMS' skew-compensation algorithm can adjust timestamps in a way that eliminates physically impossible communications (e.g., messages going backwards in time). Our current efforts are directed toward creating new views to explain the observed performance of PVM programs. Some of the features planned for the near future include: (a) Config

  20. Assessing clarity of message communication for mandated USEPA drinking water quality reports.

    PubMed

    Phetxumphou, Katherine; Roy, Siddhartha; Davy, Brenda M; Estabrooks, Paul A; You, Wen; Dietrich, Andrea M

    2016-04-01

    The United States Environmental Protection Agency mandates that community water systems (CWSs), or drinking water utilities, provide annual consumer confidence reports (CCRs) reporting on water quality, compliance with regulations, source water, and consumer education. While certain report formats are prescribed, there are no criteria ensuring that consumers understand messages in these reports. To assess clarity of message, trained raters evaluated a national sample of 30 CCRs using the Centers for Disease Control Clear Communication Index (Index) indices: (1) Main Message/Call to Action; (2) Language; (3) Information Design; (4) State of the Science; (5) Behavioral Recommendations; (6) Numbers; and (7) Risk. Communication materials are considered qualifying if they achieve a 90% Index score. Overall mean score across CCRs was 50 ± 14% and none scored 90% or higher. CCRs did not differ significantly by water system size. State of the Science (3 ± 15%) and Behavioral Recommendations (77 ± 36%) indices were the lowest and highest, respectively. Only 63% of CCRs explicitly stated if the water was safe to drink according to federal and state standards and regulations. None of the CCRs had passing Index scores, signaling that CWSs are not effectively communicating with their consumers; thus, the Index can serve as an evaluation tool for CCR effectiveness and a guide to improve water quality communications.

  1. Do Medicaid Wage Pass-through Payments Increase Nursing Home Staffing?

    PubMed Central

    Feng, Zhanlian; Lee, Yong Suk; Kuo, Sylvia; Intrator, Orna; Foster, Andrew; Mor, Vincent

    2010-01-01

    Objective To assess the impact of state Medicaid wage pass-through policy on direct-care staffing levels in U.S. nursing homes. Data Sources Online Survey Certification and Reporting (OSCAR) data, and state Medicaid nursing home reimbursement policies over the period 1996–2004. Study Design A fixed-effects panel model with two-step feasible-generalized least squares estimates is used to examine the effect of pass-through adoption on direct-care staff hours per resident day (HPRD) in nursing homes. Data Collection/Extraction Methods A panel data file tracking annual OSCAR surveys per facility over the study period is linked with annual information on state Medicaid wage pass-through and related policies. Principal Findings Among the states introducing wage pass-through over the study period, the policy is associated with between 3.0 and 4.0 percent net increases in certified nurse aide (CNA) HPRD in the years following adoption. No discernable pass-through effect is observed on either registered nurse or licensed practical nurse HPRD. Conclusions State Medicaid wage pass-through programs offer a potentially effective policy tool to boost direct-care CNA staffing in nursing homes, at least in the short term. PMID:20403054

  2. The Role of Values, Moral Norms, and Descriptive Norms in Building Occupant Responses to an Energy-Efficiency Pilot Program and to Framing of Related Messages

    ERIC Educational Resources Information Center

    Arpan, Laura M.; Barooah, Prabir; Subramany, Rahul

    2015-01-01

    This study examined building occupants' responses associated with an occupant-based energy-efficiency pilot in a university building. The influence of occupants' values and norms as well as effects of two educational message frames (descriptive vs. moral norms cues) on program support were tested. Occupants' personal moral norm to conserve energy…

  3. Developing Social Media-Based Suicide Prevention Messages in Partnership With Young People: Exploratory Study.

    PubMed

    Robinson, Jo; Bailey, Eleanor; Hetrick, Sarah; Paix, Steve; O'Donnell, Matt; Cox, Georgina; Ftanou, Maria; Skehan, Jaelea

    2017-10-04

    Social media is increasingly being used by young people for health-related issues, including communicating about suicide. Due to the concerns about causing distress or inducing suicidal thoughts or behaviors, to date young people neither have been engaged in the development of social media-based suicide prevention interventions nor have interventions focused on educating young people about safe ways to communicate about suicide online. Given the potential that social media holds to deliver messages to vast numbers of people across space and time and the fact that young people often prefer to seek help from their friends and peers, safely educating and engaging young people to develop suicide prevention messages that can be delivered via social media is an obvious next step. The objectives of this study were to (1) provide education to a small number of secondary school students about safe ways to communicate about suicide via social media; (2) engage the same young people in the development of a suite of social media-based suicide prevention multimedia messages; (3) assess the impact of this on participants; and (4) assess the acceptability and safety of the messages developed. This study involved two phases. In phase 1, 20 participants recruited from two schools took part in an 8- to 10-week program during which they were provided with psychoeducation about mental health and suicide, including how to talk safely about suicide online, and they were then supported to design and develop their own media messages. These participants completed an evaluation questionnaire at the conclusion of the program. In phase 2, a larger group of participants (n=69), recruited via an opt-in process, viewed the media messages and completed a short questionnaire about each one. Participants in phase 1 enjoyed the program and reported that they learned new skills, such as how to talk safely about suicide online, and felt more able to provide emotional support to others (16/20, 80%). No

  4. Developing Social Media-Based Suicide Prevention Messages in Partnership With Young People: Exploratory Study

    PubMed Central

    Hetrick, Sarah; Paix, Steve; O'Donnell, Matt; Cox, Georgina; Ftanou, Maria; Skehan, Jaelea

    2017-01-01

    Background Social media is increasingly being used by young people for health-related issues, including communicating about suicide. Due to the concerns about causing distress or inducing suicidal thoughts or behaviors, to date young people neither have been engaged in the development of social media–based suicide prevention interventions nor have interventions focused on educating young people about safe ways to communicate about suicide online. Given the potential that social media holds to deliver messages to vast numbers of people across space and time and the fact that young people often prefer to seek help from their friends and peers, safely educating and engaging young people to develop suicide prevention messages that can be delivered via social media is an obvious next step. Objectives The objectives of this study were to (1) provide education to a small number of secondary school students about safe ways to communicate about suicide via social media; (2) engage the same young people in the development of a suite of social media–based suicide prevention multimedia messages; (3) assess the impact of this on participants; and (4) assess the acceptability and safety of the messages developed. Methods This study involved two phases. In phase 1, 20 participants recruited from two schools took part in an 8- to 10-week program during which they were provided with psychoeducation about mental health and suicide, including how to talk safely about suicide online, and they were then supported to design and develop their own media messages. These participants completed an evaluation questionnaire at the conclusion of the program. In phase 2, a larger group of participants (n=69), recruited via an opt-in process, viewed the media messages and completed a short questionnaire about each one. Results Participants in phase 1 enjoyed the program and reported that they learned new skills, such as how to talk safely about suicide online, and felt more able to provide

  5. Implementing the PM Programming Language using MPI and OpenMP - a New Tool for Programming Geophysical Models on Parallel Systems

    NASA Astrophysics Data System (ADS)

    Bellerby, Tim

    2015-04-01

    PM (Parallel Models) is a new parallel programming language specifically designed for writing environmental and geophysical models. The language is intended to enable implementers to concentrate on the science behind the model rather than the details of running on parallel hardware. At the same time PM leaves the programmer in control - all parallelisation is explicit and the parallel structure of any given program may be deduced directly from the code. This paper describes a PM implementation based on the Message Passing Interface (MPI) and Open Multi-Processing (OpenMP) standards, looking at issues involved with translating the PM parallelisation model to MPI/OpenMP protocols and considering performance in terms of the competing factors of finer-grained parallelisation and increased communication overhead. In order to maximise portability, the implementation stays within the MPI 1.3 standard as much as possible, with MPI-2 MPI-IO file handling the only significant exception. Moreover, it does not assume a thread-safe implementation of MPI. PM adopts a two-tier abstract representation of parallel hardware. A PM processor is a conceptual unit capable of efficiently executing a set of language tasks, with a complete parallel system consisting of an abstract N-dimensional array of such processors. PM processors may map to single cores executing tasks using cooperative multi-tasking, to multiple cores or even to separate processing nodes, efficiently sharing tasks using algorithms such as work stealing. While tasks may move between hardware elements within a PM processor, they may not move between processors without specific programmer intervention. Tasks are assigned to processors using a nested parallelism approach, building on ideas from Reyes et al. (2009). The main program owns all available processors. When the program enters a parallel statement then either processors are divided out among the newly generated tasks (number of new tasks < number of processors

  6. Uniform Traffic Control and Warning Messages for Portable Changeable Message Signs

    DOT National Transportation Integrated Search

    1996-03-01

    The purpose of this study was to develop and test word and symbol traffic control and hazard warning messages for use on portable changeable message signs (PCMSs). The literature was reviewed, State highway engineers were interviewed, PCMS manufactur...

  7. Run-time scheduling and execution of loops on message passing machines

    NASA Technical Reports Server (NTRS)

    Crowley, Kay; Saltz, Joel; Mirchandaney, Ravi; Berryman, Harry

    1989-01-01

    Sparse system solvers and general purpose codes for solving partial differential equations are examples of the many types of problems whose irregularity can result in poor performance on distributed memory machines. Often, the data structures used in these problems are very flexible. Crucial details concerning loop dependences are encoded in these structures rather than being explicitly represented in the program. Good methods for parallelizing and partitioning these types of problems require assignment of computations in rather arbitrary ways. Naive implementations of programs on distributed memory machines requiring general loop partitions can be extremely inefficient. Instead, the scheduling mechanism needs to capture the data reference patterns of the loops in order to partition the problem. First, the indices assigned to each processor must be locally numbered. Next, it is necessary to precompute what information is needed by each processor at various points in the computation. The precomputed information is then used to generate an execution template designed to carry out the computation, communication, and partitioning of data, in an optimized manner. The design is presented for a general preprocessor and schedule executer, the structures of which do not vary, even though the details of the computation and of the type of information are problem dependent.

  8. Run-time scheduling and execution of loops on message passing machines

    NASA Technical Reports Server (NTRS)

    Saltz, Joel; Crowley, Kathleen; Mirchandaney, Ravi; Berryman, Harry

    1990-01-01

    Sparse system solvers and general purpose codes for solving partial differential equations are examples of the many types of problems whose irregularity can result in poor performance on distributed memory machines. Often, the data structures used in these problems are very flexible. Crucial details concerning loop dependences are encoded in these structures rather than being explicitly represented in the program. Good methods for parallelizing and partitioning these types of problems require assignment of computations in rather arbitrary ways. Naive implementations of programs on distributed memory machines requiring general loop partitions can be extremely inefficient. Instead, the scheduling mechanism needs to capture the data reference patterns of the loops in order to partition the problem. First, the indices assigned to each processor must be locally numbered. Next, it is necessary to precompute what information is needed by each processor at various points in the computation. The precomputed information is then used to generate an execution template designed to carry out the computation, communication, and partitioning of data, in an optimized manner. The design is presented for a general preprocessor and schedule executer, the structures of which do not vary, even though the details of the computation and of the type of information are problem dependent.

  9. Experiences Using OpenMP Based on Compiler Directed Software DSM on a PC Cluster

    NASA Technical Reports Server (NTRS)

    Hess, Matthias; Jost, Gabriele; Mueller, Matthias; Ruehle, Roland; Biegel, Bryan (Technical Monitor)

    2002-01-01

    In this work we report on our experiences running OpenMP (message passing) programs on a commodity cluster of PCs (personal computers) running a software distributed shared memory (DSM) system. We describe our test environment and report on the performance of a subset of the NAS (NASA Advanced Supercomputing) Parallel Benchmarks that have been automatically parallelized for OpenMP. We compare the performance of the OpenMP implementations with that of their message passing counterparts and discuss performance differences.

  10. Positive mood can increase or decrease message scrutiny: the hedonic contingency view of mood and message processing.

    PubMed

    Wegener, D T; Petty, R E; Smith, S M

    1995-07-01

    Currently dominant explanations of mood effects on persuasive message processing (i.e., cognitive capacity and feelings as information) predict that happy moods lead to less message scrutiny than neutral or sad moods. The hedonic contingency view (D. T. Wegener & R. E. Petty, 1994) predicts that happy moods can sometimes be associated with greater message processing activity because people in a happy mood are more attentive than neutral or sad people to the hedonic consequences of their actions. Consistent with this view, Experiment 1 finds that a happy mood can lead to greater message scrutiny than a neutral mood when the message is not mood threatening. Experiment 2 finds that a happy mood leads to greater message scrutiny than a sad mood when an uplifting message is encountered, but to less message scrutiny when a depressing message is encountered.

  11. A systematic review of three approaches for constructing physical activity messages: What messages work and what improvements are needed?

    PubMed Central

    2010-01-01

    Background To motivate individuals to adhere to a regular physical activity regime, guidelines must be supplemented with persuasive messages that are disseminated widely. While substantial research has examined effective strategies for disseminating physical activity messages, there has been no systematic effort to examine optimal message content. This paper reviews studies that evaluate the effectiveness of three approaches for constructing physical activity messages including tailoring messages to suit individual characteristics of message recipients (message tailoring), framing messages in terms of gains versus losses (message framing), and targeting messages to affect change in self-efficacy (i.e., a theoretical determinant of behavior change). Methods We searched the MEDLINE, PsycINFO, EMBASE and CINAHL databases up to July 2008. Relevant reference lists also were searched. We included intervention trials, field experiments, and laboratory-based studies that aimed to test the efficacy or effectiveness of tailored messages, framed messages and self-efficacy change messages among healthy adults. We used a descriptive approach to analyze emerging patterns in research findings. Based on this evidence we made recommendations for practice and future research. Results Twenty-two studies were identified. Twelve studies evaluated message tailoring. In 10 of these studies, tailored messages resulted in greater physical activity than a control message. Six studies evaluated framed messages. Five of these studies demonstrated that gain-framed messages lead to stronger intentions to be active compared to a control message. Moreover, a gain-frame advantage was evident in three of the four studies that assessed physical activity. Four studies evaluated self-efficacy change messages. The two studies that used an experimental design provide a clear indication that individuals' beliefs can be affected by messages that incorporate types of information known to be determinants of

  12. Michigan English Study of Structure for Curriculum Evaluation (MESSAGE).

    ERIC Educational Resources Information Center

    Taylor, Vi Marie

    The Michigan English Study of Structure for Curriculum Evaluation (MESSAGE) training session involved 40 leaders of English curriculum study in a 7-day intensive program. They studied objective evaluation in terms of behavior, instruction, and institution; approaches to the English curriculum through instructional objectives that include…

  13. WhatsApp Messaging: Achievements and Success in Academia

    ERIC Educational Resources Information Center

    Nitza, Davidivitch; Roman, Yavich

    2016-01-01

    In recent years, there has been a significant rise in the use of technological means in general and in academic teaching in particular. Many programs have been developed that include computer-assisted teaching, as well as online courses at educational institutions. The current study focuses on WhatsApp messaging and its use in academia. Studies…

  14. CDC MessageWorks: Designing and Validating a Social Marketing Tool to Craft and Defend Effective Messages.

    PubMed

    Cole, Galen E; Keller, Punam A; Reynolds, Jennifer; Schaur, Michelle; Krause, Diane

    2016-03-01

    The Centers for Disease Control and Prevention's Division of Cancer Prevention and Control, in partnership with Oak Ridge Associated Universities, designed an online social marketing strategy tool, MessageWorks, to help health communicators effectively formulate messages aimed at changing health behaviors and evaluate message tactics and audience characteristics. MessageWorks is based on the advisor for risk communication model that identifies 10 variables that can be used to predict target audience intentions to comply with health recommendations. This article discusses the value of the MessageWorks tool to health communicators and to the field of social marketing by (1) describing the scientific evidence supporting use of MessageWorks to improve health communication practice and (2) summarizing how to use MessageWorks and interpret the results it produces.

  15. Terrorism Risk Insurance Program Reauthorization Act of 2014

    THOMAS, 113th Congress

    Sen. Schumer, Charles E. [D-NY

    2014-04-10

    Senate - 12/11/2014 Message on House action received in Senate and at desk: House amendment to Senate bill. (All Actions) Tracker: This bill has the status Passed HouseHere are the steps for Status of Legislation:

  16. Text Messaging Intervention for Teens and Young Adults With Diabetes

    PubMed Central

    Cousineau, Tara; Franko, Debra L.; Schultz, Alan T.; Trant, Meredith; Rodgers, Rachel; Laffel, Lori M. B.

    2014-01-01

    Adolescents and young adults use text messaging as their primary mode of communication, thus providing an opportunity to use this mode of communication for mobile health (mHealth) interventions. Youth with diabetes are an important group for these mHealth initiatives, as diabetes management requires an enormous amount of daily effort and this population has difficulty achieving optimal diabetes management. Goal setting and self-efficacy are 2 factors in the management of diabetes. We examined the feasibility of a healthy lifestyle text messaging program targeting self-efficacy and goal setting among adolescents and young adults with diabetes. Participants, ages 16-21, were assigned to either a text messaging group, which received daily motivational messages about nutrition and physical activity, or a control group, which received paper-based information about healthy lifestyle. Both groups set goals for nutrition and physical activity and completed a measure of self-efficacy. Participants’ mean age was 18.7 ± 1.6 years old, with diabetes duration of 10.0 ± 4.6 years, and A1c of 8.7 ± 1.7%. The text messaging intervention was rated highly and proved to be acceptable to participants. Self-efficacy, glycemic control, and body mass index did not change over the course of the short, 1-month pilot study. Positive, daily, motivational text messages may be effective in increasing motivation for small goal changes in the areas of nutrition and physical activity. These interventions may be used in the future in youth with diabetes to improve diabetes care. Utilizing more targeted text messages is an area for future research. PMID:25172879

  17. Text messaging intervention for teens and young adults with diabetes.

    PubMed

    Markowitz, Jessica T; Cousineau, Tara; Franko, Debra L; Schultz, Alan T; Trant, Meredith; Rodgers, Rachel; Laffel, Lori M B

    2014-09-01

    Adolescents and young adults use text messaging as their primary mode of communication, thus providing an opportunity to use this mode of communication for mobile health (mHealth) interventions. Youth with diabetes are an important group for these mHealth initiatives, as diabetes management requires an enormous amount of daily effort and this population has difficulty achieving optimal diabetes management. Goal setting and self-efficacy are 2 factors in the management of diabetes. We examined the feasibility of a healthy lifestyle text messaging program targeting self-efficacy and goal setting among adolescents and young adults with diabetes. Participants, ages 16-21, were assigned to either a text messaging group, which received daily motivational messages about nutrition and physical activity, or a control group, which received paper-based information about healthy lifestyle. Both groups set goals for nutrition and physical activity and completed a measure of self-efficacy. Participants' mean age was 18.7 ± 1.6 years old, with diabetes duration of 10.0 ± 4.6 years, and A1c of 8.7 ± 1.7%. The text messaging intervention was rated highly and proved to be acceptable to participants. Self-efficacy, glycemic control, and body mass index did not change over the course of the short, 1-month pilot study. Positive, daily, motivational text messages may be effective in increasing motivation for small goal changes in the areas of nutrition and physical activity. These interventions may be used in the future in youth with diabetes to improve diabetes care. Utilizing more targeted text messages is an area for future research. © 2014 Diabetes Technology Society.

  18. Passing and Catching in Rugby.

    ERIC Educational Resources Information Center

    Namudu, Mike M.

    This booklet contains the fundamentals for rugby at the primary school level. It deals primarily with passing and catching the ball. It contains instructions on (1) holding the ball for passing, (2) passing the ball to the left--standing, (3) passing the ball to the left--running, (4) making a switch pass, (5) the scrum half's normal pass, (6) the…

  19. Comparing Tailored and Untailored Text Messages for Smoking Cessation: A Randomized Controlled Trial among Adolescent and Young Adult Smokers

    ERIC Educational Resources Information Center

    Skov-Ettrup, L. S.; Ringgaard, L. W.; Dalum, P.; Flensborg-Madsen, T.; Thygesen, L. C.; Tolstrup, J. S.

    2014-01-01

    The aim was to compare the effectiveness of untailored text messages for smoking cessation to tailored text messages delivered at a higher frequency. From February 2007 to August 2009, 2030 users of an internet-based smoking cessation program with optional text message support aged 15-25 years were consecutively randomized to versions of the…

  20. An analysis of patient-provider secure messaging at two Veterans Health Administration medical centers: message content and resolution through secure messaging.

    PubMed

    Shimada, Stephanie L; Petrakis, Beth Ann; Rothendler, James A; Zirkle, Maryan; Zhao, Shibei; Feng, Hua; Fix, Gemmae M; Ozkaynak, Mustafa; Martin, Tracey; Johnson, Sharon A; Tulu, Bengisu; Gordon, Howard S; Simon, Steven R; Woods, Susan S

    2017-09-01

    We sought to understand how patients and primary care teams use secure messaging (SM) to communicate with one another by analyzing secure message threads from 2 Department of Veterans Affairs facilities. We coded 1000 threads of SM communication sampled from 40 primary care teams. Most threads (94.5%) were initiated by patients (90.4%) or caregivers (4.1%); only 5.5% were initiated by primary care team members proactively reaching out to patients. Medication renewals and refills (47.2%), scheduling requests (17.6%), medication issues (12.9%), and health issues (12.7%) were the most common patient-initiated requests, followed by referrals (7.0%), administrative issues (6.5%), test results (5.4%), test issues (5.2%), informing messages (4.9%), comments about the patient portal or SM (4.1%), appreciation (3.9%), self-reported data (2.8%), life issues (1.5%), and complaints (1.5%). Very few messages were clinically urgent (0.7%) or contained other potentially challenging content. Message threads were mostly short (2.7 messages), comprising an average of 1.35 discrete content types. A substantial proportion of issues (24.2%) did not show any evidence of being resolved through SM. Time to response and extent of resolution via SM varied by message content. Proactive SM use by teams varied, but was most often for test results (32.7%), medication-related issues (21.8%), medication renewals (16.4%), or scheduling issues (18.2%). The majority of messages were transactional and initiated by patients or caregivers. Not all content categories were fully addressed over SM. Further education and training for both patients and clinical teams could improve the quality and efficiency of SM communication. Published by Oxford University Press on behalf of the American Medical Informatics Association 2017. This work is written by US Government employees and is in the public domain in the United States.

  1. Messaging to Increase Public Support for Naloxone Distribution Policies in the United States: Results from a Randomized Survey Experiment.

    PubMed

    Bachhuber, Marcus A; McGinty, Emma E; Kennedy-Hendricks, Alene; Niederdeppe, Jeff; Barry, Colleen L

    2015-01-01

    Barriers to public support for naloxone distribution include lack of knowledge, concerns about potential unintended consequences, and lack of sympathy for people at risk of overdose. A randomized survey experiment was conducted with a nationally-representative web-based survey research panel (GfK KnowledgePanel). Participants were randomly assigned to read different messages alone or in combination: 1) factual information about naloxone; 2) pre-emptive refutation of potential concerns about naloxone distribution; and 3) a sympathetic narrative about a mother whose daughter died of an opioid overdose. Participants were then asked if they support or oppose policies related to naloxone distribution. For each policy item, logistic regression models were used to test the effect of each message exposure compared with the no-exposure control group. The final sample consisted of 1,598 participants (completion rate: 72.6%). Factual information and the sympathetic narrative alone each led to higher support for training first responders to use naloxone, providing naloxone to friends and family members of people using opioids, and passing laws to protect people who administer naloxone. Participants receiving the combination of the sympathetic narrative and factual information, compared to factual information alone, were more likely to support all policies: providing naloxone to friends and family members (OR: 2.0 [95% CI: 1.4 to 2.9]), training first responders to use naloxone (OR: 2.0 [95% CI: 1.2 to 3.4]), passing laws to protect people if they administer naloxone (OR: 1.5 [95% CI: 1.04 to 2.2]), and passing laws to protect people if they call for medical help for an overdose (OR: 1.7 [95% CI: 1.2 to 2.5]). All messages increased public support, but combining factual information and the sympathetic narrative was most effective. Public support for naloxone distribution can be improved through education and sympathetic portrayals of the population who stands to benefit from

  2. CDC MessageWorks: Designing and Validating a Social Marketing Tool to Craft and Defend Effective Messages

    PubMed Central

    Cole, Galen E.; Keller, Punam A.; Reynolds, Jennifer; Schaur, Michelle; Krause, Diane

    2016-01-01

    The Centers for Disease Control and Prevention’s Division of Cancer Prevention and Control, in partnership with Oak Ridge Associated Universities, designed an online social marketing strategy tool, MessageWorks, to help health communicators effectively formulate messages aimed at changing health behaviors and evaluate message tactics and audience characteristics. MessageWorks is based on the advisor for risk communication model that identifies 10 variables that can be used to predict target audience intentions to comply with health recommendations. This article discusses the value of the MessageWorks tool to health communicators and to the field of social marketing by (1) describing the scientific evidence supporting use of MessageWorks to improve health communication practice and (2) summarizing how to use MessageWorks and interpret the results it produces. PMID:26877714

  3. Message framing in social networking sites.

    PubMed

    Kao, Danny Tengti; Chuang, Shih-Chieh; Wang, Sui-Min; Zhang, Lei

    2013-10-01

    Online social networking sites represent significant new opportunities for Internet advertisers. However, results based on the real world cannot be generalized to all virtual worlds. In this research, the moderating effects of need for cognition (NFC) and knowledge were applied to examine the impact of message framing on attitudes toward social networking sites. A total of 216 undergraduates participated in the study. Results reveal that for social networking sites, while high-NFC individuals form more favorable attitudes toward negatively framed messages than positively framed messages, low-NFC individuals form more favorable attitudes toward positively framed messages than negatively framed messages. In addition, low-knowledge individuals demonstrate more favorable attitudes toward negatively framed messages than positively framed messages; however, the framing effect does not differentially affect the attitudes of high-knowledge individuals. Furthermore, the framing effect does not differentially affect the attitudes of high-NFC individuals with high knowledge. In contrast, low-NFC individuals with low knowledge hold more favorable attitudes toward positively framed messages than negatively framed messages.

  4. A Study of College Students' Construct of Parameter Passing Implications for Instruction.

    ERIC Educational Resources Information Center

    Madison, Sandra Kay

    Parameter passing is the mechanism by which various program modules share information in a complex program; this paper was a study of novice programmers' understanding of the parameter construct. The bulk of the data was collected from interviews with eight college students enrolled in a state university introductory computer programming course.…

  5. Practical operational implementation of Teton Pass avalanche monitoring infrasound system.

    DOT National Transportation Integrated Search

    2008-12-01

    Highway snow avalanche forecasting programs typically rely on weather and field observations to make road closure and hazard : evaluations. Recently, infrasonic avalanche monitoring technology has been developed for practical use near Teton Pass, WY ...

  6. The Role of Text Messaging in Cardiovascular Risk Factor Optimization.

    PubMed

    Klimis, Harry; Khan, Mohammad Ehsan; Kok, Cindy; Chow, Clara K

    2017-01-01

    Many cases of CVD may be avoidable through lowering behavioural risk factors such as smoking and physical inactivity. Mobile health (mHealth) provides a novel opportunity to deliver cardiovascular prevention programs in a format that is potentially scalable. Here, we provide an overview of text messaging-based mHealth interventions in cardiovascular prevention. Text messaging-based interventions appear effective on a range of behavioural risk factors and can effect change on multiple risk factors-e.g. smoking, weight, blood pressure-simultaneously. For many texting studies, there are challenges in interpretation as many texting interventions are part of larger complex interventions making it difficult to determine the benefits of the separate components. Whilst there is evidence for text messaging improving cardiovascular risk factor levels in the short-term, future studies are needed to examine the durability of these effects and whether they can be translated to improvements in clinical care and outcomes.

  7. Broadcasting a message in a parallel computer

    DOEpatents

    Archer, Charles J; Faraj, Ahmad A

    2013-04-16

    Methods, systems, and products are disclosed for broadcasting a message in a parallel computer that includes: transmitting, by the logical root to all of the nodes directly connected to the logical root, a message; and for each node except the logical root: receiving the message; if that node is the physical root, then transmitting the message to all of the child nodes except the child node from which the message was received; if that node received the message from a parent node and if that node is not a leaf node, then transmitting the message to all of the child nodes; and if that node received the message from a child node and if that node is not the physical root, then transmitting the message to all of the child nodes except the child node from which the message was received and transmitting the message to the parent node.

  8. Send-side matching of data communications messages

    DOEpatents

    Archer, Charles J.; Blocksome, Michael A.; Ratterman, Joseph D.; Smith, Brian E.

    2014-07-01

    Send-side matching of data communications messages includes a plurality of compute nodes organized for collective operations, including: issuing by a receiving node to source nodes a receive message that specifies receipt of a single message to be sent from any source node, the receive message including message matching information, a specification of a hardware-level mutual exclusion device, and an identification of a receive buffer; matching by two or more of the source nodes the receive message with pending send messages in the two or more source nodes; operating by one of the source nodes having a matching send message the mutual exclusion device, excluding messages from other source nodes with matching send messages and identifying to the receiving node the source node operating the mutual exclusion device; and sending to the receiving node from the source node operating the mutual exclusion device a matched pending message.

  9. Send-side matching of data communications messages

    DOEpatents

    Archer, Charles J.; Blocksome, Michael A.; Ratterman, Joseph D.; Smith, Brian E.

    2014-06-17

    Send-side matching of data communications messages in a distributed computing system comprising a plurality of compute nodes, including: issuing by a receiving node to source nodes a receive message that specifies receipt of a single message to be sent from any source node, the receive message including message matching information, a specification of a hardware-level mutual exclusion device, and an identification of a receive buffer; matching by two or more of the source nodes the receive message with pending send messages in the two or more source nodes; operating by one of the source nodes having a matching send message the mutual exclusion device, excluding messages from other source nodes with matching send messages and identifying to the receiving node the source node operating the mutual exclusion device; and sending to the receiving node from the source node operating the mutual exclusion device a matched pending message.

  10. Improving the Effectiveness of Fundraising Messages: The Impact of Charity Goal Attainment, Message Framing, and Evidence on Persuasion

    ERIC Educational Resources Information Center

    Das, Enny; Kerkhof, Peter; Kuiper, Joyce

    2008-01-01

    This experimental study assessed the effectiveness of fundraising messages. Based on recent findings regarding the effects of message framing and evidence, effective fundraising messages should combine abstract, statistical information with a negative message frame and anecdotal evidence with a positive message frame. In addition, building on…

  11. A Study to Determine the Perception of Unintended Messages by Viewers of two United States Army Television Commercials.

    DTIC Science & Technology

    1991-11-29

    inter,:reted in ways not intended; the percepLion of subliminal messages is based on demographic characteristics and subculture influence; and...receiver and sender, and must be dealt with accordingly. For instance, if the sender of the message must compete with a louder auditory stimulus, this...these themes. Hoijer concluded that television programs do stimulate thought processes, and there is a connection between the contents 18 of the program

  12. 47 CFR 10.420 - Message elements.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 47 Telecommunication 1 2010-10-01 2010-10-01 false Message elements. 10.420 Section 10.420 Telecommunication FEDERAL COMMUNICATIONS COMMISSION GENERAL COMMERCIAL MOBILE ALERT SYSTEM Alert Message Requirements § 10.420 Message elements. A CMAS Alert Message processed by a Participating CMS Provider shall...

  13. Simultaneous message framing and error detection

    NASA Technical Reports Server (NTRS)

    Frey, A. H., Jr.

    1968-01-01

    Circuitry simultaneously inserts message framing information and detects noise errors in binary code data transmissions. Separate message groups are framed without requiring both framing bits and error-checking bits, and predetermined message sequence are separated from other message sequences without being hampered by intervening noise.

  14. Impact of Cultural Exposure and Message Framing on Oral Health Behavior: Exploring the Role of Message Memory.

    PubMed

    Brick, Cameron; McCully, Scout N; Updegraff, John A; Ehret, Phillip J; Areguin, Maira A; Sherman, David K

    2016-10-01

    Health messages are more effective when framed to be congruent with recipient characteristics, and health practitioners can strategically choose message features to promote adherence to recommended behaviors. We present exposure to US culture as a moderator of the impact of gain-frame versus loss-frame messages. Since US culture emphasizes individualism and approach orientation, greater cultural exposure was expected to predict improved patient choices and memory for gain-framed messages, whereas individuals with less exposure to US culture would show these advantages for loss-framed messages. 223 participants viewed a written oral health message in 1 of 3 randomized conditions-gain-frame, loss-frame, or no-message control-and were given 10 flosses. Cultural exposure was measured with the proportions of life spent and parents born in the US. At baseline and 1 week later, participants completed recall tests and reported recent flossing behavior. Message frame and cultural exposure interacted to predict improved patient decisions (increased flossing) and memory maintenance for the health message over 1 week; for example, those with low cultural exposure who saw a loss-frame message flossed more. Incongruent messages led to the same flossing rates as no message. Memory retention did not explain the effect of message congruency on flossing. Flossing behavior was self-reported. Cultural exposure may only have practical application in either highly individualistic or collectivistic countries. In health care settings where patients are urged to follow a behavior, asking basic demographic questions could allow medical practitioners to intentionally communicate in terms of gains or losses to improve patient decision making and treatment adherence. © The Author(s) 2015.

  15. Can exergames impart health messages? Game play, framing, and drivers of physical activity among children.

    PubMed

    Lwin, May O; Malik, Shelly

    2014-01-01

    This study examines the effectiveness of incorporating exergaming into physical education lessons as a platform for imparting health education messages and influencing children's beliefs about and attitudes toward physical activity. The authors launched a 6-week intervention program using Nintendo Wii games coupled with protection motivation theory-based health messaging among 5th-grade school children in Singapore. Results indicated that when children who were exposed to threat-framed messages played Wii exergames during physical education lessons, they reported more positive physical activity attitude, self-efficacy, and perceived behavioral control than did those who underwent regular physical education lessons and were exposed to the same message. In addition, among children playing Wii, the threat and coping frames had similar effects on the degree of message influence on physical activity attitudes and beliefs. The implications for schools, parents, and health policy are discussed.

  16. Learning experiences in population education: proposed guidelines and core messages.

    PubMed

    1984-01-01

    As a result of the 1984 Regional Workshop for the Development of Packages of Adequate Learning Requirements in Population Education, the participants tackled the problem of non-institutionalization of population education into the formal and non-formal educational curricula in their countries. Based on their deliberations, several sets of guidelines and core messages were formulated to provide countries with a more definite direction that will hopefully ensure the functional and effective integration of population education in their respective national school and out-of-school curriculum system. Useful packages of learning materials in population education should help realize the country's population policy and goals within the broader framework of socioeconomic development, and the content of the package should comprehensively cover the core messages of the country's Population Information, Education and Communication (IEC) Program. The population knowledge base of the package should be accurate and relevant; the package should provide for graphic and visual presentation and for assessment of effects on the target groups. Proposed core messages in population education discuss the advantages of small family size and delayed marriage, and aspects of responsible parenthood. Other messages discuss population resource development and population-related beliefs and values.

  17. Supporting Beacon and Event-Driven Messages in Vehicular Platoons through Token-Based Strategies

    PubMed Central

    Uhlemann, Elisabeth

    2018-01-01

    Timely and reliable inter-vehicle communications is a critical requirement to support traffic safety applications, such as vehicle platooning. Furthermore, low-delay communications allow the platoon to react quickly to unexpected events. In this scope, having a predictable and highly effective medium access control (MAC) method is of utmost importance. However, the currently available IEEE 802.11p technology is unable to adequately address these challenges. In this paper, we propose a MAC method especially adapted to platoons, able to transmit beacons within the required time constraints, but with a higher reliability level than IEEE 802.11p, while concurrently enabling efficient dissemination of event-driven messages. The protocol circulates the token within the platoon not in a round-robin fashion, but based on beacon data age, i.e., the time that has passed since the previous collection of status information, thereby automatically offering repeated beacon transmission opportunities for increased reliability. In addition, we propose three different methods for supporting event-driven messages co-existing with beacons. Analysis and simulation results in single and multi-hop scenarios showed that, by providing non-competitive channel access and frequent retransmission opportunities, our protocol can offer beacon delivery within one beacon generation interval while fulfilling the requirements on low-delay dissemination of event-driven messages for traffic safety applications. PMID:29570676

  18. Supporting Beacon and Event-Driven Messages in Vehicular Platoons through Token-Based Strategies.

    PubMed

    Balador, Ali; Uhlemann, Elisabeth; Calafate, Carlos T; Cano, Juan-Carlos

    2018-03-23

    Timely and reliable inter-vehicle communications is a critical requirement to support traffic safety applications, such as vehicle platooning. Furthermore, low-delay communications allow the platoon to react quickly to unexpected events. In this scope, having a predictable and highly effective medium access control (MAC) method is of utmost importance. However, the currently available IEEE 802.11p technology is unable to adequately address these challenges. In this paper, we propose a MAC method especially adapted to platoons, able to transmit beacons within the required time constraints, but with a higher reliability level than IEEE 802.11p, while concurrently enabling efficient dissemination of event-driven messages. The protocol circulates the token within the platoon not in a round-robin fashion, but based on beacon data age, i.e., the time that has passed since the previous collection of status information, thereby automatically offering repeated beacon transmission opportunities for increased reliability. In addition, we propose three different methods for supporting event-driven messages co-existing with beacons. Analysis and simulation results in single and multi-hop scenarios showed that, by providing non-competitive channel access and frequent retransmission opportunities, our protocol can offer beacon delivery within one beacon generation interval while fulfilling the requirements on low-delay dissemination of event-driven messages for traffic safety applications.

  19. Degree sequence in message transfer

    NASA Astrophysics Data System (ADS)

    Yamuna, M.

    2017-11-01

    Message encryption is always an issue in current communication scenario. Methods are being devised using various domains. Graphs satisfy numerous unique properties which can be used for message transfer. In this paper, I propose a message encryption method based on degree sequence of graphs.

  20. Broadcasting a message in a parallel computer

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    None

    Methods, systems, and products are disclosed for broadcasting a message in a parallel computer that includes: transmitting, by the logical root to all of the nodes directly connected to the logical root, a message; and for each node except the logical root: receiving the message; if that node is the physical root, then transmitting the message to all of the child nodes except the child node from which the message was received; if that node received the message from a parent node and if that node is not a leaf node, then transmitting the message to all of the childmore » nodes; and if that node received the message from a child node and if that node is not the physical root, then transmitting the message to all of the child nodes except the child node from which the message was received and transmitting the message to the parent node.« less

  1. Experimental field test of proposed pedestrian safety messages. Volume 2, Child messages

    DOT National Transportation Integrated Search

    1983-11-01

    Author's abstract: A detailed re-analysis of available pedestrian accident data was utilized to define three sets of pedestrian safety public information and education (PI&E) messages. These messages were then produced and field tested. The objective...

  2. The role of message strategy in improving hand hygiene compliance rates.

    PubMed

    Taylor, Ronald E

    2015-11-01

    Despite increased attention to hand hygiene over the past decade compliance rates remain relatively low. Although there have been a number of improvements in the science of hand hygiene, very little attention has been devoted to the messages that promote it. A total of 86 health care workers who are members of Association for Professionals in Infection Control and Epidemiology chapters participated in an online evaluation of 6 message strategies. The participants evaluated the strategies on ease of understanding, believability, and whether the message strategies were likely to lead to increased handwashing. Of the 6 strategies--ego, social, sensory, routine, acute need, and ration--the social strategy was rated the most likely to lead to action. The sensory strategy was seen as not only least likely but also counterproductive. ICPs should add a social message strategy to communication programs promoting hand hygiene. Although further testing is needed, ego, routine, and acute need strategies show promise for tapping into motivations that lead to improved compliance. Copyright © 2015 Association for Professionals in Infection Control and Epidemiology, Inc. Published by Elsevier Inc. All rights reserved.

  3. Randomized controlled trial of a messaging intervention to increase fruit and vegetable intake in adolescents: Affective versus instrumental messages.

    PubMed

    Carfora, Valentina; Caso, Daniela; Conner, Mark

    2016-11-01

    The present research aimed to test the efficacy of affective and instrumental text messages compared with a no-message control as a strategy to increase fruit and vegetable intake (FVI) in adolescents. A randomized controlled trial was used test impact of different text messages compared with no message on FVI over a 2-week period. A total of 1,065 adolescents (14-19 years) from a high school of the South of Italy completed the baseline questionnaire and were randomly allocated to one of three conditions: instrumental messages (N = 238), affective messages (N = 300), and no messages (N = 521). Students in the message conditions received one message each day over a 2-week period. The messages targeted affective (affective benefits) or instrumental (instrumental benefits) information about FVI. Self-reported FVI at 2 weeks was the key dependent variable. Analyses were based on the N = 634 who completed all aspects of the study. Findings showed that messages significantly increased FVI, particularly in the affective condition and this effect was partially mediated by changes in affective attitude and intentions towards FVI. Text messages can be used to increase FVI in adolescents. Text messages based on affective benefits are more effective than text messages based on instrumental benefits. Statement of contribution What is already known on this subject? Text messages have been shown to promote positive change in health behaviours. However, the most appropriate target for such text messages is less clear although targeting attitudes may be effective. What does this study add? This randomized controlled study shows that text messages targeting instrumental or affective attitudes produce changes in fruit and vegetable intake (FVI) in adolescents. Text messages targeting affective attitudes are shown to be more effective than text messages targeting instrumental attitudes. The effect of affective text messages on FVI was partially mediated by changes in

  4. Let's Talk About Breastfeeding: The Importance of Delivering a Message in a Home Visiting Program.

    PubMed

    McGinnis, Sandra; Lee, Eunju; Kirkland, Kristen; Miranda-Julian, Claudia; Greene, Rose

    2018-05-01

    To examine the potential impact of paraprofessional home visitors in promoting breastfeeding initiation and continuation among a high-risk population. A secondary analysis of program data from a statewide home visitation program. Thirty-six Healthy Families New York sites across New York State. A total of 3521 pregnant mothers at risk of poor child health and developmental outcomes. Home visitors deliver a multifaceted intervention that includes educating high-risk mothers on benefits of breastfeeding, encouraging them to breastfeed and supporting their efforts during prenatal and postnatal periods. Home visitor-reported content and frequency of home visits, participant-reported breastfeeding initiation and duration, and covariates (Kempe Family Stress Index, race and ethnicity, region, nativity, marital status, age, and education). Logistic regression. Breastfeeding initiation increased by 1.5% for each 1-point increase in the percentage of prenatal home visits that included breastfeeding discussions. Breastfeeding continuation during the first 6 months also increased with the percentage of earlier home visits that included breastfeeding discussions. Additionally, if a participant receives 1 more home visit during the third month, her likelihood of breastfeeding at 6 months increases by 11%. Effect sizes varied by months postpartum. Delivering a breastfeeding message consistently during regular home visits is important for increasing breastfeeding rates. Given that home visiting programs target new mothers least likely to breastfeed, a more consistent focus on breastfeeding in this supportive context may reduce breastfeeding disparities.

  5. Launch Control System Master Console Event Message Reduction

    NASA Technical Reports Server (NTRS)

    Nguyen, Uyen

    2014-01-01

    System monitoring and control (SMC) message browsers receive so many messages daily that operators do not need to see. Important messages are often mixed up among the less important ones. My job is to reduce the messages displayed in the message browser so that warning and emergency messages can be seen easily and therefore, responded promptly. There are multiple methods to achieve this. Firstly, duplicate messages should not appear many times in the message browser. Instead, the message should appear only once but with a number that counts the times that it appears. This method is called duplicate message suppression. Secondly, messages that update the most recent state (e.g. up/down) of a component should replace the old-state messages. This method is called state based message correlation. Thirdly, messages that display "normal" alarm level should be suppressed unless it's a response to an operator action. In addition to message reduction, I also work on correcting the severity level and text formats on messages.

  6. A Model for Speedup of Parallel Programs

    DTIC Science & Technology

    1997-01-01

    Sanjeev. K Setia . The interaction between mem- ory allocation and adaptive partitioning in message- passing multicomputers. In IPPS 󈨣 Workshop on Job...Scheduling Strategies for Parallel Processing, pages 89{99, 1995. [15] Sanjeev K. Setia and Satish K. Tripathi. A compar- ative analysis of static

  7. Comparing NET and ERI standardized exam scores between baccalaureate graduates who pass or fail the NCLEX-RN.

    PubMed

    Bondmass, Mary D; Moonie, Sheniz; Kowalski, Susan

    2008-01-01

    In the United States, nursing programs are commonly evaluated by their graduates success on the National Council Licensure Examination for Registered Nurses (NCLEX-RN). The purpose of this paper is to describe a change in NCLEX-RN success rates following the addition of standardized exams throughout our program's curriculum, and to compare these exam scores between graduates who pass NCLEX-RN and those who do not. Our results indicate an 8.5% change (p < 0.000) in the NCLEX-RN pass rate from our previous 5-year mean pass rate, and significant differences in standardized test scores for those who pass the NCLEX-RN compared to those who do not (p < 0.03). We conclude that our selected standardized exam scores are able to significantly identify graduates who are more likely to pass NCLEX-RN than not.

  8. Using Keystroke Analytics to Improve Pass-Fail Classifiers

    ERIC Educational Resources Information Center

    Casey, Kevin

    2017-01-01

    Learning analytics offers insights into student behaviour and the potential to detect poor performers before they fail exams. If the activity is primarily online (for example computer programming), a wealth of low-level data can be made available that allows unprecedented accuracy in predicting which students will pass or fail. In this paper, we…

  9. Getting the message across: age differences in the positive and negative framing of health care messages.

    PubMed

    Shamaskin, Andrea M; Mikels, Joseph A; Reed, Andrew E

    2010-09-01

    Although valenced health care messages influence impressions, memory, and behavior (Levin, Schneider, & Gaeth, 1998) and the processing of valenced information changes with age (Carstensen & Mikels, 2005), these 2 lines of research have thus far been disconnected. This study examined impressions of, and memory for, positively and negatively framed health care messages that were presented in pamphlets to 25 older adults and 24 younger adults. Older adults relative to younger adults rated positive pamphlets more informative than negative pamphlets and remembered a higher proportion of positive to negative messages. However, older adults misremembered negative messages to be positive. These findings demonstrate the age-related positivity effect in health care messages with promise as to the persuasive nature and lingering effects of positive messages. (c) 2010 APA, all rights reserved.

  10. Fear, threat and efficacy in threat appeals: message involvement as a key mediator to message acceptance.

    PubMed

    Cauberghe, Verolien; De Pelsmacker, Patrick; Janssens, Wim; Dens, Nathalie

    2009-03-01

    In a sample of 170 youngsters, the effect of two versions of a public service announcement (PSA) threat appeal against speeding, placed in four different contexts, on evoked fear, perceived threat (severity and probability of occurrence), perceived response efficacy and self-efficacy, message involvement and anti-speeding attitude and anti-speeding intention is investigated. Evoked fear and perceived threat and efficacy independently influence message involvement. Message involvement is a full mediator between evoked fear, perceived threat and efficacy perception on the one hand, and attitudes towards the message and behavioral intention to accept the message on the other. Speeding experience has a significantly negative impact on anti-speeding attitudes. Message and medium context threat levels and context thematic congruency have a significant effect on evoked fear and to a lesser extent on perceived threat.

  11. Mission Services Evolution Center Message Bus

    NASA Technical Reports Server (NTRS)

    Mayorga, Arturo; Bristow, John O.; Butschky, Mike

    2011-01-01

    The Goddard Mission Services Evolution Center (GMSEC) Message Bus is a robust, lightweight, fault-tolerant middleware implementation that supports all messaging capabilities of the GMSEC API. This architecture is a distributed software system that routes messages based on message subject names and knowledge of the locations in the network of the interested software components.

  12. Boosting Achievement with Messages that Motivate

    ERIC Educational Resources Information Center

    Dweck, Carol S.

    2007-01-01

    Almost everything educators say to their students sends a message. Some messages enhance students' motivation, but other messages undermine it. What should teachers say to students to send messages that motivate? In a survey given to parents, over 80% of them thought that it was necessary to praise their children's intelligence in order to give…

  13. Guidelines On The Selection And Design Of Messages For Changeable Message Signs

    DOT National Transportation Integrated Search

    1992-06-01

    THIS REPORT PRESENTS GUIDELINES ON THE DESIGN OF CHANGEABLE MESSAGE SIGN (CMS) MESSAGES FOR USE IN FREEWAY CORRIDORS FOR INCIDENT MANAGEMENT AND ROUTE DIVERSION. IT IS A COMPANION TO REPORT NO. FHWA/TX-92/1232-9, WHICH IS A PRIMER ON THE CHARACTERIST...

  14. A distributed program composition system

    NASA Technical Reports Server (NTRS)

    Brown, Robert L.

    1989-01-01

    A graphical technique for creating distributed computer programs is investigated and a prototype implementation is described which serves as a testbed for the concepts. The type of programs under examination is restricted to those comprising relatively heavyweight parts that intercommunicate by passing messages of typed objects. Such programs are often presented visually as a directed graph with computer program parts as the nodes and communication channels as the edges. This class of programs, called parts-based programs, is not well supported by existing computer systems; much manual work is required to describe the program to the system, establish the communication paths, accommodate the heterogeneity of data types, and to locate the parts of the program on the various systems involved. The work described solves most of these problems by providing an interface for describing parts-based programs in this class in a way that closely models the way programmers think about them: using sketches of diagraphs. Program parts, the computational modes of the larger program system are categorized in libraries and are accessed with browsers. The process of programming has the programmer draw the program graph interactively. Heterogeneity is automatically accommodated by the insertion of type translators where necessary between the parts. Many decisions are necessary in the creation of a comprehensive tool for interactive creation of programs in this class. Possibilities are explored and the issues behind such decisions are presented. An approach to program composition is described, not a carefully implemented programming environment. However, a prototype implementation is described that can demonstrate the ideas presented.

  15. Do Differences in Programmatic Resource Investments Result in Different 3-Year Pass Rates on the U.S. National Physical Therapy Examination?

    PubMed

    Covington, Kyle; McCallum, Christine; Engelhard, Chalee; Landry, Michel D; Cook, Chad

    2016-01-01

    The rising cost of health professions education is well documented and a growing concern among educators; however, little is known about the implications of resource investment on student success. The objective of this study was to determine whether programs with higher National Physical Therapist Exam (NPTE) pass rates invested significantly more on programmatic resources. This observational study used data from the Commission on Accreditation in Physical Therapy Education's (CAPTE) Annual Accreditation Report including all accredited physical therapist programs from the United States who graduated physical therapist students in 2011. Resource expenditures were recorded as both raw and as an index variable (resources per student). Descriptive statistics and comparisons (using chi-square and t-tests) among programs with <100% and 100% pass rates were analyzed from 2009-2011. An ANCOVA was used to determine differences in raw resource expenditures and resource expenditures per student. There were no differences in raw resource expenditures between programs with <100% and 100% pass rates. Programs with 100% pass rates were provided more resource expenditures per student for personnel, overall budget, and core faculty. The results of this study suggest programs with 100% pass rates invested significantly more per student for selected resources.

  16. Can Messages Make a Difference? The Association between E-Mail Messages and Health Outcomes in Diabetes Patients

    ERIC Educational Resources Information Center

    Turner, Jeanine Warisse; Robinson, James D.; Tian, Yan; Neustadtl, Alan; Angelus, Pam; Russell, Marie; Mun, Seong K.; Levine, Betty

    2013-01-01

    This investigation examined the impact of social support messages on patient health outcomes. Forty-one American Indian, Alaska Native, and Native Hawaiian patients received a total of 618 e-mail messages from their healthcare provider (HCP). The e-mail messages were divided into 3,565 message units and coded for instances of emotional social…

  17. Technology-Enhanced Maintenance of Treatment Gains in Eating Disorders: Efficacy of an Intervention Delivered via Text Messaging

    ERIC Educational Resources Information Center

    Bauer, Stephanie; Okon, Eberhard; Meermann, Rolf; Kordy, Hans

    2012-01-01

    Objective: Given the lack of maintenance interventions for eating disorders, a program delivered via the short message service (SMS) and text messaging was developed to support patients after their discharge from inpatient treatment. Method: The efficacy of the intervention was studied in a randomized controlled trial. Additionally, its impact on…

  18. Text messaging during simulated driving.

    PubMed

    Drews, Frank A; Yazdani, Hina; Godfrey, Celeste N; Cooper, Joel M; Strayer, David L

    2009-10-01

    This research aims to identify the impact of text messaging on simulated driving performance. In the past decade, a number of on-road, epidemiological, and simulator-based studies reported the negative impact of talking on a cell phone on driving behavior. However, the impact of text messaging on simulated driving performance is still not fully understood. Forty participants engaged in both a single task (driving) and a dual task (driving and text messaging) in a high-fidelity driving simulator. Analysis of driving performance revealed that participants in the dual-task condition responded more slowly to the onset of braking lights and showed impairments in forward and lateral control compared with a driving-only condition. Moreover, text-messaging drivers were involved in more crashes than drivers not engaged in text messaging. Text messaging while driving has a negative impact on simulated driving performance. This negative impact appears to exceed the impact of conversing on a cell phone while driving. The results increase our understanding of driver distraction and have potential implications for public safety and device development.

  19. The impact of cultural exposure and message framing on oral health behavior: Exploring the role of message memory

    PubMed Central

    Brick, Cameron; McCully, Scout N.; Updegraff, John A.; Ehret, Phillip J.; Areguin, Maira A.; Sherman, David K.

    2015-01-01

    Background Health messages are more effective when framed to be congruent with recipient characteristics, and health practitioners can strategically decide on message features to promote adherence to recommended behaviors. We present exposure to United States (U.S.) culture as a moderator of the impact of gain- vs. loss-frame messages. Since U.S. culture emphasizes individualism and approach orientation, greater cultural exposure was expected to predict improved patient choices and memory for gain-framed messages, whereas individuals with less exposure to U.S. culture would show these advantages for loss-framed messages. Methods 223 participants viewed a written oral health message in one of three randomized conditions: gain-frame, loss-frame, or no-message control, and were given ten flosses. Cultural exposure was measured with the proportions of life spent and parents born in the U.S. At baseline and one week later, participants completed recall tests and reported recent flossing behavior. Results Message frame and cultural exposure interacted to predict improved patient decisions (increased flossing) and memory maintenance for the health message over one week. E.g., those with low cultural exposure who saw a loss-frame message flossed more. Incongruent messages led to the same flossing rates as no message. Memory retention did not explain the effect of message congruency on flossing. Limitations Flossing behavior was self-reported. Cultural exposure may only have practical application in either highly individualistic or collectivistic countries. Conclusions In healthcare settings where patients are urged to follow a behavior, asking basic demographic questions could allow medical practitioners to intentionally communicate in terms of gains or losses to improve patient decision making and treatment adherence. PMID:25654986

  20. Developing effective messages about potable recycled water: The importance of message structure and content

    NASA Astrophysics Data System (ADS)

    Price, J.; Fielding, K. S.; Gardner, J.; Leviston, Z.; Green, M.

    2015-04-01

    Community opposition is a barrier to potable recycled water schemes. Effective communication strategies about such schemes are needed. Drawing on social psychological literature, two experimental studies are presented, which explore messages that improve public perceptions of potable recycled water. The Elaboration-Likelihood Model of information processing and attitude change is tested and supported. Study 1 (N = 415) premeasured support for recycled water, and trust in government information at Time 1. Messages varied in complexity and sidedness were presented at Time 2 (3 weeks later), and support and trust were remeasured. Support increased after receiving information, provided that participants received complex rather than simple information. Trust in government was also higher after receiving information. There was tentative evidence of this in response to two-sided messages rather than one-sided messages. Initial attitudes to recycled water moderated responses to information. Those initially neutral or ambivalent responded differently to simple and one-sided messages, compared to participants with positive or negative attitudes. Study 2 (N = 957) tested the effectiveness of information about the low relative risks, and/or benefits of potable recycled water, compared to control groups. Messages about the low risks resulted in higher support when the issue of recycled water was relevant. Messages about benefits resulted in higher perceived issue relevance, but did not translate into greater support. The results highlight the importance of understanding people's motivation to process information, and need to tailor communication to match attitudes and stage of recycled water schemes' development.

  1. Toward Predicting Popularity of Social Marketing Messages

    NASA Astrophysics Data System (ADS)

    Yu, Bei; Chen, Miao; Kwok, Linchi

    Popularity of social marketing messages indicates the effectiveness of the corresponding marketing strategies. This research aims to discover the characteristics of social marketing messages that contribute to different level of popularity. Using messages posted by a sample of restaurants on Facebook as a case study, we measured the message popularity by the number of "likes" voted by fans, and examined the relationship between the message popularity and two properties of the messages: (1) content, and (2) media type. Combining a number of text mining and statistics methods, we have discovered some interesting patterns correlated to "more popular" and "less popular" social marketing messages. This work lays foundation for building computational models to predict the popularity of social marketing messages in the future.

  2. Maintaining relevance: an evaluation of health message sponsorship at Australian community sport and arts events.

    PubMed

    Rosenberg, Michael; Ferguson, Renee

    2014-12-04

    Health message sponsorship at community sport and arts events is an established component of a health promotion settings approach. Recent increases in commercial sponsorship of sport and community events has swelled competition for consumer attention and potentially reduced the impact of health message sponsorship. The purpose of this study was to evaluate awareness, understandings and behavioural intentions of health messages promoted at sponsored community sport and arts events. Interview and self-administered surveys were completed by 2259 adults attending one of 29 sport and arts events held in Western Australia between 2008 and 2013. The surveys measured participant awareness of the health message promoted at the event, as well as comprehension, acceptance and behavioural intention as a result of exposure to health messages. Awareness of the sponsored health message was 58% across all sponsored events, with high levels of comprehension (74%) and acceptance (92%) among those aware of the health message. Forming behavioural intentions was significantly related to the type of sponsored message promoted at the event, being female and over 40 years of age. Messages about sun protection and promoting mental health were the most likely to result in behavioural intention. Health message sponsorship, at least within a comprehensive sponsorship program, appears to remain an effective health promotion strategy for generating awareness and behavioural intention among people attending sport and arts events. Remaining relevant within a modern sponsorship environment appears closely aligned to selecting health messages that promote behavioural action relevant to the sponsored event that are also supported by broader health promotion campaigns.

  3. Space Shuttle Program Primary Avionics Software System (PASS) Success Legacy - Quality and Reliability Date

    NASA Technical Reports Server (NTRS)

    Orr, James K.; Peltier, Daryl

    2010-01-01

    Thsi slide presentation reviews the avionics software system on board the space shuttle, with particular emphasis on the quality and reliability. The Primary Avionics Software System (PASS) provides automatic and fly-by-wire control of critical shuttle systems which executes in redundant computers. Charts given show the number of space shuttle flights vs time, PASS's development history, and other charts that point to the reliability of the system's development. The reliability of the system is also compared to predicted reliability.

  4. A Messaging Infrastructure for WLCG

    NASA Astrophysics Data System (ADS)

    Casey, James; Cons, Lionel; Lapka, Wojciech; Paladin, Massimo; Skaburskas, Konstantin

    2011-12-01

    During the EGEE-III project operational tools such as SAM, Nagios, Gridview, the regional Dashboard and GGUS moved to a communication architecture based on ActiveMQ, an open-source enterprise messaging solution. LHC experiments, in particular ATLAS, developed prototypes of systems using the same messaging infrastructure, validating the system for their use-cases. In this paper we describe the WLCG messaging use cases and outline an improved messaging architecture based on the experience gained during the EGEE-III period. We show how this provides a solid basis for many applications, including the grid middleware, to improve their resilience and reliability.

  5. Enhancing Mobile Access to Information with the Short Message Service

    ERIC Educational Resources Information Center

    Brown, Jeff; Vetter, Ron; Saunders-White, Debra

    2008-01-01

    This article describes the development of interactive text message applications at the University of North Carolina Wilmington. We describe how the university's information technology innovation program led to the formation of a faculty owned company in which the university holds an equity interest. Next, we discuss the collaborative development…

  6. Content analysis of antismoking videos on YouTube: message sensation value, message appeals, and their relationships with viewer responses.

    PubMed

    Paek, Hye-Jin; Kim, Kyongseok; Hove, Thomas

    2010-12-01

    Focusing on several message features that are prominent in antismoking campaign literature, this content-analytic study examines 934 antismoking video clips on YouTube for the following characteristics: message sensation value (MSV) and three types of message appeal (threat, social and humor). These four characteristics are then linked to YouTube's interactive audience response mechanisms (number of viewers, viewer ratings and number of comments) to capture message reach, viewer preference and viewer engagement. The findings suggest the following: (i) antismoking messages are prevalent on YouTube, (ii) MSV levels of online antismoking videos are relatively low compared with MSV levels of televised antismoking messages, (iii) threat appeals are the videos' predominant message strategy and (iv) message characteristics are related to viewer reach and viewer preference.

  7. Algorithms for parallel flow solvers on message passing architectures

    NASA Technical Reports Server (NTRS)

    Vanderwijngaart, Rob F.

    1995-01-01

    The purpose of this project has been to identify and test suitable technologies for implementation of fluid flow solvers -- possibly coupled with structures and heat equation solvers -- on MIMD parallel computers. In the course of this investigation much attention has been paid to efficient domain decomposition strategies for ADI-type algorithms. Multi-partitioning derives its efficiency from the assignment of several blocks of grid points to each processor in the parallel computer. A coarse-grain parallelism is obtained, and a near-perfect load balance results. In uni-partitioning every processor receives responsibility for exactly one block of grid points instead of several. This necessitates fine-grain pipelined program execution in order to obtain a reasonable load balance. Although fine-grain parallelism is less desirable on many systems, especially high-latency networks of workstations, uni-partition methods are still in wide use in production codes for flow problems. Consequently, it remains important to achieve good efficiency with this technique that has essentially been superseded by multi-partitioning for parallel ADI-type algorithms. Another reason for the concentration on improving the performance of pipeline methods is their applicability in other types of flow solver kernels with stronger implied data dependence. Analytical expressions can be derived for the size of the dynamic load imbalance incurred in traditional pipelines. From these it can be determined what is the optimal first-processor retardation that leads to the shortest total completion time for the pipeline process. Theoretical predictions of pipeline performance with and without optimization match experimental observations on the iPSC/860 very well. Analysis of pipeline performance also highlights the effect of uncareful grid partitioning in flow solvers that employ pipeline algorithms. If grid blocks at boundaries are not at least as large in the wall-normal direction as those

  8. The psychology of nutrition messages.

    PubMed

    Schofield, Heather; Mullainathan, Sendhil

    2008-01-01

    The purpose of this paper is to explore consumer thinking about nutrition decisions and how firms can use consumers' awareness of the links between nutrients and health generated by public health messages to market products, including ones, which have little nutritional value. We approach this issue by tracking the development of public health messages based on scientific research, dissemination of those messages in the popular press, and use of nutrition claims in food advertisements to assess whether firms are timing the use of nutrition claims to take advantage of heuristic-based decision-making. Our findings suggest that the timing of the development of nutrition information, its dissemination in the press, and use in advertising accords well with a heuristic processing model in which firms take advantage of associations between nutrient information and health in their advertisements. However, the demonstrated relationships may not be causal. Further research will be needed to provide stronger and more comprehensive evidence regarding the proposed message hijacking process. If the message hijacking framework is borne out: (1) simple overall health rating scales could significantly improve consumer decision-making, (2) the impact of misleading advertisements could be mitigated by encouraging a multidimensional view of nutrition, and (3) more intensive regulation of product labeling could limit the impact of hijacked messages. Overall, this paper considers a novel hypothesis about the impact of public health messages on nutrition and health.

  9. Development of a Theoretically Driven mHealth Text Messaging Application for Sustaining Recent Weight Loss.

    PubMed

    Shaw, Ryan J; Bosworth, Hayden B; Hess, Jeffrey C; Silva, Susan G; Lipkus, Isaac M; Davis, Linda L; Johnson, Constance M

    2013-05-07

    Mobile phone short message service (SMS) text messaging, has the potential to serve as an intervention medium to promote sustainability of weight loss that can be easily and affordably used by clinicians and consumers. To develop theoretically driven weight loss sustaining text messages and pilot an mHealth SMS text messaging intervention to promote sustaining recent weight loss in order to understand optimal frequency and timing of message delivery, and for feasibility and usability testing. Results from the pilot study were used to design and construct a patient privacy compliant automated SMS application to deliver weight loss sustaining messages. We first conducted a pilot study in which participants (N=16) received a daily SMS text message for one month following a structured weight loss program. Messages were developed from diet and exercise guidelines. Following the intervention, interviews were conducted and self-reported weight was collected via SMS text messaging. All participants (N=16) were capable of sending and receiving SMS text messages. During the phone interview at 1 month post-baseline and at 3 months post-baseline, 13/14 (93%) of participants who completed the study reported their weight via SMS. At 3 months post-baseline, 79% (11/14) participants sustained or continued to lose weight. Participants (13/14, 93%) were favorable toward the messages and the majority (10/14, 71%) felt they were useful in helping them sustain weight loss. All 14 participants who completed the interview thought SMS was a favorable communication medium and was useful to receive short relevant messages promptly and directly. All participants read the messages when they knew they arrived and most (11/14, 79%) read the messages at the time of delivery. All participants felt that at least one daily message is needed to sustain weight loss behaviors and that they should be delivered in the morning. Results were then used to develop the SMS text messaging application. Study

  10. Scaffolding Collaborative Argumentation in Asynchronous Discussions with Message Constraints and Message Labels

    ERIC Educational Resources Information Center

    Jeong, Allan; Joung, Sunyoung

    2007-01-01

    This study examined the effects of message constraints and labels on collaborative argumentation in asynchronous online discussions. Thirty-eight undergraduate students in an introductory educational technology course were assigned to one of three groups. In one group, students posted specific types of messages using a prescribed set of message…

  11. Use of a Text Message Program to Raise Type 2 Diabetes Risk Awareness and Promote Health Behavior Change (Part I): Assessment of Participant Reach and Adoption

    PubMed Central

    Hirzel, Lindsey; Turske, Scott A; Des Jardins, Terrisca R; Yarandi, Hossein; Bondurant, Patricia

    2013-01-01

    Background There are an estimated 25.8 million American children and adults, equivalent to 8.3% of the US population, living with diabetes. Diabetes is particularly burdensome on minority populations. The use of mobile technologies for reaching broad populations is a promising approach, given its wide footprint and ability to deliver inexpensive personalized messages, to increase awareness of type 2 diabetes and promote behavior changes targeting risk factors associated with type 2 diabetes. As a part of the Beacon Community Cooperative Agreement Program, txt4health, a public-facing mobile health information service, was launched in 3 Beacon Communities: the Southeast Michigan Beacon Community in Detroit, MI, the Greater Cincinnati Beacon Community in Cincinnati, OH, and the Crescent City Beacon Community in New Orleans, LA. Txt4health is a mobile health information service designed to help people understand their risk for type 2 diabetes and become more informed about the steps they can take to lead healthy lives. Objective The purpose of this investigation was to use the RE-AIM framework to document txt4health reach and adoption by focusing on enrollment and participant engagement in program pilots in Southeast Michigan and Greater Cincinnati. Methods We conducted a retrospective records analysis of individual-level txt4health system data from participants in Southeast Michigan and Greater Cincinnati to determine participant usage of txt4health and engagement with the program. Results Results from the retrospective records analysis revealed that 5570 participants initiated the 2-step enrollment process via 1 of 3 enrollment strategies: text message, website, or directly with Beacon staff who signed participants up via the website. In total, 33.00% (1838/5570) of participants completed the 2-step enrollment process and were fully enrolled in the program. All participants (100.00%, 1620/1620) who enrolled via text message completed the entire 2-step enrollment

  12. Distributed parallel messaging for multiprocessor systems

    DOEpatents

    Chen, Dong; Heidelberger, Philip; Salapura, Valentina; Senger, Robert M; Steinmacher-Burrow, Burhard; Sugawara, Yutaka

    2013-06-04

    A method and apparatus for distributed parallel messaging in a parallel computing system. The apparatus includes, at each node of a multiprocessor network, multiple injection messaging engine units and reception messaging engine units, each implementing a DMA engine and each supporting both multiple packet injection into and multiple reception from a network, in parallel. The reception side of the messaging unit (MU) includes a switch interface enabling writing of data of a packet received from the network to the memory system. The transmission side of the messaging unit, includes switch interface for reading from the memory system when injecting packets into the network.

  13. ABM Drag_Pass Report Generator

    NASA Technical Reports Server (NTRS)

    Fisher, Forest; Gladden, Roy; Khanampornpan, Teerapat

    2008-01-01

    dragREPORT software was developed in parallel with abmREPORT, which is described in the preceding article. Both programs were built on the capabilities created during that process. This tool generates a drag_pass report that summarizes vital information from the MRO aerobreaking drag_pass build process to facilitate both sequence reviews and provide a high-level summarization of the sequence for mission management. The script extracts information from the ENV, SSF, FRF, SCMFmax, and OPTG files, presenting them in a single, easy-to-check report providing the majority of parameters needed for cross check and verification as part of the sequence review process. Prior to dragReport, all the needed information was spread across a number of different files, each in a different format. This software is a Perl script that extracts vital summarization information and build-process details from a number of source files into a single, concise report format used to aid the MPST sequence review process and to provide a high-level summarization of the sequence for mission management reference. This software could be adapted for future aerobraking missions to provide similar reports, review and summarization information.

  14. When Communications Collide With Recipients’ Actions: Effects of Post-Message Behavior on Intentions to Follow the Message Recommendation

    PubMed Central

    Albarracín, Dolores; Cohen, Joel B.; Kumkale, G. Tarcan

    2013-01-01

    Two experiments investigated the processes through which post-message behavior (e.g., noncompliance) influences resistance to the message. Participants in Experiment 1 read preventive, consumer-education messages that either opposed the consumption of an alcohol-like product or recommended moderation. Half of the participants then tried the product, whereas the remaining participants performed a filler task. In the absence of trial, the two messages had the same effect. However, recipients of the abstinence-promoting preventive message who tried the product had stronger intentions to use the product in the future than recipients of the moderation message. This finding suggests that assessments of message impact may be inadequate unless an opportunity for trial is also provided. Results are interpreted in terms of self-perception and cognitive dissonance and contrasted from psychological reactance. PMID:15018672

  15. Relational Uncertainty and Message Production within Courtship: Features of Date Request Messages

    ERIC Educational Resources Information Center

    Knobloch, Leanne K.

    2006-01-01

    This paper theorizes about how relational uncertainty may predict features of date request messages within courtship. It reports a study in which 248 individuals role-played leaving a date request voice mail message for their partner. Relational uncertainty was negatively associated with the fluency (H1), affiliativeness (H2), relationship focus…

  16. Clandestine Message Passing in Virtual Environments

    DTIC Science & Technology

    2008-09-01

    accessed April 4, 2008). Weir, Laila. “Boring Game? Outsorce It.” (August 24, 2004). http://www.wired.com/ entertainment / music /news/2004/08/ 64638...Multiplayer Online MOVES - Modeling Virtual Environments and Simulation MTV – Music Television NPS - Naval Postgraduate School PAN – Personal Area...Network PSP - PlayStation Portable RPG – Role-playing Game SL - Second Life SVN - Subversion VE – Virtual Environments vMTV – Virtual Music

  17. Predictors of Retention and Passing National Council Licensure Examination for Registered Nurses

    ERIC Educational Resources Information Center

    Elkins, Nancy

    2013-01-01

    The current nursing shortage has challenged colleges to educate nurses at a faster pace than in previous times. Successful completion of the nursing programs and passing the National Council Licensure Examination for Registered Nurses (NCLEX-RN) exam is important for the students, faculty, and nursing programs. The purpose of this retrospective…

  18. Event-Driven Messaging for Offline Data Quality Monitoring at ATLAS

    NASA Astrophysics Data System (ADS)

    Onyisi, Peter

    2015-12-01

    During LHC Run 1, the information flow through the offline data quality monitoring in ATLAS relied heavily on chains of processes polling each other's outputs for handshaking purposes. This resulted in a fragile architecture with many possible points of failure and an inability to monitor the overall state of the distributed system. We report on the status of a project undertaken during the LHC shutdown to replace the ad hoc synchronization methods with a uniform message queue system. This enables the use of standard protocols to connect processes on multiple hosts; reliable transmission of messages between possibly unreliable programs; easy monitoring of the information flow; and the removal of inefficient polling-based communication.

  19. Evaluation of Sexual Communication Message Strategies

    PubMed Central

    2011-01-01

    Parent-child communication about sex is an important proximal reproductive health outcome. But while campaigns to promote it such as the Parents Speak Up National Campaign (PSUNC) have been effective, little is known about how messages influence parental cognitions and behavior. This study examines which message features explain responses to sexual communication messages. We content analyzed 4 PSUNC ads to identify specific, measurable message and advertising execution features. We then develop quantitative measures of those features, including message strategies, marketing strategies, and voice and other stylistic features, and merged the resulting data into a dataset drawn from a national media tracking survey of the campaign. Finally, we conducted multivariable logistic regression models to identify relationships between message content and ad reactions/receptivity, and between ad reactions/receptivity and parents' cognitions related to sexual communication included in the campaign's conceptual model. We found that overall parents were highly receptive to the PSUNC ads. We did not find significant associations between message content and ad reactions/receptivity. However, we found that reactions/receptivity to specific PSUNC ads were associated with increased norms, self-efficacy, short- and long-term expectations about parent-child sexual communication, as theorized in the conceptual model. This study extends previous research and methods to analyze message content and reactions/receptivity. The results confirm and extend previous PSUNC campaign evaluation and provide further evidence for the conceptual model. Future research should examine additional message content features and the effects of reactions/receptivity. PMID:21599875

  20. Ultrastructural evaluation of multiple pass low energy versus single pass high energy radio-frequency treatment.

    PubMed

    Kist, David; Burns, A Jay; Sanner, Roth; Counters, Jeff; Zelickson, Brian

    2006-02-01

    The radio-frequency (RF) device is a system capable of volumetric heating of the mid to deep dermis and selective heating of the fibrous septa strands and fascia layer. Clinically, these effects promote dermal collagen production, and tightening of these deep subcutaneous structures. A new technique of using multiple low energy passes has been described which results in lower patient discomfort and fewer side effects. This technique has also been anecdotally described as giving more reproducible and reliable clinical results of tissue tightening and contouring. This study will compare ultrastructural changes in collagen between a single pass high energy versus up to five passes of a multiple pass lower energy treatment. Three subjects were consented and treated in the preauricular region with the RF device using single or multiple passes (three or five) in the same 1.5 cm(2) treatment area with a slight delay between passes to allow tissue cooling. Biopsies from each treatment region and a control biopsy were taken immediately, 24 hours or 6 months post treatment for electron microscopic examination of the 0-1 mm and 1-2 mm levels. Sections of tissue 1 mm x 1 mm x 80 nm were examined with an RCA EMU-4 Transmission Electron Microscope. Twenty sections from 6 blocks from each 1 mm depth were examined by 2 blinded observers. The morphology and degree of collagen change in relation to area examined was compared to the control tissue, and estimated using a quantitative scale. Ultrastructural examination of tissue showed that an increased amount of collagen fibril changes with increasing passes at energies of 97 J (three passes) and 122 J (five passes), respectively. The changes seen after five multiple passes were similar to those detected after much more painful single pass high-energy treatments. This ultrastructural study shows changes in collagen fibril morphology with an increased effect demonstrated at greater depths of the skin with multiple low-fluence passes

  1. Establishing Passing Scores.

    ERIC Educational Resources Information Center

    McLarty, Joyce R.

    The problem of establishing appropriate passing scores is one of evaluation rather than estimation and not amenable to exact solution. It must therefore be approached by (1) identifying criteria for judging the acceptability of the passing score, (2) collecting the data appropriate to assessing each relevant criterion, and (3) judging how well the…

  2. The Prodiguer Messaging Platform

    NASA Astrophysics Data System (ADS)

    Greenslade, Mark; Denvil, Sebastien; Raciazek, Jerome; Carenton, Nicolas; Levavasseur, Guillame

    2014-05-01

    CONVERGENCE is a French multi-partner national project designed to gather HPC and informatics expertise to innovate in the context of running French climate models with differing grids and at differing resolutions. Efficient and reliable execution of these models and the management and dissemination of model output (data and meta-data) are just some of the complexities that CONVERGENCE aims to resolve. The Institut Pierre Simon Laplace (IPSL) is responsible for running climate simulations upon a set of heterogenous HPC environments within France. With heterogeneity comes added complexity in terms of simulation instrumentation and control. Obtaining a global perspective upon the state of all simulations running upon all HPC environments has hitherto been problematic. In this presentation we detail how, within the context of CONVERGENCE, the implementation of the Prodiguer messaging platform resolves complexity and permits the development of real-time applications such as: 1. a simulation monitoring dashboard; 2. a simulation metrics visualizer; 3. an automated simulation runtime notifier; 4. an automated output data & meta-data publishing pipeline; The Prodiguer messaging platform leverages a widely used open source message broker software called RabbitMQ. RabbitMQ itself implements the Advanced Message Queue Protocol (AMPQ). Hence it will be demonstrated that the Prodiguer messaging platform is built upon both open source and open standards.

  3. Can Secure Patient-Provider Messaging Improve Diabetes Care?

    PubMed

    Chung, Sukyung; Panattoni, Laura; Chi, Jeffrey; Palaniappan, Latha

    2017-10-01

    Internet-based secure messaging between patients and providers through a patient portal is now common in the practice of modern medicine. There is limited evidence on how messaging is associated with use and clinical quality measures among patients with type 2 diabetes. We examine whether messaging with physicians for medical advice is associated with fewer face-to-face visits and better diabetes management. Patients with diabetes who were enrolled in an online portal of an outpatient health care organization in 2011-2014 were studied ( N = 37,762 patient-years). Messages from/to primary care physicians or diabetes-related specialists for medical advice were considered. We estimated the association of messaging with diabetes quality measures, adjusting for patient and provider characteristics and patient-level clustering. Most patients (72%) used messaging, and those who made frequent visits were also more likely to message. Given visit frequency, no (vs. any) messaging was negatively associated with the likelihood of meeting an HbA 1c target of <8% (64 mmol/mol) (odds ratio [OR] 0.83 [95% CI 0.77, 0.90]). Among message users, additional messages (vs. 1) were associated with better outcome (two more messages: OR 1.17 [95% CI 1.06, 1.28]; three more messages: 1.38 [1.25, 1.53]; four more messages: 1.55 [1.43, 1.69]). The relationship was stronger for noninsulin users. Message frequency was also positively associated, but to a smaller extent, with process measures (e.g., eye examination). Physician-initiated messages had effects similar to those for patient-initiated messages. Patients with diabetes frequently used secure messaging for medical advice in addition to routine visits to care providers. Messaging was positively associated with better diabetes management in a large community outpatient practice. © 2017 by the American Diabetes Association.

  4. 78 FR 52166 - Quantitative Messaging Research

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-08-22

    ... COMMODITY FUTURES TRADING COMMISSION Quantitative Messaging Research AGENCY: Commodity Futures... survey will follow qualitative message testing research (for which CFTC received fast-track OMB approval... message testing research (for which CFTC received fast-track OMB approval) and is necessary to identify...

  5. Source Similarity and Social Media Health Messages: Extending Construal Level Theory to Message Sources.

    PubMed

    Young, Rachel

    2015-09-01

    Social media users post messages about health goals and behaviors to online social networks. Compared with more traditional sources of health communication such as physicians or health journalists, peer sources are likely to be perceived as more socially close or similar, which influences how messages are processed. This experimental study uses construal level theory of psychological distance to predict how mediated health messages from peers influence health-related cognition and behavioral intention. Participants were exposed to source cues that identified peer sources as being either highly attitudinally and demographically similar to or different from participants. As predicted by construal level theory, participants who perceived sources of social media health messages as highly similar listed a greater proportion of beliefs about the feasibility of health behaviors and a greater proportion of negative beliefs, while participants who perceived sources as more dissimilar listed a greater proportion of positive beliefs about the health behaviors. Results of the study could be useful in determining how health messages from peers could encourage individuals to set realistic health goals.

  6. Ultra-compact resonant tunneling-based TE-pass and TM-pass polarizers for SOI platform.

    PubMed

    Azzam, Shaimaa I; Obayya, Salah S A

    2015-03-15

    We investigate the polarization-dependent resonance tunneling effect in silicon waveguides to achieve ultra-compact and highly efficient polarization fitters for integrated silicon photonics, to the best of our knowledge for the first time. We hence propose simple structures for silicon-on-insulator transverse electric (TE)-pass and transverse magnetic (TM)-pass polarizers based on the resonance tunneling effect in silicon waveguides. The suggested TE-pass polarizer has insertion losses (IL), extinction ratio (ER), and return losses (RL) of 0.004 dB, 18 dB, and 24 dB, respectively; whereas, the TM-pass polarizer is characterized by IL, ER, and RL of 0.15 dB, 20 dB, and 23 dB, respectively. Both polarizers have an ultra-short device length of only 1.35 and 1.31 μm for the TE-pass and the TM-pass polarizers which are the shortest reported lengths to the best of our knowledge.

  7. Messages for men: the efficacy of EPPM-based messages targeting men's physical activity.

    PubMed

    Hatchell, Alexandra C; Bassett-Gunter, Rebecca L; Clarke, Marie; Kimura, Stacey; Latimer-Cheung, Amy E

    2013-01-01

    The majority of men are insufficiently active. Men's tendencies to participate in risky behaviors and their inactivity likely contribute to their increased risk of morbidity and mortality. Physical activity decreases the risk of developing many chronic diseases and may be an optimal behavior to target in men's health interventions. However, educational resources promoting physical activity for men are lacking. To address this gap, we tested the efficacy of messages based upon the Extended Parallel Process Model (EPPM; Witte, 1992) to increase men's physical activity intentions and behaviors. Men who were not meeting physical activity guidelines (n = 611) were randomly assigned to read high or low efficacy physical activity messages paired with high or no health risk information. Participants read four brief messages on four consecutive days. Intentions were assessed at baseline and the first follow-up (Day 5). Manipulation check measures were assessed at Day 5. Behavior was assessed at baseline and the second follow-up (Day 14). Overall, the messages had small sized effects. A completer analysis revealed that although men's intentions to be active increased over the course of the study regardless of the messages they received, only men who received risk information significantly increased their physical activity. Men who received low efficacy and risk information were less likely to meet the physical activity guidelines at Day 14 than men who only received low efficacy information. From these results, we suggest preliminary recommendations for the development of physical activity messages for men and areas for future EPPM-based research. PsycINFO Database Record (c) 2013 APA, all rights reserved.

  8. The perfect message at the perfect moment.

    PubMed

    Kalyanam, Kirthi; Zweben, Monte

    2005-11-01

    Marketers planning promotional campaigns ask questions to boost the odds that the messages will be accepted: Who should receive each message? What should be its content? How should we deliver it? The one question they rarely ask is, when should we deliver it? That's too bad, because in marketing, timing is arguably the most important variable of all. Indeed, there are moments in a customer's relationship with a business when she wants to communicate with that business because something has changed. If the company contacts her with the right message in the right format at the right time, there's a good chance of a warm reception. The question of "when" can be answered by a new computer-based model called "dialogue marketing," which is, to date, the highest rung on an evolutionary ladder that ascends from database marketing to relationship marketing to one-to-one marketing. Its principle advantages over older approaches are that it is completely interactive, exploits many communication channels, and is "relationship aware": that is, it continuously tracks every nuance of the customer's interaction with the business. Thus, dialogue marketing responds to each transition in that relationship at the moment the customer requires attention. Turning a traditional marketing strategy into a dialogue-marketing program is a straightforward matter. Begin by identifying the batch communications you make with customers, then ask yourself what events could trigger those communications to make them more timely. Add a question or call to action to each message and prepare a different treatment or response for each possible answer. Finally, create a series of increasingly urgent calls to action that kick in if the question or call to action goes unanswered by the customer. As dialogue marketing proliferates, it may provide the solid new footing that Madison Avenue seeks.

  9. C2 Core and UCore Message Design Capstone: Interoperable Message Structure

    DTIC Science & Technology

    2009-09-01

    there are sufficient resources to carry out a mission. The Team used the Theatre Battle Management Command System ( TBMCS ) to generate sample CMD...System ( TBMCS ) was used to generate CMD messages as inputs for both use cases. These were programmatically transformed into the three-layer message...used for the experiment was generated from the TBMCS in the form of a CMD XML document. The Capstone experiment included transforming that document to

  10. [Hypertension short message service].

    PubMed

    Magometschnigg, Dieter; Rothmayer, Gustav

    2011-07-01

    Hypertension Short Message Service is a new tool for disease management aimed at improving the success of the doctor's daily routine in hypertension treatment both in terms of the quality of hypertension assessment and concerning the efficacy of treatment. At present there is a wide and disappointing difference between the results of treatment in routine work [1] and in clinical trials [2, 3] even when the same cohort of patients is treated by the same therapists. The efficacy rate in daily routine is about 20-35% as compared to 70-85% during trials. Assuming this gap is due to differences in disease management we integrated short message service and Internet applications into a new hypertension management tool (Blutdrucksms). According to our registry data "Blutdrucksms" is very successful: More than 80% of our hypertensive patients were treated to target. In June 2008, we implemented the SMS-Blood Pressure Protocol, and in October 2010, we analyzed the data of all "Blutdrucksms" users available in our registry. By then a total of 568 patients - 44% female and 56% male - had sent their self-recorded blood pressure readings as short messages to the SMS-Center; 75% of these patients had had at least one organ damage (left ventricular hypertrophy, increase in intima media thickening or carotid plaque). Mean casual blood pressure, recorded before enrolment into the SMS-program, was 152/83. It had improved to 136/80 mmHg by October 2010. The mean of the self-recorded blood pressures of the last month of participation was 128/76 mmHg and a heart rate of 69 beats per minute; 85% of all hypertensive patients had their pressures at treatment goal. Thus, we assume that "Blutdrucksms" is an excellent tool to improve the efficacy of antihypertensive disease management in routine work. We assume that the success is due to the enhanced communication between patient and doctor via SMS. As we are aware of the weakness of registry analysis we try to set up a controlled prospective

  11. Structural monitoring of Rigolets Pass Bridge : LTRC technical summary report 437.

    DOT National Transportation Integrated Search

    2009-09-01

    The Louisiana Department of Transportation and Development (LADOTD) has been gradually : introducing high performance concrete (HPC) into their bridge construction programs. The : Rigolets Pass Bridge is a 62-span bridge with a total length of 5,489 ...

  12. Hand hygiene posters: selling the message.

    PubMed

    Jenner, E A; Jones, F; Fletcher, B C; Miller, L; Scott, G M

    2005-02-01

    This literature review was undertaken to determine the established theory and research that might be utilized to inform the construction of persuasive messages on hand hygiene posters. It discusses the principles of message framing and the use of fear appeals. Current theory suggests that the most effective messages for health promotion behaviours should be framed in terms of gains rather than losses for the individual. However, as clinical hand hygiene is largely for the benefit of others (i.e. patients), messages should also invoke a sense of personal responsibility and appeal to altruistic behaviour. The use of repeated minimal fear appeals have their place. Posters that simply convey training messages are not effective persuaders.

  13. The message development tool: a case for effective operationalization of messaging in social marketing practice.

    PubMed

    Mattson, Marifran; Basu, Ambar

    2010-07-01

    That messages are essential, if not the most critical component of any communicative process, seems like an obvious claim. More so when the communication is about health--one of the most vital and elemental of human experiences (Babrow & Mattson, 2003). Any communication campaign that aims to change a target audience's health behaviors needs to centralize messages. Even though messaging strategies are an essential component of social marketing and are a widely used campaign model, health campaigns based on this framework have not always been able to effectively operationalize this key component, leading to cases where initiating and sustaining prescribed health behavior has been difficult (MacStravic, 2000). Based on an examination of the VERB campaign and an Australian breastfeeding promotion campaign, we propose a message development tool within the ambit of the social marketing framework that aims to extend the framework and ensure that the messaging component of the model is contextualized at the core of planning, implementation, and evaluation efforts.

  14. Recycling parental sexual messages.

    PubMed

    Darling, C A; Hicks, M W

    1983-01-01

    The purpose of this study was to explore parent-child sexual communication by investigating the impact of direct and indirect parental messages on the sexual attitudes and sexual satisfaction of young adults. A survey research design was used to obtain data from undergraduate students attending a large Southern university. The findings indicate that both direct and indirect parental sexual messages are negative and restrictive and have a differential impact on sexual satisfaction and sexual attitudes. While sexual satisfaction was positive, sexual attitudes were found to be problematic, especially among females. Suggestions are given for approaches that family life educators and parents may use in order to recycle previous sexual messages.

  15. Diabetes education via mobile text messaging.

    PubMed

    Wangberg, Silje C; Arsand, Eirik; Andersson, Niklas

    2006-01-01

    Living with diabetes makes great educational demands on a family. We have tested the feasibility of using the mobile phone short message service (SMS) for reaching people with diabetes information. We also assessed user satisfaction and perceived pros and cons of the medium through interviews. Eleven parents of children with type 1 diabetes received messages for 11 weeks. The parents were positive about the system and said that they would like to continue to use it. The pop-up reminding effect of SMS messages in busy everyday life was noted as positive. Some parents experienced the messages as somewhat intrusive, arriving too often and at inconvenient times. The parents also noted the potential of the messages to facilitate communication with their adolescent children. The inability to store all of the messages or to print them out were seen as major disadvantages. Overall, the SMS seems to hold promise as means of delivering diabetes information.

  16. Assessing the efficacy of single-pass backpack electrofishing to characterize fish community structure

    USGS Publications Warehouse

    Meador, M.R.; McIntyre, J.P.; Pollock, K.H.

    2003-01-01

    Two-pass backpack electrofishing data collected as part of the U.S. Geological Survey's National Water-Quality Assessment Program were analyzed to assess the efficacy of single-pass backpack electrofishing. A two-capture removal model was used to estimate, within 10 river basins across the United States, proportional fish species richness from one-pass electrofishing and probabilities of detection for individual fish species. Mean estimated species richness from first-pass sampling (ps1) ranged from 80.7% to 100% of estimated total species richness for each river basin, based on at least seven samples per basin. However, ps1 values for individual sites ranged from 40% to 100% of estimated total species richness. Additional species unique to the second pass were collected in 50.3% of the samples. Of these, cyprinids and centrarchids were collected most frequently. Proportional fish species richness estimated for the first pass increased significantly with decreasing stream width for 1 of the 10 river basins. When used to calculate probabilities of detection of individual fish species, the removal model failed 48% of the time because the number of individuals of a species was greater in the second pass than in the first pass. Single-pass backpack electrofishing data alone may make it difficult to determine whether characterized fish community structure data are real or spurious. The two-pass removal model can be used to assess the effectiveness of sampling species richness with a single electrofishing pass. However, the two-pass removal model may have limited utility to determine probabilities of detection of individual species and, thus, limit the ability to assess the effectiveness of single-pass sampling to characterize species relative abundances. Multiple-pass (at least three passes) backpack electrofishing at a large number of sites may not be cost-effective as part of a standardized sampling protocol for large-geographic-scale studies. However, multiple-pass

  17. TXT@WORK: pediatric hospitalists and text messaging.

    PubMed

    Kuhlmann, Stephanie; Ahlers-Schmidt, Carolyn R; Steinberger, Erik

    2014-07-01

    Many studies assess provider-patient communication through text messaging; however, minimal research has addressed communication among physicians. The purpose of this study was to evaluate the use of text messaging by pediatric hospitalists. A brief, anonymous, electronic survey was distributed through the American Academy of Pediatrics Section on Hospital Medicine Listserv in February 2012. Survey questions assessed work-related text messaging. Of the 106 pediatric hospitalist respondents, 97 met inclusion criteria. Most were female (73%) and had been in practice <10 years (67%). Ninety-one percent of responders used a smartphone. More than half sent (60%) and received (61%) work-related text messages, some (12%) more than 10 times per shift. More than half (53%) received work-related text messages when not at work. When asked to identify all potential work recipients, most often sent work-related text messages to other pediatric hospitalists (64%), fellows or resident physicians (37%), and subspecialists/consulting physicians (28%). When asked their preferred mode for brief communication, respondents' preferences varied. Many (46%) respondents worried privacy laws can be violated by sending/receiving text messages, and some (30%) reported having received protected health information (PHI) through text messages. However, only 11% reported their institution offered encryption software for text messaging. Physicians were using text messaging as a means of brief, work-related communication. Concerns arose regarding transfer of PHI using unsecure systems and work-life balance. Future research should examine accuracy and effectiveness of text message communication in the hospital, as well as patient privacy issues.

  18. 47 CFR 10.420 - Message elements.

    Code of Federal Regulations, 2012 CFR

    2012-10-01

    ... 47 Telecommunication 1 2012-10-01 2012-10-01 false Message elements. 10.420 Section 10.420... Requirements § 10.420 Message elements. A CMAS Alert Message processed by a Participating CMS Provider shall include five mandatory CAP elements—Event Type; Area Affected; Recommended Action; Expiration Time (with...

  19. 47 CFR 10.420 - Message elements.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... 47 Telecommunication 1 2011-10-01 2011-10-01 false Message elements. 10.420 Section 10.420... Requirements § 10.420 Message elements. A CMAS Alert Message processed by a Participating CMS Provider shall include five mandatory CAP elements—Event Type; Area Affected; Recommended Action; Expiration Time (with...

  20. 47 CFR 10.420 - Message elements.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ... 47 Telecommunication 1 2013-10-01 2013-10-01 false Message elements. 10.420 Section 10.420... § 10.420 Message elements. A WEA Alert Message processed by a Participating CMS Provider shall include five mandatory CAP elements—Event Type; Area Affected; Recommended Action; Expiration Time (with time...

  1. 47 CFR 10.420 - Message elements.

    Code of Federal Regulations, 2014 CFR

    2014-10-01

    ... 47 Telecommunication 1 2014-10-01 2014-10-01 false Message elements. 10.420 Section 10.420... § 10.420 Message elements. A WEA Alert Message processed by a Participating CMS Provider shall include five mandatory CAP elements—Event Type; Area Affected; Recommended Action; Expiration Time (with time...

  2. Efficient iteration in data-parallel programs with irregular and dynamically distributed data structures

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Littlefield, R.J.

    1990-02-01

    To implement an efficient data-parallel program on a non-shared memory MIMD multicomputer, data and computations must be properly partitioned to achieve good load balance and locality of reference. Programs with irregular data reference patterns often require irregular partitions. Although good partitions may be easy to determine, they can be difficult or impossible to implement in programming languages that provide only regular data distributions, such as blocked or cyclic arrays. We are developing Onyx, a programming system that provides a shared memory model of distributed data structures and extends the concept of data distribution to include irregular and dynamic distributions. Thismore » provides a powerful means to specify irregular partitions. Perhaps surprisingly, programs using it can also execute efficiently. In this paper, we describe and evaluate the Onyx implementation of a model problem that repeatedly executes an irregular but fixed data reference pattern. On an NCUBE hypercube, the speed of the Onyx implementation is comparable to that of carefully handwritten message-passing code.« less

  3. A Novel Free Flap Monitoring System Using Tissue Oximetry with Text Message Alerts.

    PubMed

    Ricci, Joseph A; Vargas, Christina R; Lin, Samuel J; Tobias, Adam M; Taghinia, Amir H; Lee, Bernard T

    2016-06-01

    Background The time to detection of vascular compromise is a significant predictor of free flap salvage outcomes as early reexploration improves salvage rates. Continuous transcutaneous near-infrared tissue oximetry is an objective, quantitative method of detecting flap vascular compromise and has been shown to allow earlier reexploration and higher salvage rates than clinical assessment alone. We designed a novel text messaging system to improve communication using tissue oximetry monitoring. Methods A retrospective review was performed of a prospectively collected database of all microsurgical breast reconstructions from 2008 to 2015. A novel text messaging system was introduced in 2013 and programmed to send text messages alert when the tissue oximetry readings suggested potential flap compromise based on established thresholds. Patient demographics and complications, including rate of reexploration and flap loss were assessed. Results There were 900 autologous microsurgical breast free flaps during the study period: 614 were monitored with standard clinical monitoring and tissue oximetry compared with 286 flaps with the additional text messaging system. There were 27 unplanned returns to the operating room in the tissue oximetry group and 5 in the text messaging group with 1 complete flap loss in each group. Reexploration occurred sooner as a result of these text message alerts (17.5 vs. 26.6 hours postoperatively), however, it did not achieve statistical significance. Conclusions We were able to demonstrate the use of a novel text messaging system for tissue oximetry. This alert system shows promise in identifying impending flap loss with rapid notification of the surgical team. Thieme Medical Publishers 333 Seventh Avenue, New York, NY 10001, USA.

  4. Designing Skin Cancer Prevention Messages: Should We Emphasize Gains or Losses? Message Framing, Risk Type, and Prior Experience.

    PubMed

    Lee, Moon J; Kang, Hannah

    2018-05-01

    To test whether message framing (ie, gain vs. loss) and risk type (ie, health vs appearance risk) in skin cancer prevention messages interact with one's prior experience. Two experiments with a 2 (message framing: gain vs loss) × 2 (risk type: health vs appearance risk) factorial design were conducted. The participants were given a URL to the experiment website via e-mail. On the first page of the website, the participants were told that they would be asked to evaluate a skin cancer print public service announcement (PSA): Online experiments. A total of 397 individuals participated (236 for experiment 1 and 161 for experiment 2). Apparatus: Four versions of the skin cancer print PSAs were developed. Four PSAs were identical except for the 2 manipulated components: message framing and risk type. Measures were adopted from Cho and Boster (message framing), Jones and Leary and Kiene et al. (risk type), De Vries, Mesters, van't Riet, Willems, and Reubsaet and Knight, Kirincich, Farmer, and Hood (prior experience), and Hammond, Fong, Zanna, Thrasher, and Borland and Hoffner and Ye (behavioral intent). General linear models were used to test hypotheses. Three-way interactions among message framing, risk type, and prior experience were found: When the intent of the message was to encourage sunscreen use, the effects of message framing and risk type were shown to be the exact opposite directions from when the intent was to discourage indoor/outdoor tanning. To discourage tanning among those with prior experience, messages emphasizing losses in terms of one's health will work better. For those with no prior experience, messages emphasizing potential appearance losses will work better for discouraging tanning while messages emphasizing gains like improving appearance will do a better job in encouraging sunscreen use.

  5. Ease of imagination, message framing, and physical activity messages.

    PubMed

    Berry, Tanya R; Carson, Valerie

    2010-02-01

    The purpose of this research was to replicate a study that examined how message framing and ease of imagination interact to influence attitudes towards the prevention of heart disease through physical activity and a healthy diet. Changes were made such that only physical activity behaviour was profiled and assessed as a moderating variable. It was hypothesized that gain-framed messages would positively influence attitudes with hard to imagine symptoms, that loss-framed messages would positively influence attitudes with easy to imagine symptoms and exercise frequency would moderate the findings. This study employed a 2 (easy or hard to imagine symptoms) by 2 (gain- or loss-framed) Solomon square design whereby participants, half of whom completed a pre-test, were randomly assigned to one of four conditions: easy to imagine/gain-framed, hard to imagine/gain-framed, easy to imagine/loss-framed, or hard to imagine/loss-framed. Participants included adults over the age of 55 years (N=57) and undergraduate students (18-22 years; N=118). They were described either hard to imagine or easy to imagine symptoms of heart disease and diabetes and asked to imagine them. Participants then read either a gain- or loss-framed physical activity message followed by post-test questionnaires that assessed attitudes, exercise frequency, and demographics. Regression analyses showed no significant framing effects but significant effects for ease of imagination and exercise frequency as a moderating variable. This study failed to replicate the original research findings but showed that participants who exercised the least and were in the hard to imagine condition had the worst attitudes towards physical activity.

  6. Launching Family Message Journals.

    ERIC Educational Resources Information Center

    Wollman-Bonilla, Julie

    This lesson introduces Family Message Journals, a tool for encouraging family involvement and supporting writing to reflect and learn. First and second graders are led into composing through demonstration, guided writing, and finally independent writing of messages that they will bring home for family to read and write a reply. During the three…

  7. Making Vaccine Messaging Stick: Perceived Causal Instability as a Barrier to Effective Vaccine Messaging.

    PubMed

    Dixon, Graham N

    2017-08-01

    Health officials often face challenges in communicating the risks associated with not vaccinating, where persuasive messages can fail to elicit desired responses. However, the mechanisms behind these failures have not been fully ascertained. To address this gap, an experiment (N = 163) tested the differences between loss-framed messages-one emphasizing the consequence of not receiving a flu vaccine; the other emphasizing the consequence of receiving the flu vaccine. Despite an identical consequence (i.e., Guillain-Barre syndrome), the message highlighting the consequence of not receiving the flu vaccine produced lower negative affect scores as compared to the message highlighting the consequence of receiving the flu vaccine. Mediation analyses suggest that one reason for this difference is due to non-vaccination being perceived as temporary and reversible, whereas vaccination is perceived as being permanent. Implications on health communication and future research are discussed.

  8. Legibility of Text and Pictograms in Variable Message Signs: Can Single-Word Messages Outperform Pictograms?

    PubMed

    Roca, Javier; Insa, Beatriz; Tejero, Pilar

    2018-05-01

    The current research shows the advantage of single-word messages in the particular case of variable message signs (VMSs) with a high aspect ratio. Early studies on traffic sign design proposed that pictorial information would advantage equivalent text messages in static signs. We used a driving simulator to present individually 36 VMSs, showing six words (e.g., "congestion") and six danger signs (e.g., congestion traffic sign). In Experiment 1, 18 drivers read aloud the text or orally identified the pictograms as soon as they could correctly do it. In Experiment 2, a different sample of 18 drivers gave a motor response, according to the meaning of the message. We analyzed the legibility distance and accuracy, driving performance (speed variability), and glance behavior. Our results show that single-word messages were associated with better performance (farther reading distances) and required less visual demands (fewer glances and less glancing times) than pictograms. As typical configurations of VMSs usually have a high aspect ratio, and thus allow large character heights, single-word messages can outperform the legibility of pictograms. However, the final advantage of text or pictorial messages would depend on several factors, such as the driver's knowledge of the language and the pictogram set, the use of single or multiple words, the particular design and size of critical details in letters and pictograms, environmental factors, and driver age. Potential applications include the design of VMSs and other devices aimed at displaying text and/or pictograms with a high aspect ratio.

  9. Don't Say That to ME: Opposition to Targeting in Weight-Centric Intervention Messages.

    PubMed

    Robinson, Becky; Coveleski, Samantha

    2018-02-01

    Obesity is a global health issue. Despite well-intentioned efforts by public institutions, traditional health promotion techniques often lead to offending those most in need of weight loss. For example, when Bryn Mawr College targeted overweight students to offer a free fitness and nutrition program, it was met with accusations of fat-shaming, indicating that weight-centric messages operate in a more complex sociocultural system than many public health concerns. To better understand reactions to weight-centric health messages, college-aged women evaluated the Bryn Mawr College e-mail. Using an embedded mixed-methods design, analysis revealed that reactions followed four positive themes, six negative themes, and one neutral theme. Statistical tests indicated that health literacy, feminist identification, body dissatisfaction, and body size discrepancy influenced evaluations of message offensiveness and effectiveness. Contrary to the recommendations of traditional behavior change research, these results indicate that audience segmentation and message tailoring may not be effective for promoting weight loss.

  10. Race Socialization Messages across Historical Time

    ERIC Educational Resources Information Center

    Brown, Tony N.; Lesane-Brown, Chase L.

    2006-01-01

    In this study we investigated whether the content of race socialization messages varied by birth cohort, using data from a national probability sample. Most respondents recalled receiving messages about what it means to be black from their parents or guardians; these messages were coded into five mutually exclusive content categories: individual…

  11. CAST: a new program package for the accurate characterization of large and flexible molecular systems.

    PubMed

    Grebner, Christoph; Becker, Johannes; Weber, Daniel; Bellinger, Daniel; Tafipolski, Maxim; Brückner, Charlotte; Engels, Bernd

    2014-09-15

    The presented program package, Conformational Analysis and Search Tool (CAST) allows the accurate treatment of large and flexible (macro) molecular systems. For the determination of thermally accessible minima CAST offers the newly developed TabuSearch algorithm, but algorithms such as Monte Carlo (MC), MC with minimization, and molecular dynamics are implemented as well. For the determination of reaction paths, CAST provides the PathOpt, the Nudge Elastic band, and the umbrella sampling approach. Access to free energies is possible through the free energy perturbation approach. Along with a number of standard force fields, a newly developed symmetry-adapted perturbation theory-based force field is included. Semiempirical computations are possible through DFTB+ and MOPAC interfaces. For calculations based on density functional theory, a Message Passing Interface (MPI) interface to the Graphics Processing Unit (GPU)-accelerated TeraChem program is available. The program is available on request. Copyright © 2014 Wiley Periodicals, Inc.

  12. Hooked on a feeling: affective anti-smoking messages are more effective than cognitive messages at changing implicit evaluations of smoking.

    PubMed

    Smith, Colin Tucker; De Houwer, Jan

    2015-01-01

    Because implicit evaluations are thought to underlie many aspects of behavior, researchers have started looking for ways to change them. We examine whether and when persuasive messages alter strongly held implicit evaluations of smoking. In smokers, an affective anti-smoking message led to more negative implicit evaluations on four different implicit measures as compared to a cognitive anti-smoking message which seemed to backfire. Additional analyses suggested that the observed effects were mediated by the feelings and emotions raised by the messages. In non-smokers, both the affective and cognitive message engendered slightly more negative implicit evaluations. We conclude that persuasive messages change implicit evaluations in a way that depends on properties of the message and of the participant. Thus, our data open new avenues for research directed at tailoring persuasive messages to change implicit evaluations.

  13. Hooked on a feeling: affective anti-smoking messages are more effective than cognitive messages at changing implicit evaluations of smoking

    PubMed Central

    Smith, Colin Tucker; De Houwer, Jan

    2015-01-01

    Because implicit evaluations are thought to underlie many aspects of behavior, researchers have started looking for ways to change them. We examine whether and when persuasive messages alter strongly held implicit evaluations of smoking. In smokers, an affective anti-smoking message led to more negative implicit evaluations on four different implicit measures as compared to a cognitive anti-smoking message which seemed to backfire. Additional analyses suggested that the observed effects were mediated by the feelings and emotions raised by the messages. In non-smokers, both the affective and cognitive message engendered slightly more negative implicit evaluations. We conclude that persuasive messages change implicit evaluations in a way that depends on properties of the message and of the participant. Thus, our data open new avenues for research directed at tailoring persuasive messages to change implicit evaluations. PMID:26557099

  14. Messages about Education in TV Programs Popular with Children and Teenagers. Final Report.

    ERIC Educational Resources Information Center

    Williams, Tannis MacBeth; And Others

    Televised portrayals of variables that are related to educational and occupational aspirations and educational motivation have the potential to influence viewers' attitudes, expectations, and behaviors in these domains. In order to test this premise, a study assessed messages about these variables and about drug use in the prime-time television…

  15. Simplifying HL7 Version 3 messages.

    PubMed

    Worden, Robert; Scott, Philip

    2011-01-01

    HL7 Version 3 offers a semantically robust method for healthcare interoperability but has been criticized as overly complex to implement. This paper reviews initiatives to simplify HL7 Version 3 messaging and presents a novel approach based on semantic mapping. Based on user-defined definitions, precise transforms between simple and full messages are automatically generated. Systems can be interfaced with the simple messages and achieve interoperability with full Version 3 messages through the transforms. This reduces the costs of HL7 interfacing and will encourage better uptake of HL7 Version 3 and CDA.

  16. Khyber Pass, Afghanistan-Pakistan

    NASA Image and Video Library

    2010-11-08

    The ASTER instrument onboard NASA Terra spacecraft imaged the Khyber Pass, a mountain pass that links Afghanistan and Pakistan. Throughout its history it has been an important trade route between Central Asia and South Asia.

  17. A community and culture-centered approach to developing effective cardiovascular health messages.

    PubMed

    Kandula, Namratha R; Khurana, Neerja R; Makoul, Gregory; Glass, Sara; Baker, David W

    2012-10-01

    Little is known about how best to target cardiovascular health promotion messages to minorities. This study describes key lessons that emerged from a community and culture-centered approach to developing a multimedia, coronary heart disease (CHD) patient education program (PEP) for medically underserved South Asian immigrants. The prototype PEP integrated the surface structures (e.g. language) and deeper structures (e.g. explanatory models (EMs), values) of South Asians' socio-cultural context. Seven focus groups and 13 individual interviews were used to investigate South Asians' reactions and obtain qualitative feedback after viewing the culturally targeted PEP. Qualitative data were organized into emergent thematic constructs. Participants (n=56) mean age was 51 years and 48 % were Hindi speakers. Community members had a strong, negative reaction to some of the targeted messages, "This statement is a bold attack. You are pin-pointing one community." Other important themes emerged from focus groups and interviews about the PEP: 1) it did not capture the community's heterogeneity; 2) did not sufficiently incorporate South Asians' EMs of CHD; and 3) did not address economic barriers to CHD prevention. Feedback was used to revise the PEP. A community and culture-centered approach to developing cardiovascular health promotion messages revealed tensions between the researcher's vantage point of "cultural targeting" and the community's perceptions and reactions to these messages. Engaging communities in every phase of message design, incorporating their EMs, recognizing community heterogeneity, and addressing economic and structural barriers, are critical steps to ensuring that health promotion messages reach their intended audience and achieve true cultural appropriateness.

  18. Effectively engaging stakeholders and the public in developing violence prevention messages.

    PubMed

    Boyko, Jennifer A; Wathen, C Nadine; Kothari, Anita

    2017-05-11

    Preventing family violence requires that stakeholders and the broader public be involved in developing evidence-based violence prevention strategies. However, gaps exist in between what we know (knowledge), what we do (action), and the structures supporting practice (policy). We discuss the broad challenge of mobilizing knowledge-for-action in family violence, with a primary focus on the issue of how stakeholders and the public can be effectively engaged when developing and communicating evidence-based violence prevention messages. We suggest that a comprehensive approach to stakeholder and public engagement in developing violence prevention messages includes: 1) clear and consistent messaging; 2) identifying and using, as appropriate, lessons from campaigns that show evidence of reducing specific types of violence; and 3) evidence-informed approaches for communicating to specific groups. Components of a comprehensive approach must take into account the available research evidence, implementation feasibility, and the context-specific nature of family violence. While strategies exist for engaging stakeholders and the public in messaging about family violence prevention, knowledge mobilization must be informed by evidence, dialogue with stakeholders, and proactive media strategies. This paper will be of interest to public health practitioners or others involved in planning and implementing violence prevention programs because it highlights what is known about the issue, potential solutions, and implementation considerations.

  19. User Preferences for a Text Message-Based Smoking Cessation Intervention

    ERIC Educational Resources Information Center

    Bock, Beth C.; Heron, Kristin E.; Jennings, Ernestine G.; Magee, Joshua C.; Morrow, Kathleen M.

    2013-01-01

    Younger adults are more likely to smoke and less likely to seek treatment than older smokers. They are also frequent users of communication technology. In the current study, we conducted focus groups to obtain feedback about preferences for a text message-based smoking cessation program from potential users. Participants ("N" = 21, "M" age = 25.6…

  20. Scientific Message Translation and the Heuristic Systematic Model: Insights for Designing Educational Messages About Progesterone and Breast Cancer Risks

    PubMed Central

    Perrault, Evan; Smith, Sandi; Keating, David M.; Nazione, Samantha; Silk, Kami; Russell, Jessica

    2017-01-01

    Results of ongoing scientific research on environmental determinants of breast cancer are not typically presented to the public in ways they can easily understand and use to take preventive actions. In this study, results of scientific studies on progesterone exposure as a risk factor for breast cancer were translated into high and low literacy level messages. Using the heuristic systematic model, this study examined how ability, motivation, and message processing (heuristic and systematic) influenced perceptions of risk beliefs and negative attitudes about progesterone exposure among women who read the translated scientific messages. Among the 1254 participants, those given the higher literacy level message had greater perceptions of risk about progesterone. Heuristic message cues of source credibility and perceived message quality, as well as motivation, also predicted risk beliefs. Finally, risk beliefs were a strong predictor of negative attitudes about exposure to progesterone. The results can help improve health education message design in terms of practitioners having better knowledge of message features that are the most persuasive to the target audiences on this topic. PMID:25903053

  1. Nonblocking and orphan free message logging protocols

    NASA Technical Reports Server (NTRS)

    Alvisi, Lorenzo; Hoppe, Bruce; Marzullo, Keith

    1992-01-01

    Currently existing message logging protocols demonstrate a classic pessimistic vs. optimistic tradeoff. We show that the optimistic-pessimistic tradeoff is not inherent to the problem of message logging. We construct a message-logging protocol that has the positive features of both optimistic and pessimistic protocol: our protocol prevents orphans and allows simple failure recovery; however, it requires no blocking in failure-free runs. Furthermore, this protocol does not introduce any additional message overhead as compared to one implemented for a system in which messages may be lost but processes do not crash.

  2. Nonblocking and orphan free message logging protocols

    NASA Astrophysics Data System (ADS)

    Alvisi, Lorenzo; Hoppe, Bruce; Marzullo, Keith

    1992-12-01

    Currently existing message logging protocols demonstrate a classic pessimistic vs. optimistic tradeoff. We show that the optimistic-pessimistic tradeoff is not inherent to the problem of message logging. We construct a message-logging protocol that has the positive features of both optimistic and pessimistic protocol: our protocol prevents orphans and allows simple failure recovery; however, it requires no blocking in failure-free runs. Furthermore, this protocol does not introduce any additional message overhead as compared to one implemented for a system in which messages may be lost but processes do not crash.

  3. "Which pass is better?" Novel approaches to assess passing effectiveness in elite soccer.

    PubMed

    Rein, Robert; Raabe, Dominik; Memmert, Daniel

    2017-10-01

    Passing behaviour is a key property of successful performance in team sports. Previous investigations however have mainly focused on notational measurements like total passing frequencies which provide little information about what actually constitutes successful passing behaviour. Consequently, this has hampered the transfer of research findings into applied settings. Here we present two novel approaches to assess passing effectiveness in elite soccer by evaluating their effects on majority situations and space control in front of the goal. Majority situations are assessed by calculating the number of defenders between the ball carrier and the goal. Control of space is estimated using Voronoi-diagrams based on the player's positions on the pitch. Both methods were applied to position data from 103 German First division games from the 2011/2012, 2012/2013 and 2014/2015 seasons using a big data approach. The results show that both measures are significantly related to successful game play with respect to the number of goals scored and to the probability of winning a game. The results further show that on average passes from the mid-field into the attacking area are most effective. The presented passing efficiency measures thereby offer new opportunities for future applications in soccer and other sports disciplines whilst maintaining practical relevance with respect to tactical training regimes or game performances analysis. Copyright © 2017 Elsevier B.V. All rights reserved.

  4. Use of qualitative research to inform development of nutrition messages for low-income mothers of preschool children.

    PubMed

    White, Alicie H; Wilson, Judy F; Burns, Adam; Blum-Kemelor, Donna; Singh, Anita; Race, Patricia O; Soto, Valery; Lockett, Alice F

    2011-01-01

    To develop and test nutrition messages and supporting content with low-income mothers for use with theory-based interventions addressing fruit and vegetable consumption and child-feeding practices. Six formative and 6 evaluative focus groups explored message concepts and tested messages, respectively. Research facilities in Maryland, Texas, California, Florida, North Carolina, New York, Alabama, and Illinois. Ninety-five low-income mothers of 2- to 5-year-old children; over half from households participating in a federal nutrition assistance program. Preference for and comprehension of nutrition messages. Qualitative data analysis procedures to generate common themes from transcripts and observers' notes. Messages on role modeling, cooking and eating together, having patience when introducing new food items, and allowing children to serve themselves were well received. Mothers preferred messages that emphasized their role as a teacher and noted benefits such as their children becoming more independent and learning new skills. Mothers commonly doubted children's ability to accurately report when they are "full" and disliked messages encouraging mothers to allow children to "decide" whether and how much to eat. This study generated 7 audience-tested messages for incorporation into nutrition education interventions targeting low-income mothers of preschool-age children. Published by Elsevier Inc.

  5. Evaluation of Text Messaging Effects on Health Goal Adherence in the Management of Participants With Chronic Diseases.

    PubMed

    Stagg, Sharon J; Speroni, Karen Gabel; Daniel, Marlon G; Eigenbrode, Melissa; Geisler, Lori

    The study purpose was to determine whether text messaging health-related messages, questions, and reminders to community case management participants with chronic diseases increased health goal adherence. This study was conducted by a rural community case management, hospital-affiliated program. This pilot, quasiexperimental study measured health goal adherence, the degree to which an individual continues work toward self-identified health goals under limited supervision, before and after a text messaging intervention. All participants were receiving community case management services for chronic disease. Participants completed baseline and follow-up surveys regarding a text messaging intervention. Most participants were African Americans, had diabetes, with equal numbers by gender, an average age of 57.8 years, and had been in the community case management program for 3-5 years. Participants were sent a total of 1,654 messages/questions and 571 reminders. At follow-up, respondents who reported "Did you work on your health goals?" increased significantly (p = .0430). However, no differences were found for "Did you go to your health care appointments?" and "Did you take your medicines as you should?" No differences were noted in reported visits/hospitalizations overall or specifically at the research site. Lastly, study member visit/hospitalization numbers did not change significantly at follow-up. Although text messaging is not meant to take the place of face-to-face interactions, it does provide community case managers with an additional modality of communication with patients to offer support and important care reminders, and to facilitate patient participation in his or her care.

  6. High speed polling protocol for multiple node network with sequential flooding of a polling message and a poll-answering message

    NASA Technical Reports Server (NTRS)

    Marvit, Maclen (Inventor); Kirkham, Harold (Inventor)

    1995-01-01

    The invention is a multiple interconnected network of intelligent message-repeating remote nodes which employs a remote node polling process performed by a master node by transmitting a polling message generically addressed to all remote nodes associated with the master node. Each remote node responds upon receipt of the generically addressed polling message by sequentially flooding the network with a poll-answering informational message and with the polling message.

  7. Messages about methadone and buprenorphine in reality television: a content analysis of celebrity rehab with Dr. Drew.

    PubMed

    Roose, Robert; Fuentes, Liza; Cheema, Mandeep

    2012-08-01

    Medication-assisted treatment for opioid dependence is safe and effective, yet negative perceptions about methadone and buprenorphine may discourage patients from entering treatment. One source of information that may influence viewers' perceptions is television. We performed a content analysis of a popular reality television program on addiction treatment. Although many patients had histories of opioid use, there were no positive messages about methadone or buprenorphine. The two main messages were that they (1) are primarily drugs of abuse, and (2) not acceptable treatment options. These messages reinforce negative stereotypes and may perpetuate stigma. There were multiple missed opportunities to provide evidence-based information.

  8. New NAS Parallel Benchmarks Results

    NASA Technical Reports Server (NTRS)

    Yarrow, Maurice; Saphir, William; VanderWijngaart, Rob; Woo, Alex; Kutler, Paul (Technical Monitor)

    1997-01-01

    NPB2 (NAS (NASA Advanced Supercomputing) Parallel Benchmarks 2) is an implementation, based on Fortran and the MPI (message passing interface) message passing standard, of the original NAS Parallel Benchmark specifications. NPB2 programs are run with little or no tuning, in contrast to NPB vendor implementations, which are highly optimized for specific architectures. NPB2 results complement, rather than replace, NPB results. Because they have not been optimized by vendors, NPB2 implementations approximate the performance a typical user can expect for a portable parallel program on distributed memory parallel computers. Together these results provide an insightful comparison of the real-world performance of high-performance computers. New NPB2 features: New implementation (CG), new workstation class problem sizes, new serial sample versions, more performance statistics.

  9. Scope and effectiveness of mobile phone messaging for HIV/AIDS care: a systematic review.

    PubMed

    van Velthoven, M H M M T; Brusamento, S; Majeed, A; Car, J

    2013-01-01

    The objective of this mixed method systematic review was to assess the scope, effectiveness, acceptability and feasibility of the use of mobile phone messaging for HIV infection prevention, treatment and care. We comprehensively searched the peer-reviewed and grey literature. Two authors independently screened citations, extracted data and assessed study quality of included studies (any research design) focusing on mobile phone messaging interventions for HIV care. We present a narrative overview of the results. Twenty-one studies met the inclusion criteria: three randomized controlled trials, 11 interventional studies using other study designs and seven qualitative or cross-sectional studies. We also found six on-going trials and 21 projects. Five of the on-going trials and all the above mentioned projects took place in low or middle-income countries. Mobile phone messaging was researched for HIV prevention, appointment reminders, HIV testing reminders, medication adherence and for communication between health workers. Of the three randomized controlled trials assessing the use of short message service (SMS) to improve medication adherence, two showed positive results. Other interventional studies did not provide significant results. In conclusion, despite an extensive search we found limited evidence on the effectiveness of mobile phone messaging for HIV care. There is a need to adequately document outcomes and constraints of programs using mobile phone messaging to support HIV care to assess the impact and to focus on best practice.

  10. Hand hygiene posters: motivators or mixed messages?

    PubMed

    Jenner, E A; Jones, F; Fletcher, B C; Miller, L; Scott, G M

    2005-07-01

    Poster campaigns regarding hand hygiene are commonly used by infection control teams to improve practice, yet little is known of the extent to which they are based on established theory or research. This study reports on the content analysis of hand hygiene posters (N=69) and their messages (N=75) using message-framing theory. The results showed that posters seldom drew on knowledge about effective ways to frame messages. Frequently, they simply conveyed information 'telling' rather than 'selling' and some of this was confusing. Most posters were not designed to motivate, and some conveyed mixed messages. Few used fear appeals. Hand hygiene posters could have a greater impact if principles of message framing were utilized in their design. Suggestions for gain-framed messages are offered, but these need to be tested empirically.

  11. Preventing messaging queue deadlocks in a DMA environment

    DOEpatents

    Blocksome, Michael A; Chen, Dong; Gooding, Thomas; Heidelberger, Philip; Parker, Jeff

    2014-01-14

    Embodiments of the invention may be used to manage message queues in a parallel computing environment to prevent message queue deadlock. A direct memory access controller of a compute node may determine when a messaging queue is full. In response, the DMA may generate and interrupt. An interrupt handler may stop the DMA and swap all descriptors from the full messaging queue into a larger queue (or enlarge the original queue). The interrupt handler then restarts the DMA. Alternatively, the interrupt handler stops the DMA, allocates a memory block to hold queue data, and then moves descriptors from the full messaging queue into the allocated memory block. The interrupt handler then restarts the DMA. During a normal messaging advance cycle, a messaging manager attempts to inject the descriptors in the memory block into other messaging queues until the descriptors have all been processed.

  12. 78 FR 62657 - Proposed Information Collection; The Interagency Access Pass and Senior Pass Application Processes

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-10-22

    ... issued to U.S. citizens or permanent residents who are 62 years or older. There is a $10 fee for the... Information Collection; The Interagency Access Pass and Senior Pass Application Processes AGENCY: National... Service. The passes provide U.S. citizens and visitors an affordable and convenient way to access Federal...

  13. Form cues and content difficulty as determinants of children's cognitive processing of televised educational messages.

    PubMed

    Campbell, T A; Wright, J C; Huston, A C

    1987-06-01

    An experiment was designed to assess the effects of formal production features and content difficulty on children's processing of televised messages about nutrition. Messages with identical content (the same script and visual shot sequence) were made in two forms: child program forms (animated film, second-person address, and character voice narration with sprightly music) and adult program forms (live photography, third-person address, and adult male narration with sedate background music). For each form, messages were made at three levels of content difficulty. Easier versions were longer, more redundant, and used simpler language; difficult versions presented information more quickly with less redundancy and more abstract language. Regardless of form or difficulty level, each set of bits presented the same basic information. Kindergarten children (N = 120) were assigned to view three different bits of the same form type and difficulty embedded in a miniprogram. Visual attention to child forms was significantly greater than to adult forms; free and cued recall scores were also higher for child than for adult forms. Although all recall and recognition scores were best for easy versions and worst for difficult versions, attention showed only minor variation as a function of content difficulty. Results are interpreted to indicate that formal production features, independently of content, influence the effort and level of processing that children use to understand televised educational messages.

  14. 45 CFR 303.52 - Pass-through of incentives to political subdivisions.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 45 Public Welfare 2 2010-10-01 2010-10-01 false Pass-through of incentives to political subdivisions. 303.52 Section 303.52 Public Welfare Regulations Relating to Public Welfare OFFICE OF CHILD SUPPORT ENFORCEMENT (CHILD SUPPORT ENFORCEMENT PROGRAM), ADMINISTRATION FOR CHILDREN AND FAMILIES...

  15. The importance of HIV prevention messaging for orphaned youth in Zimbabwe.

    PubMed

    Haney, Erica; Singh, Kavita

    2012-01-01

    The AIDS epidemic has contributed to a drastic increase in the number of orphans in Zimbabwe. Female adolescent orphans are particularly in jeopardy of contracting HIV due to disadvantages including extreme poverty, low education, and the absent of parental oversight which can lead to higher risk-taking sexual behaviors. By understanding where girls receive education about HIV and who they rely on for information, organizations can effectively modify existing programs to better target this at-risk population. For this study a household survey was conducted which included 216 orphans and 324 non-orphans (n=540), aged 12-17 years, in the resource-poor setting of Hwange District, Zimbabwe. The aims of this article were to examine the differences between orphans and non-orphans in HIV prevention message exposure, level of motivation for learning about HIV, and communication with caregivers about safe sex. The household survey revealed that younger orphans, aged 12-15 years, were more motivated to learn about HIV and had greater HIV messaging exposure in school than non-orphans. These exposure and differences in the levels of motivation between groups dissipated at older ages. Our research also discovered less caregiver communication among orphans than non-orphans. Our findings suggest that HIV programs targeting orphans need to do a better job at keeping older orphans interested in HIV prevention at a time when it matters most. Furthermore, intervention strategies that provide caregiver support are instrumental in effectively delivering prevention messages to girls at home.

  16. Analyzing the Structure and Content of Public Health Messages

    PubMed Central

    Morrison, Frances P.; Kukafka, Rita; Johnson, Stephen B.

    2005-01-01

    Background Health messages are crucial to the field of public health in effecting behavior change, but little research is available to assist writers in composing the overall structure of a message. In order to develop software to assist individuals in constructing effective messages, the structure of existing health messages must be understood, and an appropriate method for analyzing health message structure developed. Methods 72 messages from expert sources were used for development of the method, which was then tested for reproducibility using ten randomly selected health messages. Four raters analyzed the messages and inter-coder agreement was calculated. Results A method for analyzing the structure of the messages was developed using sublanguage analysis and discourse analysis. Overall kappa between four coders was 0.69. Conclusion A novel framework for characterizing health message structure and a method for analyzing messages appears to be reproducible and potentially useful for creating an authoring tool. PMID:16779098

  17. Evidence-Based Support for the Characteristics of Tsunami Warning Messages for Local, Regional and Distant Sources

    NASA Astrophysics Data System (ADS)

    Gregg, C. E.; Johnston, D. M.; Sorensen, J. H.; Vogt Sorensen, B.; Whitmore, P.

    2014-12-01

    Many studies since 2004 have documented the dissemination and receipt of risk information for local to distant tsunamis and factors influencing people's responses. A few earlier tsunami studies and numerous studies of other hazards provide additional support for developing effective tsunami messages. This study explores evidence-based approaches to developing such messages for the Pacific and National Tsunami Warning Centers in the US. It extends a message metric developed for the NWS Tsunami Program. People at risk to tsunamis receive information from multiple sources through multiple channels. Sources are official and informal and environmental and social cues. Traditionally, official tsunami messages followed a linear dissemination path through relatively few channels from warning center to emergency management to public and media. However, the digital age has brought about a fundamental change in the dissemination and receipt of official and informal communications. Information is now disseminated in very non-linear paths and all end-user groups may receive the same message simultaneously. Research has demonstrated a range of factors that influence rapid respond to an initial real or perceived threat. Immediate response is less common than one involving delayed protective actions where people first engage in "milling behavior" to exchange information and confirm the warning before taking protective action. The most important message factors to achieve rapid response focus on the content and style of the message and the frequency of dissemination. Previously we developed a tsunami message metric consisting of 21 factors divided into message content and style and receiver characteristics. Initially, each factor was equally weighted to identify gaps, but here we extend the work by weighting specific factors. This utilizes recent research that identifies the most important determinants of protective action. We then discuss the prioritization of message information

  18. Use of a text message program to raise type 2 diabetes risk awareness and promote health behavior change (part II): assessment of participants' perceptions on efficacy.

    PubMed

    Buis, Lorraine R; Hirzel, Lindsey; Turske, Scott A; Des Jardins, Terrisca R; Yarandi, Hossein; Bondurant, Patricia

    2013-12-19

    Although there is great enthusiasm in both the public and private sector for the further development and use of large-scale consumer-facing public health applications for mobile platforms, little is known about user experience and satisfaction with this type of approach. As a part of the Beacon Community Cooperative Agreement Program, txt4health, a public-facing, mobile phone-based health information service targeting type 2 diabetes, was launched in 3 Beacon Communities: the Southeast Michigan Beacon Community in Detroit, MI, the Greater Cincinnati Beacon Community in Cincinnati, OH, and the Crescent City Beacon Community in New Orleans, LA. This program was marketed via large public health campaigns and drew many users within the respective communities. The purpose of this investigation was to use the RE-AIM framework to document txt4health efficacy by focusing on perceptions of satisfaction, usage, and behavior change among individuals who used txt4health in pilot studies in Southeast Michigan and Greater Cincinnati. We conducted a multimodal user survey with txt4health users recruited via text message through the program to understand participant perceptions of program use and satisfaction, as well as self-reported perceptions of behavior change as a result of using txt4health. Txt4health users reported very high levels of program satisfaction, with 67.1% (108/161) reporting satisfaction scores of ≥8 on a 10-point scale, with 10 equivalent to most satisfied (mean 8.2, SD 1.6). All survey participants agreed/strongly agreed that the messages included in txt4health were clear and easy to understand (100.0%, 160/160), and most found txt4health made them knowledgeable about their risk for type 2 diabetes (88.1%, 140/159) and made them conscious of their diet and physical activity (88.8%, 142/160). Most participants reported that txt4health helped them to make behavior changes related to diet; after having completed txt4health, most agreed/strongly agreed that

  19. Use of a Text Message Program to Raise Type 2 Diabetes Risk Awareness and Promote Health Behavior Change (Part II): Assessment of Participants' Perceptions on Efficacy

    PubMed Central

    Hirzel, Lindsey; Turske, Scott A; Des Jardins, Terrisca R; Yarandi, Hossein; Bondurant, Patricia

    2013-01-01

    Background Although there is great enthusiasm in both the public and private sector for the further development and use of large-scale consumer-facing public health applications for mobile platforms, little is known about user experience and satisfaction with this type of approach. As a part of the Beacon Community Cooperative Agreement Program, txt4health, a public-facing, mobile phone-based health information service targeting type 2 diabetes, was launched in 3 Beacon Communities: the Southeast Michigan Beacon Community in Detroit, MI, the Greater Cincinnati Beacon Community in Cincinnati, OH, and the Crescent City Beacon Community in New Orleans, LA. This program was marketed via large public health campaigns and drew many users within the respective communities. Objective The purpose of this investigation was to use the RE-AIM framework to document txt4health efficacy by focusing on perceptions of satisfaction, usage, and behavior change among individuals who used txt4health in pilot studies in Southeast Michigan and Greater Cincinnati. Methods We conducted a multimodal user survey with txt4health users recruited via text message through the program to understand participant perceptions of program use and satisfaction, as well as self-reported perceptions of behavior change as a result of using txt4health. Results Txt4health users reported very high levels of program satisfaction, with 67.1% (108/161) reporting satisfaction scores of ≥8 on a 10-point scale, with 10 equivalent to most satisfied (mean 8.2, SD 1.6). All survey participants agreed/strongly agreed that the messages included in txt4health were clear and easy to understand (100.0%, 160/160), and most found txt4health made them knowledgeable about their risk for type 2 diabetes (88.1%, 140/159) and made them conscious of their diet and physical activity (88.8%, 142/160). Most participants reported that txt4health helped them to make behavior changes related to diet; after having completed txt4health

  20. Text Messaging: An Intervention to Increase Physical Activity among African American Participants in a Faith-Based, Competitive Weight Loss Program.

    PubMed

    McCoy, Pamela; Leggett, Sophia; Bhuiyan, Azad; Brown, David; Frye, Patricia; Williams, Bryman

    2017-03-29

    African American adults are less likely to meet the recommended physical activity guidelines for aerobic and muscle-strengthening activity than Caucasian adults. The purpose of this study was to assess whether a text message intervention would increase physical activity in this population. This pilot study used a pre-/post-questionnaire non-randomized design. Participants in a faith-based weight loss competition who agreed to participate in the text messaging were assigned to the intervention group ( n = 52). Participants who declined to participate in the intervention, but agreed to participate in the study, were assigned to the control group ( n = 30). The text messages provided strategies for increasing physical activity and were based on constructs of the Health Belief Model and the Information-Motivation-Behavioral Skills Model. Chi square tests determined the intervention group participants increased exercise time by approximately eight percent ( p = 0.03), while the control group's exercise time remained constant. The intervention group increased walking and running. The control group increased running. Most participants indicated that the health text messages were effective. The results of this pilot study suggest that text messaging may be an effective method for providing options for motivating individuals to increase physical activity.

  1. Emerging adults' perceptions of messages about physical appearance.

    PubMed

    Gillen, Meghan M; Lefkowitz, Eva S

    2009-06-01

    Emerging adults receive messages about physical appearance from a range of sources, but few studies have examined the content of these messages. Undergraduates (N=154) who identified as African American, Latino American, and European American answered 4 open-ended questions about messages they perceived about physical appearance from family, peers, school, and media. Raters coded responses for content and affect. The most common messages perceived were the importance/non-importance of appearance, positive comments about appearance, and the link between attractiveness and success. The perception of these messages frequently differed by gender and source, but rarely by ethnicity. Women perceived more frequent and more negative messages than did men. Individuals perceived the media as transmitting more negative messages and the family more healthful and positive ones.

  2. Effects of subliminal backward-recorded messages on attitudes.

    PubMed

    Swart, L C; Morgan, C L

    1992-12-01

    This study was designed to measure the effects of subliminal backward messages on attitudes. It was hypothesized that subliminal backward-recorded messages would influence the attitudes of listeners. Three subliminal backward-recorded messages from a popular song were used. 82 undergraduates were randomly assigned to one of four conditions: a three-message group heard a tape containing the backward messages recorded three times in succession, a six-message group heard a tape with the same backward messages recorded six times in succession, two control groups heard nonbackward recorded music. No statistically significant differences were found between the groups on a posttape attitude questionnaire. The results are discussed in terms of unconscious processing and the tricomponent theory of attitudes and attitude change.

  3. Association between EMS Question Bank Completion and Passing Rates on the EMS Certification Examination.

    PubMed

    Clemency, Brian; Martin-Gill, Christian; Rall, Nicole; May, Paul; Lubin, Jeffrey; Cooley, Craig; Van Dillen, Christine; Silvestri, Salvatore; Portela, Roberto; Cooney, Derek; Knutsen, Christian; March, Juan

    2017-01-01

    A board review question bank was created to assist candidates in their preparation for the 2015 EMS certification examination. We aimed to describe the development of this question bank and evaluate its successes in preparing candidates to obtain EMS subspecialty board certification. An online question bank was developed by 13 subject matter experts who participated as item writers, representing eight different EMS fellowship programs. The online question bank consisted of four practice tests, with each of the tests comprised of 100 questions. The number of candidates who participated in and completed the question bank was calculated. The passing rate among candidates who completed the question bank was calculated and compared to the publicly reported statistics for all candidates. The relationship between candidates' performance on the question bank and subspecialty exam pass rates was determined. A total of 252 candidates took at least one practice test and, of those, 225 candidates completed all four 100-question practice tests. The pass rate on the 2015 EMS certification exam was 79% (95%CI 74-85%) among candidates who completed the question bank, which is 12% higher than the overall pass rate (p = 0.003). Candidates' performance on the question bank was positively associated with overall success on the exam (X 2 = 75.8, p < 0.0001). Achieving a score of ≥ 70% on the question bank was associated with a higher likelihood of passing the exam (OR = 17.8; 95% CI: 8.0-39.6). Completing the question bank program was associated with improved pass rates on the EMS certification exam. Strong performance on the question bank correlated with success on the exam.

  4. A no-key-exchange secure image sharing scheme based on Shamir's three-pass cryptography protocol and the multiple-parameter fractional Fourier transform.

    PubMed

    Lang, Jun

    2012-01-30

    In this paper, we propose a novel secure image sharing scheme based on Shamir's three-pass protocol and the multiple-parameter fractional Fourier transform (MPFRFT), which can safely exchange information with no advance distribution of either secret keys or public keys between users. The image is encrypted directly by the MPFRFT spectrum without the use of phase keys, and information can be shared by transmitting the encrypted image (or message) three times between users. Numerical simulation results are given to verify the performance of the proposed algorithm.

  5. Care by cell phone: text messaging for chronic disease management.

    PubMed

    Fischer, Henry H; Moore, Susan L; Ginosar, David; Davidson, Arthur J; Rice-Peterson, Cecilia M; Durfee, Michael J; MacKenzie, Thomas D; Estacio, Raymond O; Steele, Andrew W

    2012-02-01

    To assess the feasibility of engaging adults with diabetes in self management behaviors between clinic visits by using cell phone text messaging to provide blood sugar measurement prompts and appointment reminders. Quasi-experimental pilot among adult diabetic patients with cell phones who receive regular care at a federally qualified community health center in Denver, Colorado, which serves a population that is predominantly either uninsured (41%) or on Medicaid or Medicare (56%). Patients (N = 47) received text message prompts over a 3-month period. Blood sugar readings were requested 3 times per week (Monday, Wednesday, and Friday). Reminders were sent 7, 3, and 1 day(s) before each scheduled appointment. Acknowledgments were returned for all patient-sent messages. Focus groups were conducted in English and Spanish with selected patients (n = 8). Patients of all ages were active participants. Correctly formatted responses were received for 67.3% of 1585 prompts. More than three-fourths (79%) of the cohort responded to more than 50% of their prompts. The appointment analysis was underpowered to detect significant changes in attendance. Participants reported increased social support, feelings that the program "made them accountable," and increased awareness of health information. Two-thirds (66%) of patients provided glucose readings when prompted during the study, compared with 12% at 2 preceding clinic visits. For certain patients, cell phone-based text messaging may enhance chronic disease management support and patient-provider communications beyond the clinic setting.

  6. Getting the Message? Native Reactive Electrophiles Pass Two Out of Three Thresholds to be Bona Fide Signaling Mediators.

    PubMed

    Poganik, Jesse R; Long, Marcus J C; Aye, Yimon

    2018-05-01

    Precision cell signaling activities of reactive electrophilic species (RES) are arguably among the most poorly-understood means to transmit biological messages. Latest research implicates native RES to be a chemically-distinct subset of endogenous redox signals that influence cell decision making through non-enzyme-assisted modifications of specific proteins. Yet, fundamental questions remain regarding the role of RES as bona fide second messengers. Here, we lay out three sets of criteria we feel need to be met for RES to be considered as true cellular signals that directly mediate information transfer by modifying "first-responding" sensor proteins. We critically assess the available evidence and define the extent to which each criterion has been fulfilled. Finally, we offer some ideas on the future trajectories of the electrophile signaling field taking inspiration from work that has been done to understand canonical signaling mediators. Also see the video abstract here: https://youtu.be/rG7o0clVP0c. © 2018 WILEY Periodicals, Inc.

  7. Development and Initial Testing of Messages to Encourage Tuberculosis Testing and Treatment Among Bacille Calmette-Guerin (BCG) Vaccinated Persons

    PubMed Central

    Galindo-Gonzalez, Sebastian; Irani, Tracy A.

    2017-01-01

    Misperceptions surrounding the Bacille Calmette-Guerin (BCG) vaccine can lead some vaccinated individuals to resist being tested and treated for tuberculosis (TB). Educational messages to best explain the risk of TB to BCG-vaccinated, Hispanic persons were systematically developed and tested. First, TB program staff provided messages they considered effective. These were analyzed and validated by TB experts, and then presented in group interviews initially to foreign-born Hispanic persons with a TB diagnosis, and then persons without a prior TB diagnosis. Based on interviewees’ feedback, preferred statements were used to develop one long and three short comprehensive messages. One-on-one interviews were conducted with Hispanic persons to assess the saliency of the comprehensive educational messages. Participants preferred messages that were gain or positively-framed and explained that BCG does not confer lifelong protection against TB. Participants confirmed the messages would likely have a positive impact on patient decisions to undergo TB testing and treatment. PMID:24141428

  8. The efficacy of mobile phone-based text message interventions ('Happy Quit') for smoking cessation in China.

    PubMed

    Liao, Yanhui; Wu, Qiuxia; Tang, Jinsong; Zhang, Fengyu; Wang, Xuyi; Qi, Chang; He, Haoyu; Long, Jiang; Kelly, Brian C; Cohen, Joanna

    2016-08-19

    Considering the extreme shortage of smoking cessation services in China, and the acceptability, feasibility and efficacy of mobile phone-based text message interventions for quitting smoking in other countries, here we propose a study of "the efficacy of mobile phone-based text message interventions ('Happy Quit') for smoking cessation in China". The primary objective of this proposed project is to assess whether a program of widely accessed mobile phone-based text message interventions ('Happy Quit') will be effective at helping people in China who smoke, to quit. Based on the efficacy of previous studies in smoking cessation, we hypothesize that 'Happy Quit' will be an effective, feasible and affordable smoking cessation program in China. In this single-blind, randomized trial, undertaken in China, about 2000 smokers willing to make a quit attempt will be randomly allocated, using an independent telephone randomization system that includes a minimization algorithm balancing for sex (male, female), age (19-34 or >34 years), educational level (≤ or >12 years), and Fagerstrom score for nicotine addiction (≤5, >5), to 'Happy Quit', comprising motivational messages and behavioral-change support, or to a control group that receives text messages unrelated to quitting. Messages will be developed to be suitable for Chinese. A pilot study will be conducted before the intervention to modify the library of messages and interventions. The primary outcome will be self-reported continuous smoking abstinence. A secondary outcome will be point prevalence of abstinence. Abstinence will be assessed at six time points (4, 8, 12, 16, 20 and 24 weeks post-intervention). A third outcome will be reductions in number of cigarettes smoked per day. The results will provide valuable insights into bridging the gap between need and services received for smoking cessation interventions and tobacco use prevention in China. It will also serve as mHealth model for extending the public

  9. The influence of message framing, intention to quit smoking, and nicotine dependence on the persuasiveness of smoking cessation messages.

    PubMed

    Moorman, Marjolein; van den Putte, Bas

    2008-10-01

    This study explores the combined effect of message framing, intention to quit smoking, and nicotine dependence on the persuasiveness of smoking cessation messages. Pre- and post-message measures of quit intention, attitude toward smoking cessation, and perceived behavioral control were taken in two separate waves from current cigarette smokers with varying levels of nicotine dependence (N=151). In the second wave, participants were randomly assigned to one of two groups. In the first group, participants read a smoking cessation message which emphasized the benefits of quitting (positive frame). In the second group participants read a message which emphasized the costs of not quitting (negative frame). Results show that smokers' intentions to quit smoking and their level of nicotine dependence jointly influence the persuasiveness of positive and negative message frames. When nicotine dependence and quitting intention are both high, a negative frame works best. Conversely, a positive frame is preferable when nicotine dependence or quitting intention is low. Smokers' level of processing is proposed as the underlying mechanism explaining the different effects of message frames.

  10. Why are you bringing up condoms now? The effect of message content on framing effects of condom use messages.

    PubMed

    Kiene, Susan M; Barta, William D; Zelenski, John M; Cothran, Dee Lisa

    2005-05-01

    According to prospect theory (A. Tversky & D. Kahneman, 1981), messages advocating a low-risk (i.e., easy, low-cost) behavior are most effective if they stress the benefits of adherence (gain framed), whereas messages advocating a risky behavior are most effective if they stress the costs of nonadherence (loss framed). Although condom use is viewed as a low-risk behavior, it may entail risky interpersonal negotiations. Study 1 (N = 167) compared ratings of condom use messages advocating relational behaviors (e.g., discussing condoms) or health behaviors (e.g., carrying condoms). As predicted, loss-framed relational messages and gain-framed health messages received higher evaluations. Study 2 (N = 225) offers a replication and evidence of issue involvement and gender as moderators. Results are discussed with reference to the design of condom use messages. ((c) 2005 APA, all rights reserved).

  11. A one-way text messaging intervention for obesity.

    PubMed

    Ahn, Ahleum; Choi, Jaekyung

    2016-04-01

    Worldwide, there has been a startling increase in the number of people who are obese or overweight. Obesity increases the risk of cardiovascular disease and overall mortality. Mobile phone messaging is an important means of human communication globally. Because the mobile phone can be used anywhere at any time, mobile phone messaging has the potential to manage obesity. We investigated the effectiveness of a one-way text messaging intervention for obesity. Participants' body mass index and waist circumference were measured at the beginning of the programme and again after 12 weeks. The text message group received text messages about exercise, dietary intake, and general information about obesity three times a week, while the control group did not receive any text messages from the study. Of the 80 participants, 25 subjects in the text message group and 29 participants in the control group completed the study. After adjusting for baseline body mass index, the body mass index was significantly lower in the text message group than in the control group (27.9 vs. 28.3; p = 0.02). After adjusting for the baseline waist circumference, the difference of waist circumference between the text message group and control group was not significant (93.4 vs. 94.6; p = 0.13). The one-way text messaging intervention was a simple and effective way to manage obesity. The one-way text messaging intervention may be a useful method for lifestyle modification in obese subjects. © The Author(s) 2015.

  12. Persuasive messages. Development of persuasive messages may help increase mothers' compliance of their children's immunization schedule.

    PubMed

    Gore, P; Madhavan, S; Curry, D; McClurg, G; Castiglia, M; Rosenbluth, S A; Smego, R A

    1998-01-01

    Effective immunization campaigns can be designed by determining which persuasion strategy is most effective in attracting the attention of mothers of preschoolers. The authors assess the impact of three persuasional strategies: fear-arousal, motherhood-arousal, and rational messages, on mothers of preschoolers who are late for their immunizations. The fear-arousal message was found to be most effective, followed by the motherhood-arousal, and then the rational message, in attracting mothers' attention to their child's immunization status.

  13. Empowerment in the process of health messaging for rural low-income mothers: an exploratory message design project.

    PubMed

    Aldoory, Linda; Braun, Bonnie; Maring, Elisabeth Fost; Duggal, Mili; Briones, Rowena Lynn

    2015-01-01

    Rural, low-income mothers face challenges to their health equal to or greater than those of low-income mothers from urban areas. This study put health message design into the hands of low-income rural mothers. The current study filled a research gap by analyzing a participatory process used to design health messages tailored to the everyday lives of rural low-income mothers. A total of forty-three mothers participated in nine focus groups, which were held from 2012 to 2013, in eight states. The mothers were from different racial and ethnic backgrounds. Participants discussed food security, physical activity, and oral health information. They created messages by considering several elements: visuals, length of message, voice/perspective, self-efficacy and personal control, emotional appeals, positive and negative reinforcements, and steps to health behavior change. This study was innovative in its focus on empowerment as a key process to health message design.

  14. Verbal messages strengthen bench press efficacy.

    PubMed

    Wise, James B; Posner, Amy E; Walker, Gretchen L

    2004-02-01

    This study examined the effects of verbal messages on bench press efficacy: the confidence to lift progressively heavier weights for 1 repetition. Thirty-two women who had not bench pressed within the previous 18 months were assigned to 1 of 2 groups and exposed to 2 sources of efficacy information. First, subjects in both groups performed 10 repetitions on a fixed movement, vertical bench press machine and completed the bench press efficacy scale. Next, each group received 1 of 2 possible verbal messages. Both messages included the speaker's strength training qualifications. In addition, one message conveyed specific performance feedback while the other contained more general information. Then efficacy was measured again. Results indicated both messages strengthened efficacy. Strength professionals who work one-on-one with novice women should: (a) make sure lifters are aware of their professional qualifications, (b) provide specific feedback, and (c) profess their beliefs in the lifters' abilities to perform the exercises.

  15. ER@CEBAF: A test of 5-pass energy recovery at CEBAF

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Bogacz, S. A.; Douglas, D.; Dubbe, C.

    2016-06-06

    Jefferson Lab personnel have broad expertise in the design, commissioning, and operation of multiple energy recovery linacs (ERLs): the CEBAF Front-End Test (early 1990s), CEBAF-ER (2003), the IR Free Electron Laser (FEL) Demo, the IR FEL Upgrade, and the UV FEL Driver (1997-2014). Continued development of this core competency has led to this collaborative proposal to explore the forefronts of ERL technology at high energy in a unique expansion of CEBAF capability to a 5-pass ERL with negligible switchover time and programmatic impact to the CEBAF physics program. Such a capability would enable world-class studies of open issues in high-energymore » ERL beam dynamics that are relevant to future facilities such as electron-ion colliders (EICs). This proposal requests support from the CEBAF Program Advisory Committee to seek funding for hardware installation, and a prospective 12 days of beam time circa Fall 2018 for commissioning this high-energy multi-pass ERL experiment in CEBAF.« less

  16. Messages discriminated from the media about illicit drugs.

    PubMed

    Patterson, S J

    1994-01-01

    The electronic media have been an instrumental tool in the most recent efforts to address the issue of illicit drug abuse in the United States. Messages about illicit drugs appear in three places in the media: advertising content, news content, and entertainment content. Many studies have documented the amount and types of messages that appear on the electronic media, but few have asked the audience how they interpret these messages. The purpose of this study is to investigate how much and what type of information college students receive from the media about drugs. Interviews were conducted with 228 students using the message discrimination protocol. The messages were then content analyzed into theme areas. Results indicate the majority of messages discriminated from advertising content were fear appeals; that the majority of messages discriminated from news content documented the enforcement efforts in the war on drugs; and that messages about drugs in entertainment content were more likely to provide clear accurate information about drugs than the other two content sources. The results are discussed in terms of the audience receiving fear and fight messages from the electronic media rather than clear, accurate information necessary to make informed decisions about drugs.

  17. Does perceived risk influence the effects of message framing? Revisiting the link between prospect theory and message framing.

    PubMed

    Van 't Riet, Jonathan; Cox, Anthony D; Cox, Dena; Zimet, Gregory D; De Bruijn, Gert-Jan; Van den Putte, Bas; De Vries, Hein; Werrij, Marieke Q; Ruiter, Robert A C

    2016-12-01

    Health-promoting messages can be framed in terms of the beneficial consequences of healthy behaviour (gain-framed messages) or the detrimental consequences of unhealthy behaviour (loss-framed messages). An influential notion holds that the perceived risk associated with the recommended behaviour determines the relative persuasiveness of gain- and loss-framed messages. This 'risk-framing hypothesis', which was derived from prospect theory, has been central to health message-framing research for the better part of two decades and has enduring appeal to researchers and practitioners. It has found its way into several health communication handbooks and is communicated to the general public. The present article examines the validity of the risk-framing hypothesis anew by providing a review of the health message-framing literature. In spite of its ongoing appeal, we conclude that the hypothesis has severe theoretical flaws. In addition, we find that the empirical evidence in favour of the hypothesis is weak and inconsistent. It seems that, in applying prospect theory's tenets to a health-promotion context, some of the theory's key aspects have been lost in translation. At the close of the article, we offer a research agenda for the future, arguing that, above all, new methodology is needed to bring the message-framing literature further.

  18. Factors influencing message dissemination through social media

    NASA Astrophysics Data System (ADS)

    Zheng, Zeyu; Yang, Huancheng; Fu, Yang; Fu, Dianzheng; Podobnik, Boris; Stanley, H. Eugene

    2018-06-01

    Online social networks strongly impact our daily lives. An internet user (a "Netizen") wants messages to be efficiently disseminated. The susceptible-infected-recovered (SIR) dissemination model is the traditional tool for exploring the spreading mechanism of information diffusion. We here test our SIR-based dissemination model on open and real-world data collected from Twitter. We locate and identify phase transitions in the message dissemination process. We find that message content is a stronger factor than the popularity of the sender. We also find that the probability that a message will be forwarded has a threshold that affects its ability to spread, and when the probability is above the threshold the message quickly achieves mass dissemination.

  19. The WLCG Messaging Service and its Future

    NASA Astrophysics Data System (ADS)

    Cons, Lionel; Paladin, Massimo

    2012-12-01

    Enterprise messaging is seen as an attractive mechanism to simplify and extend several portions of the Grid middleware, from low level monitoring to experiments dashboards. The production messaging service currently used by WLCG includes four tightly coupled brokers operated by EGI (running Apache ActiveMQ and designed to host the Grid operational tools such as SAM) as well as two dedicated services for ATLAS-DDM and experiments dashboards (currently also running Apache ActiveMQ). In the future, this service is expected to grow in numbers of applications supported, brokers and technologies. The WLCG Messaging Roadmap identified three areas with room for improvement (security, scalability and availability/reliability) as well as ten practical recommendations to address them. This paper describes a messaging service architecture that is in line with these recommendations as well as a software architecture based on reusable components that ease interactions with the messaging service. These two architectures will support the growth of the WLCG messaging service.

  20. Message Variability and Heterogeneity: A Core Challenge for Communication Research

    PubMed Central

    Slater, Michael D.; Peter, Jochen; Valkenberg, Patti

    2015-01-01

    Messages are central to human social experience, and pose key conceptual and methodological challenges in the study of communication. In response to these challenges, we outline a systematic approach to conceptualizing, operationalizing, and analyzing messages. At the conceptual level, we distinguish between two core aspects of messages: message variability (the defined and operationalized features of messages) and message heterogeneity (the undefined and unmeasured features of messages), and suggest preferred approaches to defining message variables. At the operational level, we identify message sampling, selection, and research design strategies responsive to issues of message variability and heterogeneity in experimental and survey research. At the analytical level, we highlight effective techniques to deal with message variability and heterogeneity. We conclude with seven recommendations to increase rigor in the study of communication through appropriately addressing the challenges presented by messages. PMID:26681816

  1. A sex risk reduction text-message program for young adult females discharged from the emergency department.

    PubMed

    Suffoletto, Brian; Akers, Aletha; McGinnis, Kathleen A; Calabria, Jaclyn; Wiesenfeld, Harold C; Clark, Duncan B

    2013-09-01

    To pilot test a text message (SMS) sex risk reduction program among at-risk young adult female patients discharged from an emergency department (ED). A convenience sample of 52 female patients with hazardous drinking behavior and recent risky sexual encounters were recruited from an urban ED and randomized to the SMS program (n = 23) or a control group (n = 29). All participants completed a web-based questionnaire in the ED and at 3-month follow-up. For 12 weeks, SMS participants were asked to report whether they had a risky sexual encounter in the past week, received theory-based feedback, and were asked if they were willing set a goal to refrain from having another risky encounter. Thirty-nine percent of SMS participants completed all weeks of SMS reports, and noncompletion increasing from 12% on week 1 to a 33% by week 12. Three-month follow-up was completed in 56% of participants. In the intervention group, there was an increase in the proportion with condom use with last vaginal sex from 20% (95% CI 4%-48%) to 53% (95% CI 27%-79%) and an increase in always condom use over the past 28 days from 0% (95% CI 0%-22%) to 33% (95% CI 12%-62%). These changes were not statistically different from control participants. SMS programs may be useful to reduce risk for sexually transmitted diseases among at-risk young adults being discharged from the ED. Future trials should examine ways to improve adherence to SMS dialog over time and measure objective outcomes in a larger sample. Copyright © 2013 Society for Adolescent Health and Medicine. Published by Elsevier Inc. All rights reserved.

  2. Text Messaging: An Intervention to Increase Physical Activity among African American Participants in a Faith-Based, Competitive Weight Loss Program

    PubMed Central

    McCoy, Pamela; Leggett, Sophia; Bhuiyan, Azad; Brown, David; Frye, Patricia; Williams, Bryman

    2017-01-01

    African American adults are less likely to meet the recommended physical activity guidelines for aerobic and muscle-strengthening activity than Caucasian adults. The purpose of this study was to assess whether a text message intervention would increase physical activity in this population. This pilot study used a pre-/post-questionnaire non-randomized design. Participants in a faith-based weight loss competition who agreed to participate in the text messaging were assigned to the intervention group (n = 52). Participants who declined to participate in the intervention, but agreed to participate in the study, were assigned to the control group (n = 30). The text messages provided strategies for increasing physical activity and were based on constructs of the Health Belief Model and the Information-Motivation-Behavioral Skills Model. Chi square tests determined the intervention group participants increased exercise time by approximately eight percent (p = 0.03), while the control group’s exercise time remained constant. The intervention group increased walking and running. The control group increased running. Most participants indicated that the health text messages were effective. The results of this pilot study suggest that text messaging may be an effective method for providing options for motivating individuals to increase physical activity. PMID:28353650

  3. Effect of Reinforcement of Oral Health Education Message through Short Messaging Service in Mobile Phones: A Quasi-Experimental Trial

    PubMed Central

    Jadhav, Harish C.; Dodamani, Arun S.; Karibasappa, G. N.; Naik, Rahul G.; Khairnar, Mahesh R.; Deshmukh, Manjiri A.; Vishwakarma, Prashanth

    2016-01-01

    Objective. This paper aims to assess the effectiveness of reinforcement of oral health education message through short messaging service (SMS) in mobile phones. Material and Methods. 400 subjects from two colleges (200 from each college) belonging to 18–20 years age group possessing mobile phones were randomly selected and baseline examination of oral hygiene and gingival status was carried out using Oral Hygiene Index (OHI) and Gingival Index (GI). Oral health education was provided to all the subjects. Oral health education message was reinforced through short messaging service (SMS) in mobile phones for the subjects belonging to the intervention group. There was no such reinforcement for the control group. Follow-up examinations were done at the end of 1st, 2nd, 3rd, and 6th month. After the 3rd month, subjects of the intervention group did not receive oral health education message through short messaging service (SMS) and were followed up after next three months. Compiled data was analyzed using SPSS version 16 statistical software. Result. Mean OHI and GI scores in intervention group were significantly (p < 0.01) less than those of control group after the 2nd, 3rd, and 6th month. Conclusion. Reinforcement of oral health education message through short messaging service (SMS) is effective media to improve oral health. PMID:26941793

  4. Cost-effectiveness of television, radio, and print media programs for public mental health education.

    PubMed

    Austin, L S; Husted, K

    1998-06-01

    Mass media campaigns to influence public attitudes and behaviors in the area of mental health must consider cost-effectiveness, which is based on actual costs, the number of people reached (exposures), and the impact of the program on the individual. Cost per exposure is a critical factor. The authors review their experience in developing media programs in several broadcast formats and in print. Their experience suggests that an effective television production has a very high per-exposure cost and that radio is a more cost-effective way to present health messages. Radio programs also have the advantage of reaching people in their homes or cars or at work. Brief segments may be particularly cost-effective because they can be can be inserted between programs during prime-time hours. Print media--newspapers, magazines, and newsletters--can be cost-effective if magazine or newspaper space is free, but newsletters can be costly due to fixed postage costs. One advantage of print is that it can be reread, clipped out, copied, and passed on.

  5. Melodrama with a message.

    PubMed

    Felsenthal, M

    1987-01-01

    Recognizing the communication potential of commercial cinema, John and Louise Riber make entertaining films with development messages for audiences in less-developed countries. Their form of social marketing stresses the use of locally-recognized popular styles and actors to convey development messages in a cinema format. The Ribers have produced films in Bangladesh promoting literacy and the use of birth control, and are presently working on a film in Zimbabwe addressing teen pregnancy.

  6. Message frames interact with motivational systems to determine depth of message processing.

    PubMed

    Shen, Lijiang; Dillard, James Price

    2009-09-01

    Although several theoretical perspectives predict that negatively framed messages will be processed more deeply than positively framed messages, a recent meta-analysis found no such difference. In this article, the authors explore 2 explanations for this inconsistency. One possibility is methodological: the statistics used in the primary studies underestimated framing effects on depth of message processing because the data were maldistributed. The other is theoretical: the absence of a main effect is veridical, but framing interacts with individual differences that predispose individuals to greater or lesser depth of processing. Data from 2 experiments (Ns = 286 and 252) were analyzed via tobit regression, a technique designed to overcome the limitations of maldistributed data. One study showed the predicted main effect for framing, but the other did not. Both studies showed the anticipated interaction: Depth of processing correlated positively with a measure of the behavioral activation system in the advantage framing condition, whereas depth of processing correlated positively with the behavioral inhibition system in the disadvantage framing condition.

  7. Robust Routing Protocol For Digital Messages

    NASA Technical Reports Server (NTRS)

    Marvit, Maclen

    1994-01-01

    Refinement of ditigal-message-routing protocol increases fault tolerance of polled networks. AbNET-3 is latest of generic AbNET protocols for transmission of messages among computing nodes. AbNET concept described in "Multiple-Ring Digital Communication Network" (NPO-18133). Specifically aimed at increasing fault tolerance of network in broadcast mode, in which one node broadcasts message to and receives responses from all other nodes. Communication in network of computers maintained even when links fail.

  8. "We Were Told We're Not Teachers... It Gets Difficult to Draw the Line": Negotiating Roles in Peer-Assisted Study Sessions (PASS)

    ERIC Educational Resources Information Center

    Brown, Kim; Nairn, Karen; van der Meer, Jacques; Scott, Carole

    2014-01-01

    Peer learning models in pre-service teacher education are in the early stages of implementation. In this article, we evaluated a pilot Peer-Assisted Study Sessions (PASS) program that supplemented a course for pre-service teachers at one New Zealand university. PASS participants discussed experiences of the program, revealing tensions between what…

  9. A snapshot of tobacco-related messages relayed in pediatric offices in Delaware.

    PubMed

    Feinson, Judith; Raughley, Erin; Chang, Christine D; Chidekel, Aaron

    2003-10-01

    Much research exists demonstrating that pediatricians should counsel patients and families about tobacco. However, few data are available about tobacco-related messages relayed in pediatric offices. Since an anti-tobacco office environment can be a strong component of an active tobacco prevention program, we evaluated pediatric offices in Delaware to characterize tobacco-related messages. A convenience sample of 32 of 63 (51%) pediatric offices in Delaware was directly evaluated for the presence of tobacco-related messages. Fifty-five of 63 (87%) pediatric practices in Delaware were contacted by telephone to inquire about the presence of a tobacco coordinator. The 32 practices represented 71 physicians, were located in all three counties throughout the state, and were urban and non-urban in setting. The same investigator evaluated practices in a single site visit. All were located in smoke-free buildings. At one office, people were seen smoking outside; however, the presence of discarded cigarettes was much more common. Thirteen practices (41%) employed smokers, most of whom smoked outside during work hours. Twenty-one of 28 practices (75%) had waiting room magazines containing tobacco advertisements. Fifteen practices (47%) offered anti-tobacco literature while six practices (19%) displayed visual media, none exclusively addressing tobacco. Nine practices (28%) use chart flags to identify smokers. None of 55 pediatric practices in Delaware contacted by telephone identified an office tobacco prevention coordinator. Our data indicate that, in Delaware, the pediatric offices we visited overall convey a limited message about tobacco and could strengthen tobacco prevention strategies. Research measuring the impact of office-based anti-tobacco messages is needed. If these messages are effective in preventing tobacco use, practitioners can supplement active counseling with indirect interventions that require minimal maintenance once established and that place no

  10. Using Publish-Subscribe Messaging for System Status and Automation

    NASA Technical Reports Server (NTRS)

    Smith, Danford S.

    2015-01-01

    The NASA Goddard Mission Services Evolution Center (GMSEC) system is a message-based plug-and-play open system architecture used in many of NASA mission operations centers. This presentation will focus on the use of GMSEC standard messages to report and analyze the status of a system and enable the automation of the system's components. In GMSEC systems, each component reports its status using a keep-alive message and also publishes status and activities as log messages. In addition, the components can accept functional directive messages from the GMSEC message bus. Over the past several years, development teams have found ways to utilize these messages to create innovative display pages and increasingly sophisticated approaches to automation. This presentation will show the flexibility and value of the message-based approach to system awareness and automation.

  11. Using Text-Messaging in the Secondary Classroom

    ERIC Educational Resources Information Center

    Thomas, Kevin; Orthober, Corrie

    2011-01-01

    To examine the potential uses of and barriers to text-messaging in secondary schools, three classes (66 students) of high school students used their personal mobile phones to receive out of school, course-related text-messages from teachers. Forty-six students (70%) agreed to receive text-messages. Findings indicate that participants found…

  12. Emotional flow in persuasive health messages.

    PubMed

    Nabi, Robin L

    2015-01-01

    Overwhelmingly, the literature on the persuasive influence of emotions has focused on individual emotions, fear in particular, though some recent attention has been given to mixed emotions in persuasive appeals. Building on this newer wave of research, this article argues that instead of focusing on singular emotional states or collections of emotions evoked by a message, it might prove valuable to explore the flow, or evolution, of emotional experience over the course of exposure to a health message. The article offers a brief introduction to the concept of emotion, followed by a review of the state of the literature on the use of emotion in health messages. The concept of emotional flow is then introduced along with a consideration of how it has been tacitly incorporated into the study of emotional health messages. Finally, the utility of the concept of emotional flow is elaborated by articulating the ways in which it might be harnessed to facilitate the creation of more effective health messages, individually as well as across campaigns. The article concludes with an agenda for future research.

  13. Effects of argument quality, source credibility and self-reported diabetes knowledge on message attitudes: an experiment using diabetes related messages.

    PubMed

    Lin, Tung-Cheng; Hwang, Lih-Lian; Lai, Yung-Jye

    2017-05-17

    Previous studies have reported that credibility and content (argument quality) are the most critical factors affecting the quality of health information and its acceptance and use; however, this causal relationship merits further investigation in the context of health education. Moreover, message recipients' prior knowledge may moderate these relationships. This study used the elaboration likelihood model to determine the main effects of argument quality, source credibility and the moderating effect of self-reported diabetes knowledge on message attitudes. A between-subjects experimental design using an educational message concerning diabetes for manipulation was applied to validate the effects empirically. A total of 181 participants without diabetes were recruited from the Department of Health, Taipei City Government. Four group messages were manipulated in terms of argument quality (high and low) × source credibility (high and low). Argument quality and source credibility of health information significantly influenced the attitude of message recipients. The participants with high self-reported knowledge participants exhibited significant disapproval for messages with low argument quality. Effective health information should provide objective descriptions and cite reliable sources; in addition, it should provide accurate, customised messages for recipients who have high background knowledge level and ability to discern message quality. © 2017 Health Libraries Group Health Information & Libraries Journal.

  14. Matching Message Design and Depressed Cognition: An Exploration of Attention Patterns for Gain- and Loss-Framed Depression Help-Seeking Messages.

    PubMed

    Lueck, Jennifer A

    2017-07-01

    Although disproportionally affected by depression, most depressed college students do not seek the help they need. Research has recently uncovered the potential negative effects of depression help-seeking messages if depressed cognition is not considered in the health message design process. It is unclear if depression determines whether and how individuals pay attention to gain- and loss-framed depression help-seeking messages-a mechanism that has significant implications for the strategic planning of health communication interventions. In order to enable the effective matching of message design and audience features, this study investigated attention patterns for gain (n = 75)- and loss (n = 78)-framed depression help-seeking messages using eye-tracking technology and self-report measures. The results confirmed that depression is a characteristic of risk avoidance and negative cognition. Depressed participants tended to pay more attention to disease information that was placed in a loss-framed rather than a gain-framed depression help-seeking message. Using negative message framing strategies for health messages seeking to educate about depression symptoms might therefore be a useful persuasive strategy-particularly when disseminated to vulnerable populations affected by depression. Furthermore, the present study emphasizes the effective use of eye-tracking technology in communication research.

  15. Embedded Alcohol Messages in Television Series: The Interactive Effect of Warnings and Audience Connectedness on Viewers' Alcohol Beliefs*

    PubMed Central

    RUSSELL, DALE W.; RUSSELL, CRISTEL ANTONIA

    2014-01-01

    Objective This research investigates whether warning viewers about the presence of embedded messages in the content of a television episode affects viewers' drinking beliefs and whether audi ence connectedness moderates the warning's impact. Method Two hun dred fifty college students participated in a laboratory experiment approximating a real-life television viewing experience. They viewed an actual television series episode containing embedded alcohol messages, and their subsequent beliefs about alcohol consequences were measured. Experimental conditions differed based on a 2 (Connectedness Level: low vs high) × 2 (Timing of the Warning: before or after the episode) × 2 (Emphasis of Warning: advertising vs health message) design. Connectedness was measured, and the timing and emphasis of the warnings were manipulated. The design also included a control condition where there was no warning. Results The findings indicate that warning view ers about embedded messages in the content of a program can yield sig nificant differences in viewers' beliefs about alcohol. However, the warning's impact differs depending on the viewers' level of connectedness to the program. In particular, in comparison with the no-warning control condition, the advertising prewarning produced lower positive beliefs about alcohol and its consequences but only for the low-connected viewers. Highly connected viewers were not affected by a warning emphasizing advertising messages embedded in the program, but a warning emphasizing health produced significantly higher negative be liefs about drinking than in the control condition. Conclusions The presence of many positive portrayals of drinking and alcohol product placements in television series has led many to suggest ways to counter their influence. However, advocates of warnings should be conscious of their differential impact on high- and low-connected viewers. PMID:18432390

  16. The importance of HIV prevention messaging for orphaned youth in Zimbabwe

    PubMed Central

    Haney, Erica; Singh, Kavita

    2014-01-01

    The AIDS epidemic has contributed to a drastic increase in the number of orphans in Zimbabwe. Female adolescent orphans are particularly in jeopardy of contracting HIV due to disadvantages including extreme poverty, low education, and the absent of parental oversight which can lead to higher risk-taking sexual behaviors. By understanding where girls receive education about HIV and who they rely on for information, organizations can effectively modify existing programs to better target this at-risk population. For this study a household survey was conducted which included 216 orphans and 324 non-orphans (n=540), aged 12–17 years old, in the resource-poor setting of Hwange District, Zimbabwe. The aims of this paper were to examine the differences between orphans and non-orphans in HIV prevention message exposure, level of motivation for learning about HIV, and communication with caregivers about safe sex. The household survey revealed that younger orphans, aged 12–15 years old, were more motivated to learn about HIV and had greater HIV messaging exposure in school than non-orphans. These exposure and differences in the levels of motivation between groups dissipated at older ages. Our research also discovered less caregiver communication among orphans than non-orphans. Our findings suggest that HIV programs targeting orphans need to do a better job at keeping older orphans interested in HIV prevention at a time when it matters most. Furthermore, intervention strategies that provide caregiver support are instrumental in effectively delivering prevention messages to girls at home. PMID:22293040

  17. Hybrid-view programming of nuclear fusion simulation code in the PGAS parallel programming language XcalableMP

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Tsugane, Keisuke; Boku, Taisuke; Murai, Hitoshi

    Recently, the Partitioned Global Address Space (PGAS) parallel programming model has emerged as a usable distributed memory programming model. XcalableMP (XMP) is a PGAS parallel programming language that extends base languages such as C and Fortran with directives in OpenMP-like style. XMP supports a global-view model that allows programmers to define global data and to map them to a set of processors, which execute the distributed global data as a single thread. In XMP, the concept of a coarray is also employed for local-view programming. In this study, we port Gyrokinetic Toroidal Code - Princeton (GTC-P), which is a three-dimensionalmore » gyrokinetic PIC code developed at Princeton University to study the microturbulence phenomenon in magnetically confined fusion plasmas, to XMP as an example of hybrid memory model coding with the global-view and local-view programming models. In local-view programming, the coarray notation is simple and intuitive compared with Message Passing Interface (MPI) programming while the performance is comparable to that of the MPI version. Thus, because the global-view programming model is suitable for expressing the data parallelism for a field of grid space data, we implement a hybrid-view version using a global-view programming model to compute the field and a local-view programming model to compute the movement of particles. Finally, the performance is degraded by 20% compared with the original MPI version, but the hybrid-view version facilitates more natural data expression for static grid space data (in the global-view model) and dynamic particle data (in the local-view model), and it also increases the readability of the code for higher productivity.« less

  18. Hybrid-view programming of nuclear fusion simulation code in the PGAS parallel programming language XcalableMP

    DOE PAGES

    Tsugane, Keisuke; Boku, Taisuke; Murai, Hitoshi; ...

    2016-06-01

    Recently, the Partitioned Global Address Space (PGAS) parallel programming model has emerged as a usable distributed memory programming model. XcalableMP (XMP) is a PGAS parallel programming language that extends base languages such as C and Fortran with directives in OpenMP-like style. XMP supports a global-view model that allows programmers to define global data and to map them to a set of processors, which execute the distributed global data as a single thread. In XMP, the concept of a coarray is also employed for local-view programming. In this study, we port Gyrokinetic Toroidal Code - Princeton (GTC-P), which is a three-dimensionalmore » gyrokinetic PIC code developed at Princeton University to study the microturbulence phenomenon in magnetically confined fusion plasmas, to XMP as an example of hybrid memory model coding with the global-view and local-view programming models. In local-view programming, the coarray notation is simple and intuitive compared with Message Passing Interface (MPI) programming while the performance is comparable to that of the MPI version. Thus, because the global-view programming model is suitable for expressing the data parallelism for a field of grid space data, we implement a hybrid-view version using a global-view programming model to compute the field and a local-view programming model to compute the movement of particles. Finally, the performance is degraded by 20% compared with the original MPI version, but the hybrid-view version facilitates more natural data expression for static grid space data (in the global-view model) and dynamic particle data (in the local-view model), and it also increases the readability of the code for higher productivity.« less

  19. Targeting anti-smoking messages: Does audience race matter?

    PubMed Central

    Tharp-Taylor, Shannah; Fryer, Craig S.; Shadel, William G.

    2012-01-01

    This study examined whether an adolescent’s self-identified race moderates the perceived effectiveness of anti-smoking messages. A sample of 94 never smoking adolescents (59% African-American; 41% European-American) participated in this two-part study. First, they rated the persuasive strength of a series of five decontextualized anti-smoking messages (i.e., messages delivered in text format). Second, they were exposed to five sets of anti-smoking public service announcements (PSAs; viewed as TV advertisements) that had embedded in them the five anti-smoking messages used in the first part of the study and rated their smoking refusal self-efficacy after each one. Although race moderated participants’ ratings of the decontextualized messages, there were no significant moderating effects of race when those messages were embedded in PSAs. The results of this study support the notion that anti-smoking PSAs should not be targeted to adolescent racial background, but suggests that decontextualized anti-smoking messages may be more effective if targeted to adolescent race. PMID:22481049

  20. Why are Tailored Messages More Effective? A Multiple Mediation Analysis of a Breast Cancer Screening Intervention.

    PubMed

    Jensen, Jakob D; King, Andy J; Carcioppolo, Nicholas; Davis, LaShara

    2012-10-01

    Past research has found that tailoring increases the persuasive effectiveness of a message. However, the observed effect has been small and the explanatory mechanism remains unknown. To address these shortcomings, a tailoring software program was created that personalized breast cancer screening pamphlets according to risk, health belief model constructs, and visual preference. Women aged 40 and older ( N = 119) participated in a 2 (tailored vs. stock message) × 2 (charts/graphs vs. illustrated visuals) × 3 (nested replications of the visuals) experiment. Participants provided with tailored illustrated pamphlets expressed greater breast cancer screening intentions than those provided with other pamphlets. In a test of 10 different mediators, perceived message relevance was found to fully mediate the tailoring × visual interaction.

  1. Prevention messages and AIDS risk behavior in Kampala, Uganda.

    PubMed

    Hearst, Norman; Kajubi, Phoebe; Hudes, Esther Sid; Maganda, Albert K; Green, Edward C

    2012-01-01

    Uganda was one of the first countries to substantially reduce HIV rates through behavior change, but these gains have not continued in recent years. Little is known about what messages Ugandans are currently hearing about AIDS prevention, what they themselves believe to be important prevention strategies, and how these beliefs are associated with behavior. We interviewed men and women aged between 20 and 39 in two poor peri-urban areas of Kampala, using a random sample, cross-sectional household survey design. Respondents provided detailed reports of sexual behavior over the past six months, the main prevention message they are currently hearing about AIDS, and their own ranking of the importance of prevention strategies. Condom use was the main AIDS prevention message that respondents reported hearing, followed by getting tested. These were also what respondents themselves considered most important, followed closely by faithfulness. Abstinence was the lowest ranked strategy, but a higher ranking for this prevention strategy was the only one consistently associated with less risky behavior. A higher ranking for condoms was associated with higher levels of risk behavior, while the ranking of testing made no difference in any behavior. These results present challenges for AIDS prevention strategies that rely primarily on promoting condoms and testing. HIV prevention programs need to assess their impact on behavior.

  2. Instant Messaging by SIP

    NASA Astrophysics Data System (ADS)

    Muhi, Daniel; Dulai, Tibor; Jaskó, Szilárd

    2008-11-01

    SIP is a general-purpose application layer protocol which is able to establish sessions between two or more parties. These sessions are mainly telephone calls and multimedia conferences. However it can be used for other purposes like instant messaging and presence service. SIP has a very important role in mobile communication as more and more communicating applications are going mobile. In this paper we would like to show how SIP can be used for instant messaging purposes.

  3. Effects of a statewide antismoking campaign on mass media messages and smoking beliefs.

    PubMed

    Murray, D M; Prokhorov, A V; Harty, K C

    1994-01-01

    BACKGROUND. In 1985, The Minnesota Legislature initiated a long-term and broad-based program to deter adolescent tobacco use. The initiative was funded by higher taxes on tobacco products and combined school-based programming, mass-media campaigns, and local community grants. The Minnesota-Wisconsin Adolescent Tobacco-Use Research Project was designed to evaluate this effort by monitoring adolescent tobacco use and related factors in Minnesota and Wisconsin from 1986 to 1990. The results presented in this paper indicate that the Minnesota initiative dramatically increased Minnesota schoolchildren's reported exposure to the anti-smoking messages in the mass media but had little effect on smoking-related beliefs or smoking behaviors. CONCLUSIONS. These results, together with the findings from other recent studies, suggest that even dramatic increases in exposure to anti-tobacco messages in the mass-media, in the absence of a substantial and sustained school-based tobacco prevention measures, may be insufficient to generate reductions in adolescent tobacco use.

  4. Notification: Preliminary Research to Evaluate Hazardous Waste Passing Through Publicly Owned Treatment Works

    EPA Pesticide Factsheets

    March 13, 2013. The EPA's OIG plans to start preliminary research to evaluate the effectiveness of the EPA’s programs in preventing and addressing contamination of surface water from hazardous wastes passing through publicly owned treatment works.

  5. Timely response to secure messages from primary care patients.

    PubMed

    Rohrer, James E; North, Frederick; Angstman, Kurt B; Oberhelman, Sara S; Meunier, Matthew R

    2013-01-01

    To assess delays in response to patient secure e-mail messages in primary care. Secure electronic messages are initiated by primary care patients. Timely response is necessary for patient safety and quality. A database of secure messages. A random sample of 353 secure electronic messages initiated by primary care patients treated in 4 clinics. Message not opened after 12 hours or messages not responded to after 36 hours. A total of 8.5% of electronic messages were not opened within 12 hours, and 17.6% did not receive a response in 36 hours. Clinic location, being a clinic employee, and patient sex were not related to delays. Patients older than 50 years were more likely to receive a delayed response (25.7% delayed, P = .013). The risk of both kinds of delays was higher on weekends (P < .001 for both). The e-mail message system resulted in high rates of delayed response. Delays were concentrated on weekends (Friday-Sunday). Reducing delayed responses may require automatic rerouting of messages to message centers staffed 24-7 or other mechanisms to manage this after-hours work flow.

  6. Qualitative study to explore Prospect Theory and message framing and diet and cancer prevention-related issues among African American adolescents.

    PubMed

    Satia, Jessie A; Barlow, Jameta; Armstrong-Brown, Janelle; Watters, Joanne L

    2010-01-01

    There is a dearth of knowledge regarding factors that may motivate African American adolescents to consume healthier diets. To develop and test cancer prevention messages based on Prospect Theory on motivation to improve dietary intake in African American adolescents and to explore other salient factors that may inform dietary intervention design and implementation in this population. Semistructured in-person qualitative interviews were conducted with 13 African American male and female adolescents, aged 12 to 16 years, in North Carolina. Prospect Theory and message framing were used to guide the design of the 4 sets of diet-related messages related to cancer prevention: short-term, gain-framed; long-term, gain-framed; short-term, loss-framed; and long-term, loss-framed messages. Data were also collected on demographic, behavioral, and psychological factors; usual health behaviors; and preferences for intervention delivery. Most respondents found the gain-framed, short-term messages most salient for both fruits/vegetables (8 [61.5%]) and fat consumption (7 [53.8%]). For fat consumption only, 2 (15.4%) found the loss-framed, short-term messages pertinent; none found the loss-framed, long-term messages relevant for either dietary variable. All indicated interest in participating in a dietary intervention/education program; most preferred the Internet as a channel for intervention delivery. Participants expressed diverse views regarding knowledge, attitudes, and beliefs regarding healthy eating. The gain-framed, short-term messages were most salient for motivating the majority of respondents to consume a healthy diet and most expressed a strong interest in participating in programs about diet and nutrition, with the Internet as the preferred communication channel. Researchers conducting dietary interventions and education initiatives and medical professionals who counsel African American adolescents should consider using Prospect Theory as a theoretical framework

  7. Message and price components of Family Caps: experimental evidence from New Jersey.

    PubMed

    Jagannathan, Radha; Camasso, Michael J

    2011-08-01

    In this paper, we examine the relative efficacy of two mechanisms--price consideration and the message of social responsibility--in accounting for Family Cap effects on fertility behavior. The Family Cap is a component of welfare reform policy that denies additional cash benefits to children born 10 or more months after a woman entered the welfare rolls. We use data from the New Jersey Family Development Program (FDP) evaluation that employed a classical experimental design. We find that fertility behaviors are influenced by both Family Cap price and message mechanisms but that these effects are conditioned by welfare recipients' time on welfare and race. Black women who have longer stays on welfare are more likely to be influenced by price while women with shorter stays are influenced by both price and the social message. We believe our results have implications not only for future public welfare policy initiatives but for any social policies that attempt to influence behavior directly, through individual rewards and punishments, and indirectly through the activation of social or community pressures. Copyright © 2010 Elsevier Ltd. All rights reserved.

  8. Gain versus loss-framed messaging and colorectal cancer screening among African Americans: A preliminary examination of perceived racism and culturally targeted dual messaging.

    PubMed

    Lucas, Todd; Hayman, Lenwood W; Blessman, James E; Asabigi, Kanzoni; Novak, Julie M

    2016-05-01

    This preliminary study examined the effect of gain versus loss-framed messaging as well as culturally targeted personal prevention messaging on African Americans' receptivity to colorectal cancer (CRC) screening. This research also examined mechanistic functions of perceived racism in response to message framing. Community samples of African Americans (N = 132) and White Americans (N = 50) who were non-compliant with recommended CRC screening completed an online education module about CRC, and were either exposed to a gain-framed or loss-framed message about CRC screening. Half of African Americans were exposed to an additional and culturally targeted self-control message about personal prevention of CRC. Theory of planned behavior measures of attitudes, normative beliefs, perceived behavioural control, and intentions to obtain a CRC screen served as primary outcomes. The effect of messaging on perceived racism was also measured as an outcome. Consistent with prior research, White Americans were more receptive to CRC screening when exposed to a loss-framed message. However, African Americans were more receptive when exposed to a gain-framed message. The contrary effect of loss-framed messaging on receptivity to screening among African Americans was mediated by an increase in perceived racism. However, including an additional and culturally targeted prevention message mitigated the adverse effect of a loss-framed message. This study identifies an important potential cultural difference in the effect of message framing on illness screening among African Americans, while also suggesting a culturally relevant linking mechanism. This study also suggests the potential for simultaneously presented and culturally targeted messaging to alter the effects of gain and loss-framed messaging on African Americans. What is already known on this subject? African Americans are at an increased risk of both developing and dying from colorectal cancer (CRC). These disparities can be

  9. Effectiveness of PETTLEP imager on performance of passing skill in volleyball.

    PubMed

    Afrouzeh, M; Sohrabi, E; Haghkhan, A; Rowshani, F; Goharrokhi, S

    2015-01-01

    This study was conducted to compare the effectiveness of PETTLEP-based imagery, and traditional imagery interventions, on performance of passing skill in volleyball. 36 beginners male volleyball players (Mage =13.5 years, SD=0.55 years) with 5-6 months practice experience were randomly assigned to one of three groups: physical practice + PETTLEP imagery (PP+PI) (N.=15), physical practice + traditional imagery (N.=15), and physical practice only (PP; N.=15). Subjects in the PP+PI group applied the seven components of PETTLEP imagery training; whereas subjects in the PP+TI engaged in a relaxation session before imagery and used response laden motor imagery scripts. The two groups completed 15 minutes of imagery training followed immediately by 13 minutes of "passing" practice three times per week. The PP group completed only 13 minutes of "passing" practice three times per week. Each group performed its respective tasks for 7 weeks. A pre-test took place during the first practice session in which "passing" was assessed. After the 7-week practice program, a post-test took place followed by a retention test, one "no-practice" week later. All groups improved significantly (P<0.05) from pre- to post-test and retention test. However, as hypothesised the PP+PI group improved more (P<0.05) than the PP+TI and PP groups. The findings, therefore, support the effectiveness of PETTLEP imagery in enhancing performance of passing skill in volleyball when combined with physical practice.

  10. Mobile phone text messaging improves antihypertensive drug adherence in the community.

    PubMed

    Varleta, Paola; Acevedo, Mónica; Akel, Carlos; Salinas, Claudia; Navarrete, Carlos; García, Ana; Echegoyen, Carolina; Rodriguez, Daniel; Gramusset, Lissette; Leon, Sandra; Cofré, Pedro; Retamal, Raquel; Romero, Katerine

    2017-12-01

    Antihypertensive drug adherence (ADA) is a mainstay in blood pressure control. Education through mobile phone short message system (SMS) text messaging could improve ADA. The authors conducted a randomized study involving 314 patients with hypertension with <6 months of antihypertensive treatment from the Preventive Health Program of 12 different primary care centers in Santiago, Chile. Patients were randomly assigned to receive or not receive SMS related to ADA and healthy lifestyle. Adherence was assessed by the self-reported four-item scale Morisky-Green-Levine questionnaire at baseline and after 6 months of follow-up, with four of four positive questions classified as good adherence. Group comparison for adherence was performed by means of a logistic regression model, adjusting by baseline adherence, age older than 60 years, and sex. A total of 163 patients were randomized to receive and 151 to not receive SMS. After 6 months of follow-up, ADA in the non-SMS group decreased from 59.3% to 51.4% (P=.1). By contrast, adherence increased from 49% to 62.3% (P=.01) in the SMS group. Text messaging intervention improved ADA (risk ratio, 1.3; 95% confidence interval, 1.0-1.6 [P<.05]). At 6-month follow-up, text messaging resulted in an increase in reporting ADA in this hypertensive Latino population. This approach could become an effective tool to overcome poor medication adherence in the community. ©2017 Wiley Periodicals, Inc.

  11. A pilot test of a tailored mobile and web-based diabetes messaging system for adolescents.

    PubMed

    Mulvaney, Shelagh A; Anders, Shilo; Smith, Annie K; Pittel, Eric J; Johnson, Kevin B

    2012-03-01

    We conducted a pilot trial of a new mobile and web-based intervention to improve diabetes adherence. The text messaging system was designed to motivate and remind adolescents about diabetes self-care tasks. Text messages were tailored according to individually-reported barriers to diabetes self-care. A total of 23 adolescents with type 1 diabetes used the system for a period of three months. On average, they received 10 text messages per week (range 8-12). A matched historical control group from the same clinic was used for comparison. After three months, system users rated the content, usability and experiences with the system, which were very favourable. Comparison of the intervention and control groups indicated a significant interaction between group and time. Both groups had similar HbA(1c) levels at baseline. After three months, the mean HbA(1c) level in the intervention group was unchanged (8.8%), but the mean level in the control group was significantly higher (9.9%), P = 0.006. The results demonstrate the feasibility of the messaging system, user acceptance and a promising effect on glycaemic control. Integrating this type of messaging system with online educational programming could prove to be beneficial.

  12. Communicating Concepts about Altruism in Interstellar Messages

    NASA Astrophysics Data System (ADS)

    Vakoch, Douglas A.

    2002-01-01

    This project identifies key principles of altruism that can be translated into interstellar messages for communication with extraterrestrial intelligence. The message contents will focus specifically on the evolution of altruism, drawing on recent insights in evolutionary biology, with particular emphasis on sociobiological accounts of kin selection and reciprocal altruism. This focus on altruism for message contents has several advantages. First, the subject can be translated into interstellar messages both via an existing formal interstellar language and via pictorial messages. For example, aspects of reciprocal altruism can be described through mathematical modeling, such as game theoretic approaches, which in turn can be described readily in the interstellar language Lincos. Second, concentrating on altruism as a message content may facilitate communications with extraterrestrial intelligence. Some scientists have argued that humans may be expected to communicate something about their moral status and development in an exchange with extraterrestrials. One of the most salient ways that terrestrial and extraterrestrial civilizations might be expected to evaluate one another is in terms of ethical motivations. Indeed, current search strategies assume some measure of altruism on the part of transmitting civilizations; with no guarantee of a response, the other civilization would be providing information to us with no direct payoff. Thus, concepts about altruism provide an appropriate content for interstellar messages, because the concepts themselves might be understood by extraterrestrial civilizations.

  13. Impact of Product Involvement, Message Format, and Receiver Sex on the Efficacy of Comparative Advertising Messages.

    ERIC Educational Resources Information Center

    Pfau, Michael

    1994-01-01

    Investigates the role and impact of receiver involvement in product class, comparative message format, and receiver sex on the relative effectiveness of comparative advertising messages. Indicates that females and males respond uniquely to comparative advertising, revealing consistent patterns regarding both circumstances and approaches. (SR)

  14. A Theory-Based Video Messaging Mobile Phone Intervention for Smoking Cessation: Randomized Controlled Trial

    PubMed Central

    Dorey, Enid; Bramley, Dale; Bullen, Chris; Denny, Simon; Elley, C Raina; Maddison, Ralph; McRobbie, Hayden; Parag, Varsha; Rodgers, Anthony; Salmon, Penny

    2011-01-01

    Background Advances in technology allowed the development of a novel smoking cessation program delivered by video messages sent to mobile phones. This social cognitive theory-based intervention (called “STUB IT”) used observational learning via short video diary messages from role models going through the quitting process to teach behavioral change techniques. Objective The objective of our study was to assess the effectiveness of a multimedia mobile phone intervention for smoking cessation. Methods A randomized controlled trial was conducted with 6-month follow-up. Participants had to be 16 years of age or over, be current daily smokers, be ready to quit, and have a video message-capable phone. Recruitment targeted younger adults predominantly through radio and online advertising. Registration and data collection were completed online, prompted by text messages. The intervention group received an automated package of video and text messages over 6 months that was tailored to self-selected quit date, role model, and timing of messages. Extra messages were available on demand to beat cravings and address lapses. The control group also set a quit date and received a general health video message sent to their phone every 2 weeks. Results The target sample size was not achieved due to difficulty recruiting young adult quitters. Of the 226 randomized participants, 47% (107/226) were female and 24% (54/226) were Maori (indigenous population of New Zealand). Their mean age was 27 years (SD 8.7), and there was a high level of nicotine addiction. Continuous abstinence at 6 months was 26.4% (29/110) in the intervention group and 27.6% (32/116) in the control group (P = .8). Feedback from participants indicated that the support provided by the video role models was important and appreciated. Conclusions This study was not able to demonstrate a statistically significant effect of the complex video messaging mobile phone intervention compared with simple general health

  15. A theory-based video messaging mobile phone intervention for smoking cessation: randomized controlled trial.

    PubMed

    Whittaker, Robyn; Dorey, Enid; Bramley, Dale; Bullen, Chris; Denny, Simon; Elley, C Raina; Maddison, Ralph; McRobbie, Hayden; Parag, Varsha; Rodgers, Anthony; Salmon, Penny

    2011-01-21

    Advances in technology allowed the development of a novel smoking cessation program delivered by video messages sent to mobile phones. This social cognitive theory-based intervention (called "STUB IT") used observational learning via short video diary messages from role models going through the quitting process to teach behavioral change techniques. The objective of our study was to assess the effectiveness of a multimedia mobile phone intervention for smoking cessation. A randomized controlled trial was conducted with 6-month follow-up. Participants had to be 16 years of age or over, be current daily smokers, be ready to quit, and have a video message-capable phone. Recruitment targeted younger adults predominantly through radio and online advertising. Registration and data collection were completed online, prompted by text messages. The intervention group received an automated package of video and text messages over 6 months that was tailored to self-selected quit date, role model, and timing of messages. Extra messages were available on demand to beat cravings and address lapses. The control group also set a quit date and received a general health video message sent to their phone every 2 weeks. The target sample size was not achieved due to difficulty recruiting young adult quitters. Of the 226 randomized participants, 47% (107/226) were female and 24% (54/226) were Maori (indigenous population of New Zealand). Their mean age was 27 years (SD 8.7), and there was a high level of nicotine addiction. Continuous abstinence at 6 months was 26.4% (29/110) in the intervention group and 27.6% (32/116) in the control group (P = .8). Feedback from participants indicated that the support provided by the video role models was important and appreciated. This study was not able to demonstrate a statistically significant effect of the complex video messaging mobile phone intervention compared with simple general health video messages via mobile phone. However, there was

  16. Reactions to threatening health messages.

    PubMed

    Ten Hoor, Gill A; Peters, Gjalt-Jorn Y; Kalagi, Janice; de Groot, Lianne; Grootjans, Karlijne; Huschens, Alexander; Köhninger, Constanze; Kölgen, Lizan; Pelssers, Isabelle; Schütt, Toby; Thomas, Sophia; Ruiter, Robert A C; Kok, Gerjo

    2012-11-21

    Threatening health messages that focus on severity are popular, but frequently have no effect or even a counterproductive effect on behavior change. This paradox (i.e. wide application despite low effectiveness) may be partly explained by the intuitive appeal of threatening communication: it may be hard to predict the defensive reactions occurring in response to fear appeals. We examine this hypothesis by using two studies by Brown and colleagues, which provide evidence that threatening health messages in the form of distressing imagery in anti-smoking and anti-alcohol campaigns cause defensive reactions. We simulated both Brown et al. experiments, asking participants to estimate the reactions of the original study subjects to the threatening health information (n = 93). Afterwards, we presented the actual original study outcomes. One week later, we assessed whether this knowledge of the actual study outcomes helped participants to more successfully estimate the effectiveness of the threatening health information (n = 72). Results showed that participants were initially convinced of the effectiveness of threatening health messages and were unable to anticipate the defensive reactions that in fact occurred. Furthermore, these estimates did not improve after participants had been explained the dynamics of threatening communication as well as what the effects of the threatening communication had been in reality. These findings are consistent with the hypothesis that the effectiveness of threatening health messages is intuitively appealing. What is more, providing empirical evidence against the use of threatening health messages has very little effect on this intuitive appeal.

  17. Framing political messages to fit the audience's regulatory orientation: how to improve the efficacy of the same message content.

    PubMed

    Mannetti, Lucia; Brizi, Ambra; Giacomantonio, Mauro; Higgins, E Tory

    2013-01-01

    This research investigates how the impact of persuasive messages in the political domain can be improved when fit is created by subliminally priming recipients' regulatory focus (either promotion or prevention) and by linguistic framing of the message (either strategic approach framing or strategic avoidance framing). Results of two studies show that regulatory fit: a) increases the impact of a political message favoring nuclear energy on implicit attitudes of the target audience (Study 1); and b) induces a more positive evaluation of, and intentions to vote for, the political candidate who is delivering a message concerning immigration policies (Study 2).

  18. Instant messaging at the hospital: supporting articulation work?

    PubMed

    Iversen, Tobias Buschmann; Melby, Line; Toussaint, Pieter

    2013-09-01

    Clinical work is increasingly fragmented and requires extensive articulation and coordination. Computer systems may support such work. In this study, we investigate how instant messaging functions as a tool for supporting articulation work at the hospital. This paper aims to describe the characteristics of instant messaging communication in terms of number and length of messages, distribution over time, and the number of participants included in conversations. We also aim to determine what kind of articulation work is supported by analysing message content. Analysis of one month's worth of instant messages sent through the perioperative coordination and communication system at a Danish hospital. Instant messaging was found to be used extensively for articulation work, mostly through short, simple conversational exchanges. It is used particularly often for communication concerning the patient, specifically, the coordination and logistics of patient care. Instant messaging is used by all actors involved in the perioperative domain. Articulation work and clinical work are hard to separate in a real clinical setting. Predefined messages and strict workflow design do not suffice when supporting communication in the context of collaborative clinical work. Flexibility is of vital importance, and this needs to be reflected in the design of supportive communication systems. Copyright © 2013 Elsevier Ireland Ltd. All rights reserved.

  19. Media Messages About Cancer: What Do People Understand?

    PubMed Central

    MAZOR, KATHLEEN M.; CALVI, JOSEPHINE; COWAN, REBECCA; COSTANZA, MARY E.; HAN, PAUL K. J.; GREENE, SARAH M.; SACCOCCIO, LAURA; COVE, ERICA; ROBLIN, DOUGLAS; WILLIAMS, ANDREW

    2010-01-01

    Health messages on television and other mass media have the potential to significantly influence the public’s health-related knowledge and behaviors, but little is known about people’s ability to comprehend such messages. To investigate whether people understood the spoken information in media messages about cancer prevention and screening, we recruited 44 adults from 3 sites to view 6 messages aired on television and the internet. Participants were asked to paraphrase main points and selected phrases. Qualitative analysis methods were used to identify what content was correctly and accurately recalled and paraphrased, and to describe misunderstandings and misconceptions. While most participants accurately recalled and paraphrased the gist of the messages used here, over-generalization (e.g., believing preventative behaviors to be more protective than stated), loss of details (e.g., misremembering the recommended age for screening) and confusion or misunderstandings around specific concepts (e.g., interpreting “early stage” as the stage in one’s life rather than cancer stage) were common. Variability in the public’s ability to understand spoken media messages may limit the effectiveness of both pubic health campaigns and provider-patient communication. Additional research is needed to identify message characteristics which enhance understandability and improve comprehension of spoken media messages around cancer. PMID:20845199

  20. Space Shuttle Program Primary Avionics Software System (PASS) Success Legacy -Major Accomplishments and Lessons Learned

    NASA Technical Reports Server (NTRS)

    Orr, James K.

    2010-01-01

    This presentation has shown the accomplishments of the PASS project over three decades and highlighted the lessons learned. Over the entire time, our goal has been to continuously improve our process, implement automation for both quality and increased productivity, and identify and remove all defects due to prior execution of a flawed process in addition to improving our processes following identification of significant process escapes. Morale and workforce instability have been issues, most significantly during 1993 to 1998 (period of consolidation in aerospace industry). The PASS project has also consulted with others, including the Software Engineering Institute, so as to be an early evaluator, adopter, and adapter of state-of-the-art software engineering innovations.

  1. Incentive Pass-through for Residential Solar Systems in California

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Dong, C. G.; Wiser, Ryan; Rai, Varun

    2014-10-01

    The deployment of solar photovoltaic (PV) systems has grown rapidly over the last decade, partly because of various government incentives. In the United States, among the largest and longest-running incentives have been those established in California. Building on past research, this report addresses the still-unanswered question: to what degree have the direct PV incentives in California been passed through from installers to consumers? This report helps address this question by carefully examining the residential PV market in California (excluding a certain class of third-party-owned PV systems) and applying both a structural-modeling approach and a reduced-form regression analysis to estimate themore » incentive pass-through rate. The results suggest an average pass-through rate of direct incentives of nearly 100%, though with regional differences among California counties. While these results could have multiple explanations, they suggest a relatively competitive market and well-functioning subsidy program. Further analysis is required to determine whether similar results broadly apply to other states, to other customer segments, to all third-party-owned PV systems, or to all forms of financial incentives for solar (considering not only direct state subsidies, but also utility electric bill savings and federal tax incentives).« less

  2. Promoting stair use: single versus multiple stair-riser messages.

    PubMed

    Webb, Oliver J; Eves, Frank F

    2005-09-01

    Message banners attached to stair risers produced a significant increase in pedestrian stair use, exceeding effects previously reported for conventional posters. Multiple instances of the same message banner, however, were as effective as banners featuring different messages. Therefore, greater visibility, rather than message variety, appears to account for the superiority of the banner format. Our findings indicate the feasibility of simple stair-use promotion campaigns based around the repetition of a single message.

  3. Simulation of double-pass stimulated Raman backscattering

    NASA Astrophysics Data System (ADS)

    Wu, Z.; Chen, Q.; Morozov, A.; Suckewer, S.

    2018-04-01

    Experiments on Stimulated Raman Backscattering (SRBS) in plasma have demonstrated significantly higher energy conversion in a double-pass amplifier where the laser pulses go through the plasma twice compared with a single-pass amplifier with double the plasma length of a single pass. In this paper, the improvement in understanding recent experimental results is presented by considering quite in detail the effects of plasma heating on the modeling of SRBS. Our simulation results show that the low efficiency of single-pass amplifiers can be attributed to Landau damping and the frequency shift of Langmuir waves. In double-pass amplifiers, these issues can be avoided, to some degree, because pump-induced heating could be reduced, while the plasma cools down between the passes. Therefore, double-pass amplifiers yield considerably enhanced energy transfer from the pump to the seed, hence the output pulse intensity.

  4. Effects of Instant Messaging on School Performance in Adolescents.

    PubMed

    Grover, Karan; Pecor, Keith; Malkowski, Michael; Kang, Lilia; Machado, Sasha; Lulla, Roshni; Heisey, David; Ming, Xue

    2016-06-01

    Instant messaging may compromise sleep quality and school performance in adolescents. We aimed to determine associations between nighttime messaging and daytime sleepiness, self-reported sleep parameters, and/or school performance. Students from 3 high schools in New Jersey completed anonymous questionnaires assessing sleep duration, daytime sleepiness, messaging habits, and academic performance. Of the 2,352 students sampled, 1,537 responses were contrasted among grades, sexes, and messaging duration, both before and after lights out. Students who reported longer duration of messaging after lights out were more likely to report a shorter sleep duration, higher rate of daytime sleepiness, and poorer academic performance. Messaging before lights out was not associated with higher rates of daytime sleepiness or poorer academic performance. Females reported more messaging, more daytime sleepiness, and better academic performance than males. There may be an association between text messaging and school performance in this cohort of students. © The Author(s) 2016.

  5. Tracing How Normative Messages May Influence Physical Activity Intention.

    PubMed

    van Bavel, René; Esposito, Gabriele; Baranowski, Tom; Duch-Brown, Néstor

    2017-04-01

    Normative messages have been shown to increase intention to do physical activity. We traced how "positive" and "negative" normative messages influenced physical activity intention by comparing constructs of the model of goal-directed behavior with descriptive norms (MGDB + DNs) across control and treatment groups in an experiment. For this purpose, 16-24-year-old respondents (n = 1,200) in Bulgaria, Croatia, and Romania were asked about their age, sex, and levels of physical activity before being exposed to positive and negative normative messages and completing a questionnaire with MGDB + DNs scales. Different MGDB + DNs constructs were influenced by the normative messages: compared with the control, the negative message group showed stronger attitudes (p = .003) and the positive message group showed higher positive anticipated emotions (p = .005). The positive message's effect is consistent with the literature on conformity to social norms. The negative message's effect lends itself to interpretations based on social identity and deviance regulation theories.

  6. Recruitment and retention in an SMS-based health education program: Lessons learned from Text2BHealthy.

    PubMed

    Speirs, Katherine E; Grutzmacher, Stephanie K; Munger, Ashley L; Messina, Lauren A

    2016-09-01

    While text messages or short messaging service programs are increasingly utilized for delivering health education, few studies have explored the unique challenges of recruiting and retaining participants in such programs. This study utilizes survey and focus group data from Text2BHealthy, a short messaging service-based nutrition and physical activity promotion program, to examine barriers to enrollment and facilitators of retention among parents of elementary school students. Results show that participants were hard to reach with recruitment materials, had difficulty with self-enrollment, and were apprehensive about program costs. However, 89-90 percent of participants were retained. Results suggest that providing manual enrollment options, alternative program delivery methods (e.g. email messages), and opportunities to reenroll may facilitate participation in short messaging service-based health education and promotion programs. © The Author(s) 2015.

  7. Pilot study of psychotherapeutic text messaging for depression.

    PubMed

    Pfeiffer, Paul N; Henry, Jennifer; Ganoczy, Dara; Piette, John D

    2017-08-01

    Background Text messaging services could increase access to psychotherapeutic content for individuals with depression by avoiding barriers to in-person psychotherapy such as cost, transportation, and therapist availability. Determining whether text messages reflecting different psychotherapeutic techniques exhibit differences in acceptability or effectiveness may help guide service development. Objectives We aimed to determine: (1) the feasibility of delivering a psychotherapy-based text messaging service to people with depression identified via the internet, (2) whether there is variation in satisfaction with messages according to the type of psychotherapeutic technique they represent, and (3) whether symptoms of depression vary according to receipt of each message type and participants' satisfaction with the messages they received. Methods For this study 190 US adults who screened positive for a major depressive episode (Patient Health Questionnaire (PHQ-9) score ≥10) were recruited from online advertisements. Participants received a daily psychotherapy-based text message 6 days per week for 12 weeks. Text messages were developed by a team of psychiatrists, psychologists, and social workers to reflect three psychotherapeutic approaches: acceptance and commitment therapy (ACT), behavioural activation, and cognitive restructuring. Each week the message type for the week was randomly assigned from one of the three types, allowing for repeats. Participants were asked daily to rate each message. On the 7th day of each week, participants completed a two-item depression screener (PHQ-2). Web-based surveys at baseline, 6, and 12 weeks were used as the primary measure of depressive symptoms (PHQ-9). Results Of the 190 participants enrolled, 85 (45%) completed the 6-week web survey and 67 (35%) completed the 12-week survey. The mean baseline PHQ-9 score was 19.4 (SD 4.2) and there was a statistically significant mean improvement in PHQ-9 scores of -2.9 (SD 6.0; p < 0

  8. Systematic and heuristic processing of majority and minority-endorsed messages: the effects of varying outcome relevance and levels of orientation on attitude and message processing.

    PubMed

    Martin, Robin; Hewstone, Miles; Martin, Pearl Y

    2007-01-01

    Two experiments investigated the conditions under which majority and minority sources instigate systematic processing of their messages. Both experiments crossed source status (majority vs. minority) with message quality (strong vs. weak arguments). In each experiment, message elaboration was manipulated by varying either motivational (outcome relevance, Experiment 1) or cognitive (orientating tasks, Experiment 2) factors. The results showed that when either motivational or cognitive factors encouraged low message elaboration, there was heuristic acceptance of the majority position without detailed message processing. When the level of message elaboration was intermediate, there was message processing only for the minority source. Finally, when message elaboration was high, there was message processing for both source conditions. These results show that majority and minority influence is sensitive to motivational and cognitive factors that constrain or enhance message elaboration and that both sources can lead to systematic processing under specific circumstances.

  9. A new deadlock resolution protocol and message matching algorithm for the extreme-scale simulator

    DOE PAGES

    Engelmann, Christian; Naughton, III, Thomas J.

    2016-03-22

    Investigating the performance of parallel applications at scale on future high-performance computing (HPC) architectures and the performance impact of different HPC architecture choices is an important component of HPC hardware/software co-design. The Extreme-scale Simulator (xSim) is a simulation toolkit for investigating the performance of parallel applications at scale. xSim scales to millions of simulated Message Passing Interface (MPI) processes. The overhead introduced by a simulation tool is an important performance and productivity aspect. This paper documents two improvements to xSim: (1)~a new deadlock resolution protocol to reduce the parallel discrete event simulation overhead and (2)~a new simulated MPI message matchingmore » algorithm to reduce the oversubscription management overhead. The results clearly show a significant performance improvement. The simulation overhead for running the NAS Parallel Benchmark suite was reduced from 102% to 0% for the embarrassingly parallel (EP) benchmark and from 1,020% to 238% for the conjugate gradient (CG) benchmark. xSim offers a highly accurate simulation mode for better tracking of injected MPI process failures. Furthermore, with highly accurate simulation, the overhead was reduced from 3,332% to 204% for EP and from 37,511% to 13,808% for CG.« less

  10. Video: useful tool for delivering family planning messages.

    PubMed

    Sumarsono, S K

    1985-10-01

    In 1969, the Government of Indonesia declared that the population explosion was a national problem. The National Family Planning Program was consequently launched to encourage adoption of the ideal of a small, happy and prosperous family norm. Micro-approach messages are composed of the following: physiology of menstruation; reproductive process; healthy pregnancy; rational family planning; rational application of contraceptives; infant and child care; nutrition improvement; increase in breastfeeding; increase in family income; education in family life; family health; and deferred marriage age. Macro-approach messages include: the population problem and its impact on socioeconomic aspects; efforts to cope with the population problem; and improvement of women's lot. In utilizing the media and communication channels, the program encourages the implementation of units and working units of IEC to produce IEC materials; utilizes all possible existing media and IEC channels; maintains the consistent linkage between the activity of mass media and the IEC activities in the field; and encourages the private sector to participate in the production of IEC media and materials. A media production center was set up and carries out the following activities: producing video cassettes for tv broadcasts of family planning drama, family planning news, and tv spots; producing duplicates of the video cassettes for distribution to provinces in support of the video network; producing teaching materials for family planning workers; and transfering family planning films into video cassettes. A video network was developed and includes video monitors in family planning service points such as hospitals, family planning clinics and public places like bus stations. In 1985, the program will be expanded by 50 mobile information units equipped with video monitors. Video has potentials to increase the productivity and effectiveness of the family planning program. The video production process is

  11. Testing a TheoRY-inspired MEssage ('TRY-ME'): a sub-trial within the Ontario Printed Educational Message (OPEM) trial

    PubMed Central

    Francis, Jillian J; Grimshaw, Jeremy M; Zwarenstein, Merrick; Eccles, Martin P; Shiller, Susan; Godin, Gaston; Johnston, Marie; O'Rourke, Keith; Presseau, Justin; Tetroe, Jacqueline

    2007-01-01

    Background A challenge for implementation researchers is to develop principles that could generate testable hypotheses that apply across a range of clinical contexts, thus leading to generalisability of findings. Such principles may be provided by systematically developed theories. The opportunity has arisen to test some of these theoretical principles in the Ontario Printed Educational Materials (OPEM) trial by conducting a sub-trial within the existing trial structure. OPEM is a large factorial cluster-randomised trial evaluating the effects of short directive and long discursive educational messages embedded into informed, an evidence-based newsletter produced in Canada by the Institute for Clinical Evaluative Sciences (ICES) and mailed to all primary care physicians in Ontario. The content of educational messages in the sub-trial will be constructed using both standard methods and methods inspired by psychological theory. The aim of this study is to test the effectiveness of the TheoRY-inspired MEssage ('TRY-ME') compared with the 'standard' message in changing prescribing behaviour. Methods The OPEM trial participants randomised to receive the short directive message attached to the outside of informed (an 'outsert') will be sub-randomised to receive either a standard message or a message informed by the theory of planned behaviour (TPB) using a two (long insert or no insert) by three (theory-based outsert or standard outsert or no outsert) design. The messages will relate to prescription of thiazide diuretics as first line drug treatment for hypertension (described in the accompanying protocol, "The Ontario Printed Educational Materials trial"). The short messages will be developed independently by two research teams. The primary outcome is prescription of thiazide diuretics, measured by routinely collected data available within ICES. The study is designed to answer the question, is there any difference in guideline adherence (i.e., thiazide prescription

  12. On the Conceptual Ambiguity Surrounding Perceived Message Effectiveness

    PubMed Central

    Yzer, Marco; LoRusso, Susan; Nagler, Rebekah H.

    2015-01-01

    Health message quality is best understood in terms of a message’s ability to effectively produce change in the variables that it was designed to change. The importance of determining a message’s effectiveness in producing change prior to implementation is clear: The better a message’s potential effectiveness is understood, the better able interventionists are to distinguish effective from ineffective messages before allocating scarce resources to message implementation. For this purpose, research has relied on perceived message effectiveness measures as a proxy of a message’s potential effectiveness. Remarkably, however, very little conceptual work has been done on perceived message effectiveness, which renders its measures under-informed and inconsistent across studies. To encourage greater conceptual work on this important construct, we review several threats to the validity of existing measures and consider strategies for improving our understanding of perceived message effectiveness. PMID:25470437

  13. Understanding health food messages on Twitter for health literacy promotion.

    PubMed

    Zhou, J; Liu, F; Zhou, H

    2018-05-01

    With the popularity of social media, Twitter has become an important tool to promote health literacy. However, many health-related messages on Twitter are dead-ended and cannot reach many people. This is unhelpful for health literacy promotion. This article aims to examine the features of online health food messages that people like to retweet. We adopted rumour theory as our theoretical foundation and extracted seven characteristics (i.e. emotional valence, attractiveness, sender's authoritativeness, external evidence, argument length, hashtags, and direct messages). A total of 10,025 health-related messages on Twitter were collected, and 1496 messages were randomly selected for further analysis. Each message was treated as one unit and then coded. All the hypotheses were tested with logistic regression. Emotional valence, attractiveness, sender's authoritativeness, argument length, and direct messages in a Twitter message had positive effects on people's retweet behaviour. The effect of external evidence was negative. Hashtags had no significant effect after consideration of other variables. Online health food messages containing positive emotions, including pictures, containing direct messages, having an authoritative sender, having longer arguments, or not containing external URLs are more likely to be retweeted. However, a message only containing positive or negative emotions or including direct messages without any support information will not be retweeted.

  14. Advanced Numerical Techniques of Performance Evaluation. Volume 2

    DTIC Science & Technology

    1990-06-01

    multiprocessor environment. This factor is determined by the overhead of the primitives available in the system ( semaphore , monitor , or message... semaphore , monitor , or message passing primitives ) and U the programming ability of the user who implements the simulation. " t,: the sequential...Warp Operating System . i Pro" lftevcnth ACM Symposum on Operating Systems Princlplcs, pages 77 9:3, Auslin, TX, Nov wicr 1987. ACM. [121 D.R. Jefferson

  15. AMS -- The Unix ADAM Message System

    NASA Astrophysics Data System (ADS)

    Kelly, B. D.; Chipperfield, A. J.

    The ADAM Message System (AMS) library, which implements the ADAM inter-task communications protocol under Unix, is described, along with its Fortran-callable interface (FAMS). The description of AMS is distinguished from the current implementation which uses the Message System Primitives (MSP).

  16. 78 FR 64202 - Quantitative Messaging Research

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-10-28

    ... COMMODITY FUTURES TRADING COMMISSION Quantitative Messaging Research AGENCY: Commodity Futures... survey will follow qualitative message testing research (for which CFTC received fast- track OMB approval... comments. Please submit your comments using only one method and identify that it is for the ``Quantitative...

  17. The Prodiguer Messaging Platform

    NASA Astrophysics Data System (ADS)

    Denvil, S.; Greenslade, M. A.; Carenton, N.; Levavasseur, G.; Raciazek, J.

    2015-12-01

    CONVERGENCE is a French multi-partner national project designed to gather HPC and informatics expertise to innovate in the context of running French global climate models with differing grids and at differing resolutions. Efficient and reliable execution of these models and the management and dissemination of model output are some of the complexities that CONVERGENCE aims to resolve.At any one moment in time, researchers affiliated with the Institut Pierre Simon Laplace (IPSL) climate modeling group, are running hundreds of global climate simulations. These simulations execute upon a heterogeneous set of French High Performance Computing (HPC) environments. The IPSL's simulation execution runtime libIGCM (library for IPSL Global Climate Modeling group) has recently been enhanced so as to support hitherto impossible realtime use cases such as simulation monitoring, data publication, metrics collection, simulation control, visualizations … etc. At the core of this enhancement is Prodiguer: an AMQP (Advanced Message Queue Protocol) based event driven asynchronous distributed messaging platform. libIGCM now dispatches copious amounts of information, in the form of messages, to the platform for remote processing by Prodiguer software agents at IPSL servers in Paris. Such processing takes several forms: Persisting message content to database(s); Launching rollback jobs upon simulation failure; Notifying downstream applications; Automation of visualization pipelines; We will describe and/or demonstrate the platform's: Technical implementation; Inherent ease of scalability; Inherent adaptiveness in respect to supervising simulations; Web portal receiving simulation notifications in realtime.

  18. Two antenna, two pass interferometric synthetic aperture radar

    DOEpatents

    Martinez, Ana; Doerry, Armin W.; Bickel, Douglas L.

    2005-06-28

    A multi-antenna, multi-pass IFSAR mode utilizing data driven alignment of multiple independent passes can combine the scaling accuracy of a two-antenna, one-pass IFSAR mode with the height-noise performance of a one-antenna, two-pass IFSAR mode. A two-antenna, two-pass IFSAR mode can accurately estimate the larger antenna baseline from the data itself and reduce height-noise, allowing for more accurate information about target ground position locations and heights. The two-antenna, two-pass IFSAR mode can use coarser IFSAR data to estimate the larger antenna baseline. Multi-pass IFSAR can be extended to more than two (2) passes, thereby allowing true three-dimensional radar imaging from stand-off aircraft and satellite platforms.

  19. 14 CFR 189.3 - Kinds of messages accepted or relayed.

    Code of Federal Regulations, 2012 CFR

    2012-01-01

    ... address: (1) Distress messages and distress traffic. (2) Messages concerning the safety of human life. (3) Flight safety messages concerning— (i) Air traffic control, including— (A) Messages concerning aircraft...

  20. A Study of Messages Received by Children Who Viewed an Episode of "The Harlem Globetrotters Popcorn Machine".

    ERIC Educational Resources Information Center

    Child Research Service, Inc., New York, NY.

    A total of 687 children, aged 7 through 11, was interviewed in fall, 1974 to determine the extent to which the Harlem Globetrotters Popcorn Machine television programs communicated "pro-social" messages to its audience. Viewers of four different episodes of the Globetrotters were questioned about the program they had seen. Among the…