932 resultados para Non-uniform flow


Relevância:

100.00% 100.00%

Publicador:

Resumo:

The strength of synaptic transmission is highly variable between different synapses. The present study examined some factors that may contribute to this variation in the strength of neurotransmission in sympathetic varicosities of the mouse vas deferens. Transmitter release was measured using a focal macropatch electrode placed over pairs of visualised varicosities. By regulating the calcium concentration of the solutions inside the recording electrode and in the bath independently of each other, transmitter release was restricted to one or two surface varicosities at each recording site. Using this technique, transmitter release probability was shown to be highly variable, even between adjacent varicosities on single axon branches. Very little variation was observed in the calcium influx following single impulse nerve stimulation between adjacent Oregon Green BAPTA-1 loaded varicosities. However, the staining intensities of three vesicular proteins, SV2, synaptophysin, and synaptotagmin 1, showed considerable variation between adjacent varicosities on single axon branches. This variation in staining intensity may be partly explained by variation in the density of synaptic vesicles. However, double staining experiments using two vesicular antigens showed some varicosities staining for one vesicular antigen, but not for the second, suggesting that the expression of these release machinery proteins is regulated locally within the varicosities. The results of the present study strengthen suggestions that synaptic strength is at least in part, regulated by variation in the expression of vesicular proteins. (C) 2004 Wiley-Liss, Inc.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The effects of channel inequality on nonlinear signal switching in a nonlinear optical fiber loop mirror (NOLM) were investigated. It was found that the channel-to-channel amplitude differences in optical time division multiplexing (OTDM) have strong impact on swiching behavior of individual channels in a 2R regenerator. The optical pulses in different channels face either suppression of the amplitude noise or increase in noise, depending on the inter-channel amplitude difference. It was stated that appropriate control of the channel uniformity in the OTDM transmitters is required to support stable long-haul transmission in 2R regenerated systems.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Non-uniform B-spline dictionaries on a compact interval are discussed in the context of sparse signal representation. For each given partition, dictionaries of B-spline functions for the corresponding spline space are built up by dividing the partition into subpartitions and joining together the bases for the concomitant subspaces. The resulting slightly redundant dictionaries are composed of B-spline functions of broader support than those corresponding to the B-spline basis for the identical space. Such dictionaries are meant to assist in the construction of adaptive sparse signal representation through a combination of stepwise optimal greedy techniques.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The impact of design of sharp non-uniform fiber Bragg gratings on system performance was presented. The evolution of the Q-value of the worst channel against the propagation distance was shown. The results suggested that to apply approximated flat-dispersion gratings as inline filters in a periodic system, some post-compensation was included to account for the extra dispersion introduced by the gratings.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Next-generation networks are likely to be non-uniform in all their aspects, including number of lightpaths carried per link, number of wavelengths per link, number of fibres per link, asymmetry of the links, and traffic flows. Routing and wavelength allocation models generally assume that the optical network is uniform and that the number of wavelengths per link is a constant. In practice however, some nodes and links carry heavy traffic and additional wavelengths are needed in those links. We study a wavelength-routed optical network based on the UK JANET topology where traffic demands between nodes are assumed to be non-uniform. We investigate how network capacity can be increased by locating congested links and suggesting cost-effective upgrades. Different traffic demands patterns, hop distances, number of wavelengths per link, and routing algorithms are considered. Numerical results show that a 95% increase in network capacity is possible by overlaying fibre on just 5% of existing links. We conclude that non-uniform traffic allocation can be beneficial to localize traffic in nodes and links deep in the network core and provisioning of additional resources there can efficiently and cost-effectively increase network capacity. © 2013 IEEE.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

This work was supported by the National Natural Science Foundation of China No. 51204148 and the Fundamental Research Funds for the Central Universities

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Cache-coherent non uniform memory access (ccNUMA) architecture is a standard design pattern for contemporary multicore processors, and future generations of architectures are likely to be NUMA. NUMA architectures create new challenges for managed runtime systems. Memory-intensive applications use the system’s distributed memory banks to allocate data, and the automatic memory manager collects garbage left in these memory banks. The garbage collector may need to access remote memory banks, which entails access latency overhead and potential bandwidth saturation for the interconnection between memory banks. This dissertation makes five significant contributions to garbage collection on NUMA systems, with a case study implementation using the Hotspot Java Virtual Machine. It empirically studies data locality for a Stop-The-World garbage collector when tracing connected objects in NUMA heaps. First, it identifies a locality richness which exists naturally in connected objects that contain a root object and its reachable set— ‘rooted sub-graphs’. Second, this dissertation leverages the locality characteristic of rooted sub-graphs to develop a new NUMA-aware garbage collection mechanism. A garbage collector thread processes a local root and its reachable set, which is likely to have a large number of objects in the same NUMA node. Third, a garbage collector thread steals references from sibling threads that run on the same NUMA node to improve data locality. This research evaluates the new NUMA-aware garbage collector using seven benchmarks of an established real-world DaCapo benchmark suite. In addition, evaluation involves a widely used SPECjbb benchmark and Neo4J graph database Java benchmark, as well as an artificial benchmark. The results of the NUMA-aware garbage collector on a multi-hop NUMA architecture show an average of 15% performance improvement. Furthermore, this performance gain is shown to be as a result of an improved NUMA memory access in a ccNUMA system. Fourth, the existing Hotspot JVM adaptive policy for configuring the number of garbage collection threads is shown to be suboptimal for current NUMA machines. The policy uses outdated assumptions and it generates a constant thread count. In fact, the Hotspot JVM still uses this policy in the production version. This research shows that the optimal number of garbage collection threads is application-specific and configuring the optimal number of garbage collection threads yields better collection throughput than the default policy. Fifth, this dissertation designs and implements a runtime technique, which involves heuristics from dynamic collection behavior to calculate an optimal number of garbage collector threads for each collection cycle. The results show an average of 21% improvements to the garbage collection performance for DaCapo benchmarks.