81 resultados para Latex-based Portland cement system


Relevância:

100.00% 100.00%

Publicador:

Resumo:

If a company or person wants to invest a lot of money, where, when, and how should the investment go? A multi-agent based Financial Investment Planner may give some reasonable answers to the above question. Good advice is mainly based on adequate information, rich knowledge, and great
skills to use knowledge and information. To this end, this planner consists of four principal components information gathering agents that are responsible for gathering relevant information on the Internet, data mining agents that are in charge of discovering knowledge from retrieved information as well as other relevant databases, group decision making agents that can effectively use available knowledge and appropriate information to make reasonable decisions (investment advice), and a graphical user interface that interacts with users. This paper is focused on the group decision making part. The design and implementation of an agent-based hybrid intelligent system - agent-based soft computing society are detailed.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

One of the major challenges in asynchronous collaborative environment is to provide a sense of awareness of other users actions. The amount of awareness needed varies due to specific roles users undertaking during collaboration. While emphasizing the importance of roles, this paper discusses awareness-role relationship and proposes a role-based approach to specifying the awareness characteristics in asynchronous collaborative environment. An example of implementation of role-based awareness supporting system LiveNet4 is also illustrated at the end of this paper.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Waste exchange is as a facilitator for construction and demolition waste deduction by reuse and recycling in construction projects. The just-in-time philosophy, which has been well cultivated in the manufacturing industry, is highly adoptable for demolition projects. Particularly, waste exchange that is usually performed after the actual demolition process can be shifted forward so that waste inventory from demolition is eliminated or reduced to facilitate waste reuse and recycling. A web-based waste exchange system is an ideal platform to enable communications among project participants before a demolition project commences so that waste materials can be sold before they are produced. Therefore, the productivity of the demolition project could be improved. This research paper aims to investigate and analyse the adoption of just-in-time philosophy in building demolition project management. It also describes the development of the proposed web-based waste exchange system that implements just-in-time demolition in detail, including its functionalities, information flows and major components.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

A common architecture in today's development of distributed systems is the service-oriented architecture (SOA) implemented using Web services. Until recently, it was difficult to build a SOA based grid/distributed system using Web services due to the inability to learn the state of services. The state of a Web service could only be accessed through specialized clients and/or services. Should the specialized client or service fail, the state can't be accessed. This paper shows the innovative resources via Web instances (RVWI) framework. RVWI grants to web services the ability to show the state of dynamic resources in their WSDL. This was achieved via software components called connectors which watch for any changes in a resource and updates the web service. The significance of this report is the support for resources which can change state between requests and the innovation is the improvement of state updates between the service and discovery services.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The future of computing lies with distributed systems, i.e. a network of workstations controlled by a modern distributed operating system. By supporting load balancing and parallel execution, the overall performance of a distributed system can be improved dramatically. Process migration, the act of moving a running process from a highly loaded machine to a lightly loaded machine, could be used to support load balancing, parallel execution, reliability etc. This thesis identifies the problems past process migration facilities have had and determines the possible differing strategies that can be used to resolve these problems. The result of this analysis has led to a new design philosophy. This philosophy requires the design of a process migration facility and the design of an operating system to be conducted in parallel. Modern distributed operating systems follow the microkernel and client/server paradigms. Applying these design paradigms, in conjunction with the requirements of both process migration and a distributed operating system, results in a system where each resource is controlled by a separate server process. However, a process is a complex resource composed of simple resources such as data structures, an address space and communication state. For this reason, a process migration facility does not directly migrate the resources of a process. Instead, it requests the appropriate servers to transfer the resources. This novel solution yields a modular, high performance facility that is easy to create, debug and maintain. Furthermore, the design easily incorporates providing multiple migration strategies. In order to verify the validity of this design, a process migration facility was developed and tested within RHODOS (ResearcH Oriented Distributed Operating System). RHODOS is a modern microkernel and client/server based distributed operating system. In RHODOS, a process is composed of at least three separate resources: process state - maintained by a process manager, address space - maintained by a memory manager and communication state - maintained by an InterProcess Communication Manager (IPCM). The RHODOS multiple strategy migration manager utilises the services of the process, memory and IPC Managers to migrate the resources of a process. Performance testing of this facility indicates that this design is as fast or better than existing systems which use faster hardware. Furthermore, by studying the results of the performance test ing, the conditions under which a particular strategy should be employed have been identified. This thesis also addresses heterogeneous process migration. The current trend is to have islands of homogeneous workstations amid a sea of heterogeneity. From this situation and the current literature on the topic, heterogeneous process migration can be seen as too inefficient for general use. Instead, only homogeneous workstations should be used for process migration. This implies a need to locate homogeneous workstations. Entities called traders, which store and disseminate knowledge about the resources of several workstations, should be used to provide resource discovery. Resource discovery will enable the detection of homogeneous workstations to which processes can be migrated.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Shared clusters represent an excellent platform for the execution of parallel applications given their low price/performance ratio and the presence of cluster infrastructure in many organisations. The focus of recent research efforts are on parallelism management, transport and efficient access to resources, and making clusters easy to use. In this thesis, we examine reliable parallel computing on clusters. The aim of this research is to demonstrate the feasibility of developing an operating system facility providing transport fault tolerance using existing, enhanced and newly built operating system services for supporting parallel applications. In particular, we use existing process duplication and process migration services, and synthesise a group communications facility for use in a transparent checkpointing facility. This research is carried out using the methods of experimental computer science. To provide a foundation for the synthesis of the group communications and checkpointing facilities, we survey and review related work in both fields. For group communications, we examine the V Distributed System, the x-kernel and Psync, the ISIS Toolkit, and Horus. We identify a need for services that consider the placement of processes on computers in the cluster. For Checkpointing, we examine Manetho, KeyKOS, libckpt, and Diskless Checkpointing. We observe the use of remote computer memories for storing checkpoints, and the use of copy-on-write mechanisms to reduce the time to create a checkpoint of a process. We propose a group communications facility providing two sets of services: user-oriented services and system-oriented services. User-oriented services provide transparency and target application. System-oriented services supplement the user-oriented services for supporting other operating systems services and do not provide transparency. Additional flexibility is achieved by providing delivery and ordering semantics independently. An operating system facility providing transparent checkpointing is synthesised using coordinated checkpointing. To ensure a consistent set of checkpoints are generated by the facility, instead of blindly blocking the processes of a parallel application, only non-deterministic events are blocked. This allows the processes of the parallel application to continue execution during the checkpoint operation. Checkpoints are created by adapting process duplication mechanisms, and checkpoint data is transferred to remote computer memories and disk for storage using the mechanisms of process migration. The services of the group communications facility are used to coordinate the checkpoint operation, and to transport checkpoint data to remote computer memories and disk. Both the group communications facility and the checkpointing facility have been implemented in the GENESIS cluster operating system and provide proof-of-concept. GENESIS uses a microkernel and client-server based operating system architecture, and is demonstrated to provide an appropriate environment for the development of these facilities. We design a number of experiments to test the performance of both the group communications facility and checkpointing facility, and to provide proof-of-performance. We present our approach to testing, the challenges raised in testing the facilities, and how we overcome them. For group communications, we examine the performance of a number of delivery semantics. Good speed-ups are observed and system-oriented group communication services are shown to provide significant performance advantages over user-oriented semantics in the presence of packet loss. For checkpointing, we examine the scalability of the facility given different levels of resource usage and a variable number of computers. Low overheads are observed for checkpointing a parallel application. It is made clear by this research that the microkernel and client-server based cluster operating system provide an ideal environment for the development of a high performance group communications facility and a transparent checkpointing facility for generating a platform for reliable parallel computing on clusters.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The Gippsland Lakes region in eastern Victoria is a partially flushed coastal lake system within a diverse catchment of rural and urban communities. Pressure from lakeside developments, re-occurring blue-green algal blooms, declining fisheries, sedimentation and infilling of the ocean entrance, has borne several decades of focussed studies and routine monitoring programs, along with a variety of engineering and management solutions. A recent review recommended that these disparate studies should be enhanced to formulate a coordinated monitoring network that could improve both spatial and temporal coverage, develop a capacity to trigger responsive investigations and was able to serve the needs of system management. Through a series of partnerships an integrated network was developed that comprises event and baseline monitoring of catchment loads, local meteorological forcing and an array of water quality sampling sites within the lakes system. A majority of these sites are incorporated with real-time telemetry that provides up to the minute information to stakeholders via a web-based information management system and vital operational status to technical system management.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

This work evaluates the feasibility of using a holistic approach, based on dynamical system theory,
to reduce porosity defects in high pressure aluminum die casting. Quality improvements, from a
dynamical system perspective mean the ability to move the die casting process out of its natural
equilibrium to a more beneficial state and the ability to maintain this new process state. This more beneficial state may be achieved in several ways. One way is to increase the amount of forcing to overcome natural process resistance. This forcing approach is represented by typical continuous intervention policy, with modifications in die/part design and/or process parameters. An alternative approach is to reduce the amount of natural process resistance, in particular the amount of process disturbance, allowing the process to move out of its natural equilibrium with much less forcing. This alternative uses the self-regulating ability of dynamical systems thus decreasing the amount of human intervention required. In this respect, the influence of vacuum on time on chattering at the first stage of the casting shot was identified as a good process candidate for testing using dynamical system theory. A significant reduction in porosity defects was achieved, which also set the process on a path of slow but consistent self-improvement.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

While SQL injection attacks have been plaguing web applications for years the threat they pose to RFID systems have only identified recently. Because the architecture of web systems and RFID systems differ considerably the prevention and detection techniques proposed for web applications are not suitable for RFID systems. In this paper we propose a system to secure RFID systems against tag based SQLIA. Our system is optimized for the architecture of RFID systems and consists of a query structure matching technique and tag data cleaning technique. The novelty of the proposed system is that it's specifically aimed at RFID systems and has the ability to detect and prevent second order injections which is a problem most current solutions haven't addressed. The preliminary evaluation of our query matching technique is very promising showing very high detection rate with minimal false positives.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Although tagging has become increasingly popular in online image and video sharing systems, tags are known to be noisy, ambiguous, incomplete and subjective. These factors can seriously affect the precision of a social tag-based web retrieval system. Therefore improving the precision performance of these social tag-based web retrieval systems has become an increasingly important research topic. To this end, we propose a shared subspace learning framework to leverage a secondary source to improve retrieval performance from a primary dataset. This is achieved by learning a shared subspace between the two sources under a joint Nonnegative Matrix Factorization in which the level of subspace sharing can be explicitly controlled. We derive an efficient algorithm for learning the factorization, analyze its complexity, and provide proof of convergence. We validate the framework on image and video retrieval tasks in which tags from the LabelMe dataset are used to improve image retrieval performance from a Flickr dataset and video retrieval performance from a YouTube dataset. This has implications for how to exploit and transfer knowledge from readily available auxiliary tagging resources to improve another social web retrieval system. Our shared subspace learning framework is applicable to a range of problems where one needs to exploit the strengths existing among multiple and heterogeneous datasets.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Offline handwritten recognition is more challenging as indicated by the recognition technologies. This study demonstrates significantly higher rates recognition when compared with other comparable studies. In this paper, we present a circular grid zoning method applied on Polar transformation recognition system. It compares the circular grid zoning (CGZ) and standard zoning (SZ) feature extraction method on Polar and Cartesian coordinate system. We report recognition rates of 92.3%, which are considerably higher than previous studies of zoning based Polar transformation system (86.6%) and zoning based Cartesian recognition system (80.6%). Based on the finding, we propose that our circular grid zoning based Polar transformation system may provide improved classification rates for complex offline handwritten recognition.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

In this paper, a new image segmentation approach that integrates color and texture features using the fuzzy c-means clustering algorithm is described. To demonstrate the applicability of the proposed approach to satellite image retrieval, an interactive region-based image query system is designed and developed. A database comprising 400 multispectral satellite images is used to evaluate the performance of the system. The results are analyzed and discussed, and a performance comparison with other methods is included. The outcomes reveal that the proposed approach is able to improve the quality of the segmentation results as well as the retrieval performance.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

This paper presents the development of a keystroke dynamics-based user authentication system using the ARTMAP-FD neural network. The effectiveness of ARTMAPFD in classifying keystroke patterns is analyzed and compared against a number of widely used machine learning systems. The results show that ARTMAP-FD performs well against many of its counterparts in keystroke patterns classification. Apart from that, instead of using the conventional typing timing characteristics, the applicability of typing pressure to ascertaining user's identity is investigated. The experimental results show that combining both latency and pressure patterns can improve the Equal Error Rate (ERR) of the system.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

One of the fundamental knowledge management questions is how organizations can use their knowledge to create value. There is general agreement that knowledge management should add value. It is not clear, however, what value means in the context of knowledge management and how it is created. This fundamental question is complex as value has different meanings to different people. Understanding value in the context of KM will lead to better understanding of the potential sources of value creation from knowledge management and better management of knowledge assets. It will inform the measurement of knowledge and its impacts on organizations. It will lead to recognition of the contribution of knowledge assets to organizational success.

This paper provides a review of prior research on value creation and how this can improve the understanding of value in the context of knowledge management. Based on this review it poses questions to explore value creation in the context of knowledge management. It then reports on preliminary analysis of a case study of a process-based knowledge management system and the expressions of value, value creating actions and value capture as perceived by different stakeholders.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Shortage of functional groups on surface of poly(lactide-co-glycolide) (PLGA)-based drug delivery carriers always hampers its wide applications such as passive targeting and conjugation with targeting molecules. In this research, PLGA nanoparticles were modified with chitosan through physical adsorption and chemical binding methods. The surface charges were regulated by altering pH value in chitosan solutions. After the introduction of chitosan, zeta potential of the PLGA nanoparticle surface changed from negative charge to positive one, making the drug carriers more affinity to cancer cells. Functional groups were compared between PLGA nanoparticles and chitosan-modified PLGA nanoparticles. Amine groups were exhibited on PLGA nanoparticle surface after the chitosan modification as confirmed by Fourier transform infrared spectroscopy and X-ray photoelectron spectroscopy. The modified nanoparticles showed an initial burst release followed by a moderate and sustained release profile. Higher percentage of drugs from cumulative release can be achieved in the same prolonged time range. Therefore, PLGA nanoparticles modified by chitosan showed versatility of surface and a possible improvement in the efficacy of current PLGA-based drug delivery system.