930 resultados para harvest scheduling
Resumo:
Brazil is the world’s largest orange producer; however, part of this production is lost during postharvest. This loss can be minimized by controlling incidence of physical damage throughout the harvest and loading operations. Impacts can negatively modify quantitative and qualitative fruits aspects. The main goal of this study was to measure the impact magnitude in two types of harvest (manual and detachment) and during all steps from picking into bags until loading for transport to the processing industry and additionally evaluating, in laboratory, the physico-chemical quality of the fruit subjected to various impacts, similar to those found in the field. In order to evaluate the impact magnitude, an instrumented sphere was used (760 mm, Techmark, Inc, USA). The following physico-chemical parameters were evaluated during 6-days of storage: weight loss, soluble solids contents, titratable acidity, ascorbic acid content, pH, firmness and peel color. The greatest impacts were observed during harvest, during the detachment practice, and when loading and unloading from bulk storage, with average acceleration values between 249.5 and 531.52G. The impact incidence in oranges were responsible for reducing the soluble solids, titratable acidity, ascorbic acid and weight by to 5.5%; 8.7%; 4.6% and 0.5%, respectively, compared to the control. Impacts during harvest and the various pre-industry manipulation steps must be controlled as they interfere in postharvest quality and physiology of ‘Valência’ oranges.
Resumo:
ABSTRACT Soy harvest matches seasons with shortage of dry matter supply for ruminant feeding in most Brazilian soy-growing areas. Agricultural machinery-producing companies must have market perception, observing new opportunities and developing equipment to meet costumers’ needs. This paper aims to design, build, and test a device to collect soybean crop residues from the combine cleaning mechanism, consisting mainly of vegetable straw (chaff), and the other plant parts (stems) remain being deposited onto the ground. For equipment designing, we made use of the architectural design methodology proposed in the reference model for the agricultural machinery development process. The equipment was designed and built following the proposed methodology, then installed and put into operation in a John Deere 1165 combine. After initial testing and few adjustments, the device showed satisfactory chaff-collecting performance. The equipment consists of a screw conveyor assembled transversely to the combine and a centrifugal fan assembled on the side. The collected chaff is dumped into a trailer towed by tractor.
Resumo:
ABSTRACT This paper aims at evaluating the shelf life of mini tomatoes (Lycopersicum esculentum Mill.) cultivar ‘Sweet Grape’, grown in hydroponics, and stored under environmental and refrigerated conditions inside different packages. We adopted a completely randomized design, in which treatments were combinations of storage conditions: environment (e) and refrigerated (r) with packaging: polyvinyl chloride film (PVC); low-density polyethylene (LDPE); biofilm of tomato fruit of Solanum lycocarpum A.St.-Hil (lobeira) (TFB); cassava starch biofilm (CSB); carnauba wax (Copernicia prunifera) (CW), and without packaging - control (C). Physicochemical and sensory tests were carried out at the beginning (day zero), and at 8, 19, and 33 days of storage (DS). Fruit stored inside PVCr, LDPEe, LDPEr, and CWr had an acceptable shelf life of 33 days. The use of cassava and tomato starches were not effective in controlling fruit fresh weight loss. ‘Sweet Grape’ tomato postharvest conservation was enhanced under refrigerated conditions. The sensory evaluation results revealed that CWr treatment most pleased appraisers, while PCV had the highest rejection rate.
Resumo:
The maintenance of electric distribution network is a topical question for distribution system operators because of increasing significance of failure costs. In this dissertation the maintenance practices of the distribution system operators are analyzed and a theory for scheduling maintenance activities and reinvestment of distribution components is created. The scheduling is based on the deterioration of components and the increasing failure rates due to aging. The dynamic programming algorithm is used as a solving method to maintenance problem which is caused by the increasing failure rates of the network. The other impacts of network maintenance like environmental and regulation reasons are not included to the scope of this thesis. Further the tree trimming of the corridors and the major disturbance of the network are not included to the problem optimized in this thesis. For optimizing, four dynamic programming models are presented and the models are tested. Programming is made in VBA-language to the computer. For testing two different kinds of test networks are used. Because electric distribution system operators want to operate with bigger component groups, optimal timing for component groups is also analyzed. A maintenance software package is created to apply the presented theories in practice. An overview of the program is presented.
Resumo:
Formal methods provide a means of reasoning about computer programs in order to prove correctness criteria. One subtype of formal methods is based on the weakest precondition predicate transformer semantics and uses guarded commands as the basic modelling construct. Examples of such formalisms are Action Systems and Event-B. Guarded commands can intuitively be understood as actions that may be triggered when an associated guard condition holds. Guarded commands whose guards hold are nondeterministically chosen for execution, but no further control flow is present by default. Such a modelling approach is convenient for proving correctness, and the Refinement Calculus allows for a stepwise development method. It also has a parallel interpretation facilitating development of concurrent software, and it is suitable for describing event-driven scenarios. However, for many application areas, the execution paradigm traditionally used comprises more explicit control flow, which constitutes an obstacle for using the above mentioned formal methods. In this thesis, we study how guarded command based modelling approaches can be conveniently and efficiently scheduled in different scenarios. We first focus on the modelling of trust for transactions in a social networking setting. Due to the event-based nature of the scenario, the use of guarded commands turns out to be relatively straightforward. We continue by studying modelling of concurrent software, with particular focus on compute-intensive scenarios. We go from theoretical considerations to the feasibility of implementation by evaluating the performance and scalability of executing a case study model in parallel using automatic scheduling performed by a dedicated scheduler. Finally, we propose a more explicit and non-centralised approach in which the flow of each task is controlled by a schedule of its own. The schedules are expressed in a dedicated scheduling language, and patterns assist the developer in proving correctness of the scheduled model with respect to the original one.
Resumo:
The underground organs of Vernonia herbacea (Vell.) Rusby, known as rhizophores, acumulate 80% of their dry mass as fructans of the inulin type. In view of the growing industrial use of fructans as dietetic and general food products, and of their medical application, the present investigation aimed at evaluating the effect of mineral fertilization and period of cultivation on the production of these carbohydrates in field trials. Plants used in the experiments were obtained by vegetative propagation from rhizophores collected from plants growing in natural areas of the cerrado, and cultivated for two years. Fertilization consisted of N:P2O5:K2O (80:200:150 kg.ha-1) plus 80 kg.ha-1 nitrogen as dressing. Soil fertilization did not stimulate biomass or inulin production, but in the second year of cultivation a dramatic gain in biomass and inulin was detected in both treated and control plants. Inulin production varied from 113 to 674 kg.ha-1 which corresponds to 43% of the rhizophore dry mass. The composition of fructans was not altered by fertilization, although treated plants had a higher proportion of sucrose and fructans with degree of polymerization 3-8 in the second year of cultivation. The results identify this species as a fructan source similar to other commercial crops and recommend further agronomic studies, aimed at increasing the production of this polysaccharide.
Resumo:
With the shift towards many-core computer architectures, dataflow programming has been proposed as one potential solution for producing software that scales to a varying number of processor cores. Programming for parallel architectures is considered difficult as the current popular programming languages are inherently sequential and introducing parallelism is typically up to the programmer. Dataflow, however, is inherently parallel, describing an application as a directed graph, where nodes represent calculations and edges represent a data dependency in form of a queue. These queues are the only allowed communication between the nodes, making the dependencies between the nodes explicit and thereby also the parallelism. Once a node have the su cient inputs available, the node can, independently of any other node, perform calculations, consume inputs, and produce outputs. Data ow models have existed for several decades and have become popular for describing signal processing applications as the graph representation is a very natural representation within this eld. Digital lters are typically described with boxes and arrows also in textbooks. Data ow is also becoming more interesting in other domains, and in principle, any application working on an information stream ts the dataflow paradigm. Such applications are, among others, network protocols, cryptography, and multimedia applications. As an example, the MPEG group standardized a dataflow language called RVC-CAL to be use within reconfigurable video coding. Describing a video coder as a data ow network instead of with conventional programming languages, makes the coder more readable as it describes how the video dataflows through the different coding tools. While dataflow provides an intuitive representation for many applications, it also introduces some new problems that need to be solved in order for data ow to be more widely used. The explicit parallelism of a dataflow program is descriptive and enables an improved utilization of available processing units, however, the independent nodes also implies that some kind of scheduling is required. The need for efficient scheduling becomes even more evident when the number of nodes is larger than the number of processing units and several nodes are running concurrently on one processor core. There exist several data ow models of computation, with different trade-offs between expressiveness and analyzability. These vary from rather restricted but statically schedulable, with minimal scheduling overhead, to dynamic where each ring requires a ring rule to evaluated. The model used in this work, namely RVC-CAL, is a very expressive language, and in the general case it requires dynamic scheduling, however, the strong encapsulation of dataflow nodes enables analysis and the scheduling overhead can be reduced by using quasi-static, or piecewise static, scheduling techniques. The scheduling problem is concerned with nding the few scheduling decisions that must be run-time, while most decisions are pre-calculated. The result is then an, as small as possible, set of static schedules that are dynamically scheduled. To identify these dynamic decisions and to find the concrete schedules, this thesis shows how quasi-static scheduling can be represented as a model checking problem. This involves identifying the relevant information to generate a minimal but complete model to be used for model checking. The model must describe everything that may affect scheduling of the application while omitting everything else in order to avoid state space explosion. This kind of simplification is necessary to make the state space analysis feasible. For the model checker to nd the actual schedules, a set of scheduling strategies are de ned which are able to produce quasi-static schedulers for a wide range of applications. The results of this work show that actor composition with quasi-static scheduling can be used to transform data ow programs to t many different computer architecture with different type and number of cores. This in turn, enables dataflow to provide a more platform independent representation as one application can be fitted to a specific processor architecture without changing the actual program representation. Instead, the program representation is in the context of design space exploration optimized by the development tools to fit the target platform. This work focuses on representing the dataflow scheduling problem as a model checking problem and is implemented as part of a compiler infrastructure. The thesis also presents experimental results as evidence of the usefulness of the approach.
Resumo:
The objective of this project was to introduce a new software product to pulp industry, a new market for case company. An optimization based scheduling tool has been developed to allow pulp operations to better control their production processes and improve both production efficiency and stability. Both the work here and earlier research indicates that there is a potential for savings around 1-5%. All the supporting data is available today coming from distributed control systems, data historians and other existing sources. The pulp mill model together with the scheduler, allows what-if analyses of the impacts and timely feasibility of various external actions such as planned maintenance of any particular mill operation. The visibility gained from the model proves also to be a real benefit. The aim is to satisfy demand and gain extra profit, while achieving the required customer service level. Research effort has been put both in understanding the minimum features needed to satisfy the scheduling requirements in the industry and the overall existence of the market. A qualitative study was constructed to both identify competitive situation and the requirements vs. gaps on the market. It becomes clear that there is no such system on the marketplace today and also that there is room to improve target market overall process efficiency through such planning tool. This thesis also provides better overall understanding of the different processes in this particular industry for the case company.
Resumo:
Aiming at improving the quality of Perna perna mussels cultivated and commercialized in Ubatuba, SP, Brazil, the growth and elimination of Staphylococcus aureus and Bacillus cereus artificially inoculated in mussels were studied. The inoculation was carried out in "in natura" and pre-cooked mussels for 30 min, and after that the mussels were kept for 10 hours at room temperature (25 ± 1 °C) and under refrigeration (7 ± 1 °C). Six thermal treatments were evaluated: three using steam (5, 10 and 15 minutes) and three in boiling water (5, 10 and 15 minutes), in order to find the best time/temperature binomial to provide pathogenic control. Yield and physical-chemical and sensory characteristics were evaluated. All thermal treatments were efficient to eliminate microorganisms in 2 logarithmic cycles. However, the boiling water treatments presented better results than the steam treatments. The physical-chemical and sensory analyses did not show statistical differences among the thermal treatments studied. The best performances were reached in the shortest times of heat exposure. Overall, the treatments in boiling water presented better results than the steam treatments.
Resumo:
Sixteen common bean cultivars were compared concerning the physicochemical characteristics of their raw seeds in the course of two consecutive harvests, as well as the effect of storage conditions on starch and dietary fiber content of cooked beans. Using cluster analysis it was possible to identify groups of cultivars with different nutritional features. Bean cultivars were categorized into four different groups according either to their macronutrient content (crude protein-PROT, total dietary fiber-TDF, insoluble dietary fiber-IDF, soluble dietary fiber-SDF, digestible starch-DS, and resistant starch-RS) or to their micronutrient levels (Fe, Zn, Mn, Cu, Ca, Mg, and P). Guateian 6662 and Rio Tibagi appeared to be the most suitable cultivars to prevent nutritional deficiencies, because they had high PROT, DS, Fe, and Zn content. The high total dietary fiber and RS content of Iraí, Minuano, and TPS Bonito cultivars, and specially the high soluble fiber content of Guateian 6662 and Rio Tibagi cultivars suggests that they could have a beneficial role in controlling blood lipid and glucose levels. Cooked beans had a decrease in DS and an increase in RS content after storage (4 °C or -20 °C), but these changes were more prominent in beans that had low RS content before cooking than in those of high RS content. TDF, IDF, and SDF did not change after storage.
Resumo:
The objective of this study was to evaluate the effect of harvest at different times of day on the chemical and physical characteristics of vegetable-type soybean BRS 267 cultivar, harvested at the R6 stage (seed development) and to compare it with that on the grains harvested at the R8 stage (maturation). The pods of the BRS 267 cultivar were harvested at the R6 stage (at 8:00 AM, 12:00 AM, and 6:00 PM), the color parameters were evaluated, and the grains were analyzed for chemical composition, activity inhibitor trypsin, phytic acid content, starch, sugars, fatty acids, and isoflavones. No differences were observed among the different harvest times in terms of the chemical constituents of vegetable-type soybean BRS 267 cultivar harvested at the R6 stage. Isoflavones content did not change with different harvest times, and the aglycone forms (daidzein, glycitein, and genistein) were found in smaller quantities at the R6 stage compared to the R8 stage. The color of the pods of soybean BRS 267 cultivar, harvested at the R6 stage did not change with different harvest times. The grains harvested at the R6 stage had lower protein content, phytic acid, and sucrose and higher levels of lipids, carbohydrates, starch, glucose, fructose, stachyose, and linolenic acids than those collected at the R8 stage. The different times of harvest did not affect the quality of the vegetable-type soybean BRS 267 cultivar harvested at stage R6. Nevertheless, it is recommended to harvest in the morning, when the temperature is milder, like other vegetables, to facilitate and optimize its marketing and in natura consumption.
Resumo:
Covering the grapevine rows to delay the maturity and harvest date became widely practiced in 'Sultana Seedless' vineyards. The research work was conducted to test different cover materials (polypropylene cross-stitch, life pack, mogul and transparent polyethylene) in respect to their effects on grape quality and storability. Harvest was delayed for one month in covered plots. Harvested grapes were packed and transferred to storage rooms after pre-cooling. During packing, the grape clusters were sealed in PE bags with sulphur dioxide pads. The grapes were stored for 90 days in the first year and 120 days in the second year, at -0.5ºC and 90% RH. All the grape clusters were healthy and of marketable quality after 90 days of storage period. In the first year, at the end of the storage, only those grapes harvested from the rows covered with polypropylene cross-stitch showed fungal growth. The sensory quality scores revealed a lower level of preference after 120 days of storage. The effects of the covering materials tested were similar regarding grape quality and storage performance except the transparent polyethylene that damaged the grapevine leaves.
Resumo:
The objective of this research was to determine the effect of five years on physico-chemical characteristics and antioxidant activity of flaxseed hull oils. Oil and protein on flaxseed hull varied between 20.15 and 22.56 and 17.45 and 19.14, respectively. The albumin fraction dominated the seed hull protein composition (44 - 47%). Flaxseed hull oils showed significantly high unsaturated to saturated fatty acid ratios (6.61 - 8.36) and calculated oxidizability (Cox) values (10.88 - 12.30). The physiochemical parameters determined included saponification value (SV) (174 -182 mg KOH/g), unsaponifiable matter (UM) (1.32 - 1.64%), peroxide value (PV) (1.70 - 2.20 mequiv/kg), Oxidation value (OV) (4.40 - 5.90) and oil stability (1.10 - 1.42 h). The highest content of total phenolic acids and total tocopherols were recorded on hull sample collected in 2008. Flavanoid content ranged from 11 to 19 mg/100 g oil. Antioxidant activity differed significantly; the greatest inhibition (61.38%) was for the hull sample collected in 2008.
Resumo:
AbstractMaize is considered a source of carotenoids; however, these compounds are highly unstable, degraded by high temperatures, exposure to light and presence of oxygen. The objective of this work was to evaluate the influence of the moisture and type of drying applied to grains on the level of carotenoids in yellow maize. The experiment was conducted in a completely randomized design (2 × 4 factorial), two levels of initial moisture at the harvest (22 and 19%) and three types of drying (in the sun; in the shade and in a dryer) and control (no drying). The samples of grains after drying with 12% of final moisture were analyzed by concentration of total carotenoids, carotenes (α-carotene + β-carotene), monohydroxilated carotenoids (β-cryptoxanthin), and xanthophylls (lutein + zeaxanthin). Initial moisture, type of drying and the interaction between moisture versus drying influence (p≤0.05) the levels of carotenoids in grains. This is the first report about the drying conditions and harvest’s initial moisture as influence on the profile and content of carotenoids in maize grains. Based on the results, this work suggested that the harvest be carried out preferably when the grains present 22% humidity, with drying in a dryer or in shade for further use or storage.
Resumo:
Abstract The camu-camu tree (Myrciaria dubia (Kunth) Mc Vaugh) is fruit-bearing tree belonging to the family Myrtaceae. This work was conducted with the purpose of evaluating the type of storage temperature and package which allow better conservation of the quality attributes of camu-camu. The experimental design utilized was the completely randomized with three replications in a factorial arrangement (3x3x8), constituted of three different storage temperatures (laboratory ambiente or 25 ± 2 °C, 15 °C and 20 °C), three types of packages (no package, PET and PVC) and fourteen days’ storage, the fruits being analyzed every two days. The fruits were evaluated as to fresh mass loss, pH, soluble solids contents, titrable acidity, ascorbic acid, carotenoids, anthocyanins, chlorophylls A and B and maturation index (SS/AT). According to the results obtained, the quality attributes and ascorbic acid content were conserved for longer time in the fruits stored on PVC-film covered expanded polystyrene trays at 15 °C. It follows that the best temperature for the storage of camu-camu is 15 °C and the package that best keeps its quality attributes is the PVC-film covered expanded polystyrene tray.