999 resultados para distance dependence


Relevância:

20.00% 20.00%

Publicador:

Resumo:

We present a comprehensive numerical study of the dynamics of an intense laser pulse as it propagates through an underdense plasma in two and three dimensions. By varying the background plasma density and the polarization of the laser beam, significant differences are found in terms of energy transport and dissipation, in agreement with recently reported experimental results. Below the threshold for relativistic self-focusing, the plasma and laser dynamics are observed to be substantially insensitive to the initial laser polarization, since laser transport is dominated by ponderomotive effects. Above this threshold, relativistic effects become important, and laser energy is dissipated either by plasma heating (p-polarization) or by trapping of electromagnetic energy into plasma cavities (s-polarization) or by a combination of both (circular polarization). Besides the fundamental interest of this study, the results presented are relevant to applications such as plasma-based accelerators, x-ray lasers, and fast-ignition inertial confinement fusion. (C) 2012 American Institute of Physics. [http://dx.doi.org/10.1063/1.4737151]

Relevância:

20.00% 20.00%

Publicador:

Resumo:

The dielectric properties of pharmaceutical powder-(paracetamol, aspirin, lactose, maize starch, adipic acid) solvent (water) mixtures were measured at 2,450 MHz at a range of moisture contents (0-1.0 kg kg(-1), dry basis) and temperatures (20-70 A degrees C). The dielectric constant (epsilon'), loss factor (epsilon aEuro(3)) and penetration depth (d (p)) were found to be dependent on frequency, moisture content, temperature and powder type. For powder-water mixtures, a linear increase in the dielectric properties with moisture content was observed, whilst the temperature dependence was of quadratic form. The penetration depth was also significantly affected by temperature and moisture content. Although, epsilon aEuro(3) also increased with increasing temperature, variation with moisture content was temperature dependent. This information on dielectric properties is essential for mathematical description of the pharmaceutical product temperature history during microwave heating and for the design of microwave drying equipment.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

We present BDDT, a task-parallel runtime system that dynamically discovers and resolves dependencies among parallel tasks. BDDT allows the programmer to specify detailed task footprints on any memory address range, multidimensional array tile or dynamic region. BDDT uses a block-based dependence analysis with arbitrary granularity. The analysis is applicable to existing C programs without having to restructure object or array allocation, and provides flexibility in array layouts and tile dimensions.
We evaluate BDDT using a representative set of benchmarks, and we compare it to SMPSs (the equivalent runtime system in StarSs) and OpenMP. BDDT performs comparable to or better than SMPSs and is able to cope with task granularity as much as one order of magnitude finer than SMPSs. Compared to OpenMP, BDDT performs up to 3.9× better for benchmarks that benefit from dynamic dependence analysis. BDDT provides additional data annotations to bypass dependence analysis. Using these annotations, BDDT outperforms OpenMP also in benchmarks where dependence analysis does not discover additional parallelism, thanks to a more efficient implementation of the runtime system.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

Three studies tested the conditions under which people judge utilitarian harm to be authority dependent (i.e., whether its right or wrongness depends on the ruling of an authority). In Study 1, participants judged the right or wrongness of physical abuse when used as an interrogation method anticipated to yield useful information for preventing future terrorist attacks. The ruling of the military authority towards the harm was manipulated (prohibited vs. prescribed) and found to significantly influence judgments of the right or wrongness of inflicting harm. Study 2 established a boundary condition with regards to the influence of authority, which was eliminated when the utility of the harm was definitely obtained rather than forecasted. Finally, Study 3 replicated the findings of Studies 1-2 in a completely different context—an expert committee’s ruling about the harming of chimpanzees for biomedical research. These results are discussed as they inform ongoing debates regarding the role of authority in moderating judgments of complex and simple harm. 2013 Elsevier B.V. © All rights reserved.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

This paper reports one of the first investigations to analyze inter-partner perceptions of psychic distance between two countries. Its empirical focus is British and Indian SMEs engaged in business with each other. It examines different dimensions of psychic distance, their impact and modes of coping with them. Potential firm-level and individual influences are also taken into account. The paper aims to transcend some of the conceptual and methodological limitations of previous research on the subject and to identify the theoretical and practical implications that arise. A ‘mirror’ approach is applied, accessing both partners’ perceptions. These are assessed through a ‘mixed’ method combining quantitative measurement with qualitative interpretations. Psychic distance dimensions are found to vary in their impact on doing business with the other country, and there is also variation according to the firm’s sector. There is considerable asymmetry in British and Indian partners’ perceptions of psychic distance but the degree of difference between their psychic distance evaluations lacks predictive power. Culturally embedded psychic distance dimensions tend to have less impact and to be easier to cope with than institutionally embedded dimensions. Four categories of coping are identified. The principal theoretical implication of this study is that a contingency perspective needs to be adopted in the field of ‘distance’ research, taking account of factors such as a firm’s sector, and that this will require a more complex analytical framework that hitherto.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

This mixed methods study investigated language learning motivation in an one-year e-learning course for technological university students to bridge the geographical divide between students on industrial placements when studying graded readers using an e-learning course to improve their English competence and to pass the General English Proficiency Test. Data was collected through questionnaires and course feedback. The results of this study extend Gardner’s socio-educational model in an e-learning environment by adding the new category, Computer Attitudes, which was proven to be highly correlated with Motivation. Although the low proficiency English students had good computer skills, their habits of using the computer for entertainment and their lack of the skill of “technological communication efficacy” caused increased anxiety when using computers and thus provided them with a lower computer confidence over time. Consequently, it is recommended that sound e-learning training should be provided to all of the students prior to embarking on an e-leaning course so that these learners can benefit from online language learning in the future.

Relevância:

20.00% 20.00%

Publicador:

Relevância:

20.00% 20.00%

Publicador:

Resumo:

Processor architectures has taken a turn towards many-core processors, which integrate multiple processing cores on a single chip to increase overall performance, and there are no signs that this trend will stop in the near future. Many-core processors are harder to program than multi-core and single-core processors due to the need of writing parallel or concurrent programs with high degrees of parallelism. Moreover, many-cores have to operate in a mode of strong scaling because of memory bandwidth constraints. In strong scaling increasingly finer-grain parallelism must be extracted in order to keep all processing cores busy.

Task dataflow programming models have a high potential to simplify parallel program- ming because they alleviate the programmer from identifying precisely all inter-task de- pendences when writing programs. Instead, the task dataflow runtime system detects and enforces inter-task dependences during execution based on the description of memory each task accesses. The runtime constructs a task dataflow graph that captures all tasks and their dependences. Tasks are scheduled to execute in parallel taking into account dependences specified in the task graph.

Several papers report important overheads for task dataflow systems, which severely limits the scalability and usability of such systems. In this paper we study efficient schemes to manage task graphs and analyze their scalability. We assume a programming model that supports input, output and in/out annotations on task arguments, as well as commutative in/out and reductions. We analyze the structure of task graphs and identify versions and generations as key concepts for efficient management of task graphs. Then, we present three schemes to manage task graphs building on graph representations, hypergraphs and lists. We also consider a fourth edge-less scheme that synchronizes tasks using integers. Analysis using micro-benchmarks shows that the graph representation is not always scalable and that the edge-less scheme introduces least overhead in nearly all situations.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

This study uses a discrete choice experiment (DCE) to elicit willingness to pay estimates for changes in the water quality of three rivers. As many regions the metropolitan region Berlin-Brandenburg struggles to achieve the objectives of the Water Framework Directive until 2015. A major problem is the high load of nutrients. As the region is part of two states (Länder) and the river sections are common throughout the whole region we account for the spatial context twofold. Firstly, we incorporate the distance between each respondent and all river stretches in all MNL and RPL models, and, secondly, we consider whether respondents reside in the state of Berlin or Brandenburg. The compensating variation (CV) calculated for various scenarios shows that overall people would significantly benefit from improved water quality. The CV measures, however, also reveal that not considering the spatial context would result in severely biased welfare measures. While the distance decay effect lowers CV, state residency is connected to the frequency of status quo choices and not accounting for residency would underestimate possible welfare gains in one state. Another finding is that the extent of the market varies with respect to attributes (river stretches) and attribute levels (water quality levels).

Relevância:

20.00% 20.00%

Publicador:

Resumo:

The behaviour of syntactic foam is strongly dependent on temperature and strain rate. This research focuses on the behaviour of syntactic foam made of epoxy and glass microballoons in the glassy, transition and rubbery regions. Both epoxy and epoxy foam are investigated separately under tension and shear loadings in order to study the strain rate and temperature effects. The results indicate that the strength and strain to failure data can be collapsed onto master curves depending on temperature reduced strain rate. The highest strain to failure occurs in the transition zone. The presence of glass microballoons reduces the strain to failure over the entire range considered, an effect that is particularly significant under tensile loading. However, as the microballoons increase the elastic modulus significantly in the rubbery zone but reduce it somewhat in the glassy zone, the effect on the strength is more complicated. Different failure mechanisms are identified over the temperature-frequency range considered. As the temperature reduced strain rate is decreased, the failure mechanism changes from microballoon fracture to matrix fracture and debonding between the matrix and microballoons. © IMechE 2012.