987 resultados para proposed program


Relevância:

30.00% 30.00%

Publicador:

Resumo:

Description based on: Fiscal year 2001; title from cover.

Relevância:

30.00% 30.00%

Publicador:

Resumo:

Thesis (Master's)--University of Washington, 2016-06

Relevância:

30.00% 30.00%

Publicador:

Resumo:

The world is in a period of reflection about social and economic models. In particular there is a review of the capacities that countries have for improving their competitiveness. The experiences in a society are part of the process of learning and knowledge development in that society: especially in the development of communities. Risks appear continually in the process of the search for, analysis and implementation of solutions to problems. This paper discusses the issues related to the improvement of productivity and knowledge in a society, the risk that poor or even declining productivity brings to the communities and the need to develop people that support the decision making process in communities.The approach to improve the communities' development is through the design of a research programme in knowledge management based on distance learning. The research programme implementation is designed to provide value added to the decisions in communities in order to use collective intelligence, solve collective problems and to achieve goals that support local solutions. This program is organized and focused on four intelligence areas, artificial, collective, sentient and strategic. These areas are productivity related and seek to reduce the risk of lack of competitiveness through formal and integrated problem analysis. In a country such as Colombia, where different regions face varying problems to solve and there is a low level of infrastructure, the factors of production such as knowledge, skilled labour and "soft" infrastructure can be a way to develop the society.This entails using the local physical resources adequately for creating value with the support of people in the region to lead the analysis and search for solutions in the communities. The paper will describe the framework and programme and suggest how it could be applied in Colombia.

Relevância:

30.00% 30.00%

Publicador:

Resumo:

The population of older adults is rapidly increasing, creating a need for community services that assist vulnerable older adults in maintaining independence and quality of life. Recent evidence confirms the importance of food and nutrition in reaching this objective. The Elderly Nutrition Program (ENP) is part of a system of federally funded community based programs, authorized through the Older Americans Act. ENP services include the home-delivered meals program, which targets frail homebound older adults at nutritional risk. Traditionally, ENP services provide a noon meal 5 days/week. This study evaluated the impact of expanding the home-delivered meals service to include breakfast + lunch, on the nutritional status, quality of life and health care utilization of program participants. ^ This cross-sectional study compared 2 groups. The Breakfast group (n = 167) received a home-delivered breakfast + lunch, 5 days/week. The Comparison group (n = 214) received lunch 5 days/week. Participants, recruited from 5 ENP programs, formed a geographically, racially/ethnically diverse sample. Participants ranged in age from 60–100 years, they were functionally limited, at high nutritional risk, low income, and they lived alone and had difficulty shopping or preparing food. Participant data were collected through in-home interviews and program records. A 24-hour food recall and information on participant demographics, malnutrition risk, functional status, health care use, and applicable quality of life factors were obtained. Service and cost data were collected from program administrators. ^ Breakfast group participants had greater energy/nutrient intakes (p < .05), fewer health care contacts (p < .05), and greater quality of life measured as food security (p < .05) and fewer depressive symptoms (p < .05), than comparison group participants. These benefits were achieved for $1.30/person/day. ^ The study identified links from improvements in nutritional status to enhanced quality of life to diminished health care utilization and expenditures. A model of health, loneliness, food enjoyment, food insecurity, and depression as factors contributing to quality of life for this population, was proposed and tested (p < .01). ^ The breakfast service is an inexpensive addition to traditional home-delivered meals services and can improve the lives of frail homebound older adults. Agencies should be encouraged to expand meals programs to include a breakfast service. ^

Relevância:

30.00% 30.00%

Publicador:

Resumo:

Hospitality and tourism education programs are becoming increasingly popular, as is an increased demand for qualified faculty Tends suggest that an insufficient number of qualified candidates exist relative to the demand for new faculty appointments. The authors present a proposed model for newly developed doctoral programs in hospitality education and suggestions for administrators considering the development of terminal degree programs for hospitality educators.

Relevância:

30.00% 30.00%

Publicador:

Resumo:

The electronics industry, is experiencing two trends one of which is the drive towards miniaturization of electronic products. The in-circuit testing predominantly used for continuity testing of printed circuit boards (PCB) can no longer meet the demands of smaller size circuits. This has lead to the development of moving probe testing equipment. Moving Probe Test opens up the opportunity to test PCBs where the test points are on a small pitch (distance between points). However, since the test uses probes that move sequentially to perform the test, the total test time is much greater than traditional in-circuit test. While significant effort has concentrated on the equipment design and development, little work has examined algorithms for efficient test sequencing. The test sequence has the greatest impact on total test time, which will determine the production cycle time of the product. Minimizing total test time is a NP-hard problem similar to the traveling salesman problem, except with two traveling salesmen that must coordinate their movements. The main goal of this thesis was to develop a heuristic algorithm to minimize the Flying Probe test time and evaluate the algorithm against a "Nearest Neighbor" algorithm. The algorithm was implemented with Visual Basic and MS Access database. The algorithm was evaluated with actual PCB test data taken from Industry. A statistical analysis with 95% C.C. was performed to test the hypothesis that the proposed algorithm finds a sequence which has a total test time less than the total test time found by the "Nearest Neighbor" approach. Findings demonstrated that the proposed heuristic algorithm reduces the total test time of the test and, therefore, production cycle time can be reduced through proper sequencing.

Relevância:

30.00% 30.00%

Publicador:

Resumo:

Modern software applications are becoming more dependent on database management systems (DBMSs). DBMSs are usually used as black boxes by software developers. For example, Object-Relational Mapping (ORM) is one of the most popular database abstraction approaches that developers use nowadays. Using ORM, objects in Object-Oriented languages are mapped to records in the database, and object manipulations are automatically translated to SQL queries. As a result of such conceptual abstraction, developers do not need deep knowledge of databases; however, all too often this abstraction leads to inefficient and incorrect database access code. Thus, this thesis proposes a series of approaches to improve the performance of database-centric software applications that are implemented using ORM. Our approaches focus on troubleshooting and detecting inefficient (i.e., performance problems) database accesses in the source code, and we rank the detected problems based on their severity. We first conduct an empirical study on the maintenance of ORM code in both open source and industrial applications. We find that ORM performance-related configurations are rarely tuned in practice, and there is a need for tools that can help improve/tune the performance of ORM-based applications. Thus, we propose approaches along two dimensions to help developers improve the performance of ORM-based applications: 1) helping developers write more performant ORM code; and 2) helping developers configure ORM configurations. To provide tooling support to developers, we first propose static analysis approaches to detect performance anti-patterns in the source code. We automatically rank the detected anti-pattern instances according to their performance impacts. Our study finds that by resolving the detected anti-patterns, the application performance can be improved by 34% on average. We then discuss our experience and lessons learned when integrating our anti-pattern detection tool into industrial practice. We hope our experience can help improve the industrial adoption of future research tools. However, as static analysis approaches are prone to false positives and lack runtime information, we also propose dynamic analysis approaches to further help developers improve the performance of their database access code. We propose automated approaches to detect redundant data access anti-patterns in the database access code, and our study finds that resolving such redundant data access anti-patterns can improve application performance by an average of 17%. Finally, we propose an automated approach to tune performance-related ORM configurations using both static and dynamic analysis. Our study shows that our approach can help improve application throughput by 27--138%. Through our case studies on real-world applications, we show that all of our proposed approaches can provide valuable support to developers and help improve application performance significantly.

Relevância:

30.00% 30.00%

Publicador:

Resumo:

The James Webb Space Telescope (JWST) will likely revolutionize transiting exoplanet atmospheric science, due to a combination of its capability for continuous, long duration observations and its larger collecting area, spectral coverage, and spectral resolution compared to existing space-based facilities. However, it is unclear precisely how well JWST will perform and which of its myriad instruments and observing modes will be best suited for transiting exoplanet studies. In this article, we describe a prefatory JWST Early Release Science (ERS) Cycle 1 program that focuses on testing specific observing modes to quickly give the community the data and experience it needs to plan more efficient and successful transiting exoplanet characterization programs in later cycles. We propose a multi-pronged approach wherein one aspect of the program focuses on observing transits of a single target with all of the recommended observing modes to identify and understand potential systematics, compare transmission spectra at overlapping and neighboring wavelength regions, confirm throughputs, and determine overall performances. In our search for transiting exoplanets that are well suited to achieving these goals, we identify 12 objects (dubbed “community targets”) that meet our defined criteria. Currently, the most favorable target is WASP-62b because of its large predicted signal size, relatively bright host star, and location in JWST's continuous viewing zone. Since most of the community targets do not have well-characterized atmospheres, we recommend initiating preparatory observing programs to determine the presence of obscuring clouds/hazes within their atmospheres. Measurable spectroscopic features are needed to establish the optimal resolution and wavelength regions for exoplanet characterization. Other initiatives from our proposed ERS program include testing the instrument brightness limits and performing phase-curve observations. The latter are a unique challenge compared to transit observations because of their significantly longer durations. Using only a single mode, we propose to observe a full-orbit phase curve of one of the previously characterized, short-orbital-period planets to evaluate the facility-level aspects of long, uninterrupted time-series observations.

Relevância:

30.00% 30.00%

Publicador:

Resumo:

A list of proposed or added project to the 1999 Highway Accomplishment Program

Relevância:

30.00% 30.00%

Publicador:

Resumo:

Thesis (Ph.D, Computing) -- Queen's University, 2016-09-30 09:55:51.506

Relevância:

20.00% 20.00%

Publicador:

Relevância:

20.00% 20.00%

Publicador:

Resumo:

This paper examines empirically the relative influence of the degree of endangerment of wildlife species and their stated likeability on individuals' allocation of funds for their conservation. To do this, it utilises data obtained from the IUCN Red List, and likeability and fund allocation data obtained from two serial surveys of a sample of the Australian public who were requested to assess 24 Australian wildlife species from three animal classes: mammals, birds and reptiles. Between the first and second survey, respondents were provided with extra information about the focal species. This information resulted in the dominance of endangerment as the major influence on the allocation of funding of respondents for the conservation of the focal wildlife species. Our results throw doubts on the proposition in the literature that the likeability of species is the dominant influence on willingness to pay for conservation of wildlife species. Furthermore, because the public's allocation of fund for conserving wildlife species seems to be more sensitive to information about the conservation status of species than to factors influencing their likeability, greater attention to providing accurate information about the former than the latter seems justified. Keywords: Conservation of wildlife species; Contingent valuation; Endangerment of species; Likeability of species; Willingness to pay