BDAgro CTBE Database of Agricultural Experiments

Tamanho: px
Começar a partir da página:

Download "BDAgro CTBE Database of Agricultural Experiments"

Transcrição

1 MEMORANDO TÉCNICO BDAgro CTBE Database of Agricultural Experiments Angélica O. Pontes, Liu Yi Ling, Guilherme M. Sanches, Paulo S. G. Magalhães, João E. Ferreira and Carlos E. Driemeier Laboratório Nacional de Ciência e Tecnologia do Bioetanol CTBE Centro Nacional de Pesquisa em Energia e Materiais CNPEM Campinas, November 2014

2 1 Summary 1. Introduction Standard tools for software development Conceptual data model Logical data model Physical data model Examples of query and table Analytical module Conclusion References... 9 Figures Figure 1: Conceptual data model of the CTBE Database of Agricultural Experiments4 Figure 2: Logical data model of the CTBE Database of Agricultural Experiments... 5 Figure 3: List of events from one selected experiment, as retrieved through the SQL query... 6 Figure 4: Table of types of attributes specifying the applied linearization and filtering functions, as visualized in pgadmin... 7 Figure 5: Table of data preparation for analysis, as visualized in pgadmin. The table contains three data states, raw (bruto), linearized (linearizado), and filtered (filtrado), for all types of attributes... 8

3 2 1. Introduction Contemporary scientific and technologic research is evolving to become increasingly data-intensive and collaborative. Proper computing capabilities for data acquisition, storage, sharing, modelling, and analysis are pivotal in this novel research perspective (HEY & TREFETHEN, 2003; TANSLEY & TOLLE, 2009). The pervasive role of computing is observed across virtually all disciplines. In particular, this is the case of agricultural experiments aiming at enhancing biomass production in an environmentally benign way. Such agricultural experiments are within the scope of the Brazilian Bioethanol Science and Technology Laboratory CTBE. With this motivation, we developed the CTBE Database of Agricultural Experiments (Banco de Dados de Experimentos Agrícolas BDAgro), which is described in the present Technical Memorandum. BDAgro was developed with the following specific aims. (i) to store data of CTBE agricultural experiments in structured form, assuring long-term data readability; (ii) to enable statistical analysis and knowledge discovery integrated to the database; and (iii) to pave the way for data-driven collaboration with other research groups in Brazil and abroad. BDAgro was a joint development of CTBE e-science and sugarcane precision agriculture research groups, with support from the experience of the e- Science group from the Math and Statistics Institute from the University of São Paulo (IME-USP). Although database development and initial data sets were associated to research in sugarcane precision agriculture, BDAgro was modelled with the aim of supporting all CTBE agricultural experiments. 2. Standard tools for software development BDAgro as well as other databases and software developed within the CTBE e-science group will preferentially follow selected tools. Free, open-source platforms will be always preferred and adopted whenever possible. Concretely, BDAgro was developed with basis on the following tools: PostgreeSQL as relational database management system; pgadmin as database administration and development platform; R programming language for statistical computing integrated to the database; Python as auxiliary programming language employed primarily to create SQL scripts to input data into the database.

4 3 In addition to these selected tools, it is important to mention that the glossary of BDAgro is in Portuguese language. Furthermore, BDAgro was developed in IME- USP computer server and will be soon migrated to a local CNPEM server. 3. Conceptual data model The BDAgro conceptual model, i.e. entity-relationship model, (ELMASRI & NAVATHE, 2010) is shown in Figure 1. The model comprises the following entities: Project (projeto): One project is defined by the contract terms with a research granting agency (CNPq, FAPESP, etc.) or a company, or an internal project of CTBE/CNPEM. Experiment (experimento): One experiment is defined by a certain land area during a certain period of time. Land area is most often an open agricultural field, but may also be inside close environments such as greenhouses. Event (evento): One event is an important fact within one experiment. Events may be of three types: (i) intervention, associated with change in experimental land area (e.g., harvest); (ii) characterization, associated with data acquisition without change in land area (e.g., characterization of soil granulometry); and (iii) planning, representing a record associated with neither physical change in land area nor new data acquisition (e.g., nutrient application recipes). Person (pessoa): One person is an individual that may be responsible for a project, an event, or the data of an event. Static data (dado estático): Data generated by events are termed static because events are defined at specific moments within one experiment. Static data has x and y spatial coordinates as attributes. Additional attributes depend on the type of static data, with each type of static data stored in a dedicated table. Soli granulometry (granulometria solo), soil apparent electrical conductivity (condutividade elétrica aparente), and harvest yield (produtividade) are examples of static data types. Dynamic data (dado dinâmico): Data acquired continuously during the course of one experiment is termed dynamic data. Date is one attribute of dynamic data. Additional attributes depend on type of dynamic data. Meteorological information is one example of dynamic data.

5 4 Figure 1: Conceptual data model of the CTBE Database of Agricultural Experiments

6 5 4. Logical data model The logical data model of BDAgro is presented in Figure 2, representing data tables, their attributes, and relationships. Figure 2: Logical data model of the CTBE Database of Agricultural Experiments

7 6 5. Physical data model The physical model is encoded in the SQL script that created BDAgro. The script is available at the following address accessible to CNPEM personnel. The script will be provided to external researchers upon request. Central de Documentos > Central de Documentos > Programa de Pesquisa Básica > e-science > BDAgro > Memorando Tecnico > BDAgro_ sql 6. Examples of query and table Information retrieval from BDAgro is obtained through explicit SQL queries. As an example, the following script shows the table of events from one selected experiment. SELECT id_evento, E.data, AT.descricao AS atividade, RD.nome_pessoa AS responsavel_dado, RC.nome_pessoa AS responsavel_campo, OB.descricao AS objeto, TE.descricao AS evento, TS.descricao AS laboratorio_sensor, EX.nome_experimento AS experimento, DB.descricao AS tp_modo_aquisicao_dado, detalhamento_evento FROM evento E INNER JOIN tp_atividade AT ON AT.id_tp_atividade = E.id_tp_atividade INNER JOIN pessoa RD ON RD.id_pessoa = E.id_responsavel_dado INNER JOIN pessoa RC ON RC.id_pessoa = E.id_responsavel_campo INNER JOIN tp_objeto OB ON OB.id_tp_objeto = E.id_tp_objeto INNER JOIN tp_evento TE ON TE.id_tp_evento = E.id_tp_evento LEFT OUTER JOIN tp_laboratorio_sensor TS ON TS.id_tp_laboratorio_sensor = E.id_tp_laboratorio_sensor INNER JOIN experimento EX ON EX.id_experimento = E.id_experimento LEFT OUTER JOIN tp_modo_aquisicao_dado DB ON DB.id_tp_modo_aquisicao_dado = E.id_tp_modo_aquisicao_dado order by id_evento; Figure 3: List of events from one selected experiment, as retrieved through the SQL query

8 7 7. Analytical module Data analysis is performed through analytical steps recorded in tables distinct from those of raw data. This strategy creates a separate analytical environment within BDAgro. This analytical environment is not represented in the conceptual and logical data models of Figures 1 and 2, respectively. Two tables associated with analysis of static data are shown in Figures 4 and 5. The table in Figure 4 (analise_tp_atributo) delineates types of attributes, which hold primary keys (id_tp_atributo). This table also identifies the functions for linearization (column linearizacao) and filtering (column filtro) applied to raw data. These functions create two data states, linearized (linearizado) and filtered (filtrado), in addition to the raw (bruto) data state. Figure 4: Table of types of attributes specifying the applied linearization and filtering functions, as visualized in pgadmin Each data state is recorded as one attribute of the data preparation table (analise_preparacao_pontosxy) shown in Figure 5. Note that this data preparation step maps raw data from distinct tables and attributes into a single column (bruto) of the data preparation table. Such data preparation tables will be the base for construction of data analysis workflows. In a recent publication (DRIEMEIER et al, 2014) we described a version of the analysis workflow for experiments in sugarcane precision agriculture.

9 8 Figure 5: Table of data preparation for analysis, as visualized in pgadmin. The table contains three data states, raw (bruto), linearized (linearizado), and filtered (filtrado), for all types of attributes 8. Conclusion CTBE Database of Agricultural Experiments (BDAgro) was created and it is described in the present Technical Memorandum. This database will store data of CTBE agricultural experiments in structured form, enabling long-term data readability, statistical analysis integrated to the database, and data-driven collaboration with other research groups.

10 9 9. References DRIEMEIER, C. E.; LING, L. Y.; PONTES, A. O.; SANCHES, G. M.; FRANCO, H. C. J.; MAGALHÃES, P. S. G.; FERREIRA, J. E. Data analysis workflow for experiments in sugarcane precision agriculture. In: E-Science (e-science) IEEE 10 th Int. Conf. São Paulo, ELMASRI, R.; NAVATHE, S. B. Fundamentals of Database Systems. 6. ed. Addison- Wesley, FERREIRA, J. E.; FINGER, M. Controle de concorrência e distribuição de dados: a teoria clássica, suas limitações e extensões modernas. XII Escola de Computação, IME-USP, HEUSER, C. A. Projeto de Banco de Dados. 6. ed. Bookman, HEY, A. J. G.; TREFETHEN, A. E. The data deluge: An e-science perspective TANSLEY, S.; TOLLE, K. M. (Ed.). The fourth paradigm: data-intensive scientific discovery, 2009.

e-lab: a didactic interactive experiment An approach to the Boyle-Mariotte law

e-lab: a didactic interactive experiment An approach to the Boyle-Mariotte law Sérgio Leal a,b, João Paulo Leal a,c Horácio Fernandes d a Departamento de Química e Bioquímica, FCUL, Lisboa, Portugal b Escola Secundária com 3.º ciclo Padre António Vieira, Lisboa, Portugal c Unidade

Leia mais

Digital Cartographic Generalization for Database of Cadastral Maps

Digital Cartographic Generalization for Database of Cadastral Maps Mariane Alves Dal Santo marianedalsanto@udesc.br Francisco Henrique de Oliveira chicoliver@yahoo.com.br Carlos Loch cloch@ecv.ufsc.br Laboratório de Geoprocessamento GeoLab Universidade do Estado de Santa

Leia mais

Prova de Seleção Mestrado LINGUA INGLESA 15/02/2016

Prova de Seleção Mestrado LINGUA INGLESA 15/02/2016 Prova de Seleção Mestrado LINGUA INGLESA 15/02/2016 Instruções aos candidatos: (1) Preencher somente o número de inscrição em todas as folhas. (2) Usar caneta preta ou azul. 1 2 3 4 5 6 7 8 9 10 11 12

Leia mais

Ontology Building Process: The Wine Domain

Ontology Building Process: The Wine Domain Ontology Building Process: The Wine Domain João Graça, Márcio Mourão, Orlando Anunciação, Pedro Monteiro, H. Sofia Pinto, and Virgílio Loureiro Summary Context Ontology Wine Domain Existing Wine Ontologies

Leia mais

Participatory Map of Rio de Janeiro

Participatory Map of Rio de Janeiro Leandro Gomes Souza Geographer Luiz Roberto Arueira da Silva Director of City Information Pereira Passos Institute - City of Rio de Janeiro About us Pereira Passos Institute (IPP) is Rio de Janeiro municipal

Leia mais

Online Collaborative Learning Design

Online Collaborative Learning Design "Online Collaborative Learning Design" Course to be offered by Charlotte N. Lani Gunawardena, Ph.D. Regents Professor University of New Mexico, Albuquerque, New Mexico, USA July 7- August 14, 2014 Course

Leia mais

inciência Iniciação Científica Embrapa Anais da X Jornada de Iniciação Científica da Embrapa Amazônia Ocidental

inciência Iniciação Científica Embrapa Anais da X Jornada de Iniciação Científica da Embrapa Amazônia Ocidental inciência Iniciação Científica Embrapa Anais da X Jornada de Iniciação Científica da Empresa Brasileira de Pesquisa Agropecuária Ministério da Agricultura, Pecuária e Abastecimento Anais da X Jornada de

Leia mais

Institutional Skills. Sessão informativa INSTITUTIONAL SKILLS. Passo a passo. www.britishcouncil.org.br

Institutional Skills. Sessão informativa INSTITUTIONAL SKILLS. Passo a passo. www.britishcouncil.org.br Institutional Skills Sessão informativa INSTITUTIONAL SKILLS Passo a passo 2 2 British Council e Newton Fund O British Council é a organização internacional do Reino Unido para relações culturais e oportunidades

Leia mais

DESENVOLVIMENTO E APLICABILIDADE DE UMA BASE DE DADOS RELACIONAL PARA O INVENTÁRIO FLORESTAL CONTÍNUO DO RIO GRANDE DO SUL

DESENVOLVIMENTO E APLICABILIDADE DE UMA BASE DE DADOS RELACIONAL PARA O INVENTÁRIO FLORESTAL CONTÍNUO DO RIO GRANDE DO SUL DESENVOLVIMENTO E APLICABILIDADE DE UMA BASE DE DADOS RELACIONAL PARA O INVENTÁRIO FLORESTAL CONTÍNUO DO RIO GRANDE DO SUL RESUMO Enio Giotto Elódio Sebem Doádi Antônio Brena Universidade Federal de Santa

Leia mais

SQL TGD/JMB 1. Projecto de Bases de Dados. Linguagem SQL

SQL TGD/JMB 1. Projecto de Bases de Dados. Linguagem SQL SQL TGD/JMB 1 Projecto de Bases de Dados Linguagem SQL SQL TGD/JMB 2 O que é o SQL? SQL ("ess-que-el") significa Structured Query Language. É uma linguagem standard (universal) para comunicação com sistemas

Leia mais

Métodos Formais em Engenharia de Software. VDMToolTutorial

Métodos Formais em Engenharia de Software. VDMToolTutorial Métodos Formais em Engenharia de Software VDMToolTutorial Ana Paiva apaiva@fe.up.pt www.fe.up.pt/~apaiva Agenda Install Start Create a project Write a specification Add a file to a project Check syntax

Leia mais

Banca examinadora: Professor Paulo N. Figueiredo, Professora Fátima Bayma de Oliveira e Professor Joaquim Rubens Fontes Filho

Banca examinadora: Professor Paulo N. Figueiredo, Professora Fátima Bayma de Oliveira e Professor Joaquim Rubens Fontes Filho Título: Direção e Taxa (Velocidade) de Acumulação de Capacidades Tecnológicas: Evidências de uma Pequena Amostra de Empresas de Software no Rio de Janeiro, 2004 Autor(a): Eduardo Coelho da Paz Miranda

Leia mais

CMDB no ITIL v3. Miguel Mira da Silva. mms@ist.utl.pt 919.671.425

CMDB no ITIL v3. Miguel Mira da Silva. mms@ist.utl.pt 919.671.425 CMDB no ITIL v3 Miguel Mira da Silva mms@ist.utl.pt 919.671.425 1 CMDB v2 Configuration Management IT components and the services provided with them are known as CI (Configuration Items) Hardware, software,

Leia mais

Laboratório 3. Base de Dados II 2008/2009

Laboratório 3. Base de Dados II 2008/2009 Laboratório 3 Base de Dados II 2008/2009 Plano de Trabalho Lab. 3: Programação em Transact-SQL MYSQL Referências www.mysql.com MICROSOFT SQL SERVER - Procedimentos do Lado do Servidor (Stored Procedures)

Leia mais

BR-EMS MORTALITY AND SUVIVORSHIP LIFE TABLES BRAZILIAN LIFE INSURANCE AND PENSIONS MARKET

BR-EMS MORTALITY AND SUVIVORSHIP LIFE TABLES BRAZILIAN LIFE INSURANCE AND PENSIONS MARKET BR-EMS MORTALITY AND SUVIVORSHIP LIFE TABLES BRAZILIAN LIFE INSURANCE AND PENSIONS MARKET 2015 1 e-mail:mario@labma.ufrj.br Tables BR-EMS, mortality experience of the Brazilian Insurance Market, were constructed,

Leia mais

TÍTULO DA APRESENTAÇÃO

TÍTULO DA APRESENTAÇÃO UniversityofMinho 1974 (39 years) 2 Campi Campus de Gualtar (380.000 m 2 ) Braga Campus de Azurém (270.000 m 2 ) Guimarães Teaching 53 graduate courses 130 masters courses 22 PhD courses 18.500 students

Leia mais

Melhorando o ambiente de negócios por meio da transparência no Estado de São Paulo Dentro do MoU (Memorando de Entendimento) que o Governo do Estado tem com o Reino Unido estão sendo promovidos vários

Leia mais

Universidade do Minho. Escola de Engenharia. UC transversais Programas Doutorais 1º semestre 2012-13. 11 de outubro 2012

Universidade do Minho. Escola de Engenharia. UC transversais Programas Doutorais 1º semestre 2012-13. 11 de outubro 2012 Universidade do Minho Escola de Engenharia UC transversais Programas Doutorais 1º semestre 2012-13 11 de outubro 2012 1 2 2 courses offered in the first semestre: Métodos de Investigação em Engenharia

Leia mais

Easy Linux! FUNAMBOL FOR IPBRICK MANUAL. IPortalMais: a «brainware» company www.iportalmais.pt. Manual

Easy Linux! FUNAMBOL FOR IPBRICK MANUAL. IPortalMais: a «brainware» company www.iportalmais.pt. Manual IPortalMais: a «brainware» company FUNAMBOL FOR IPBRICK MANUAL Easy Linux! Title: Subject: Client: Reference: Funambol Client for Mozilla Thunderbird Doc.: Jose Lopes Author: N/Ref.: Date: 2009-04-17 Rev.:

Leia mais

UNIVERSIDADE DE SÃO PAULO FACULDADE DE EDUCAÇÃO JOÃO FÁBIO PORTO. Diálogo e interatividade em videoaulas de matemática

UNIVERSIDADE DE SÃO PAULO FACULDADE DE EDUCAÇÃO JOÃO FÁBIO PORTO. Diálogo e interatividade em videoaulas de matemática UNIVERSIDADE DE SÃO PAULO FACULDADE DE EDUCAÇÃO JOÃO FÁBIO PORTO Diálogo e interatividade em videoaulas de matemática São Paulo 2010 JOÃO FÁBIO PORTO Diálogo e interatividade em videoaulas de matemática

Leia mais

Addition of Fields in Line Item Display Report Output for TCode FBL1N/FBL5N

Addition of Fields in Line Item Display Report Output for TCode FBL1N/FBL5N Addition of Fields in Line Item Display Report Output for TCode FBL1N/FBL5N Applies to: Any business user who uses the transactions FBL1N and FBL5N to display line item reports for vendors and customers.

Leia mais

Erasmus Student Work Placement

Erasmus Student Work Placement Erasmus Student Work Placement EMPLOYER INFORMATION Name of organisation Address Post code Country SPORT LISBOA E BENFICA AV. GENERAL NORTON DE MATOS, 1500-313 LISBOA PORTUGAL Telephone 21 721 95 09 Fax

Leia mais

AULA 2 INTERAÇÃO COM O BANCO DE DADOS

AULA 2 INTERAÇÃO COM O BANCO DE DADOS AULA 2 INTERAÇÃO COM O BANCO DE DADOS BANCO DE DADOS POSTGRESQL O PostgreSQL é um sistema gerenciador de banco de dados dos mais robustos e avançados do mundo. Seu código é aberto e é totalmente gratuito,

Leia mais

USPTO No. 15143095 USPTO No. 15143095 USPTO No. 15143095 USPTO No. 15143095 USPTO No. 15143095 USPTO No. 15143095 USPTO No. 15143095 WORK PLAN FOR IMPLEMENTATION OF THE UNITED STATES PATENT AND

Leia mais

SUPLEMENTO AO DIPLOMA DA UNIVERSIDADE DO MINHO (MESTRADO EM ENGENHARIA URBANA) (2º CICLO)

SUPLEMENTO AO DIPLOMA DA UNIVERSIDADE DO MINHO (MESTRADO EM ENGENHARIA URBANA) (2º CICLO) SUPLEMENTO AO DIPLOMA DA UNIVERSIDADE DO MINHO (MESTRADO EM ENGENHARIA URBANA) (2º CICLO) 1 Principal(ais) área(s) de estudo da qualificação: Engenharia Civil - Planeamento Urbanístico Engenharia Civil

Leia mais

AUDITORIA EM BANCO DE DADOS COM UTILIZAÇÃO DE REGRAS

AUDITORIA EM BANCO DE DADOS COM UTILIZAÇÃO DE REGRAS REVISTA DE CIÊNCIAS EXATAS E TECNOLOGIA AUDITORIA EM BANCO DE DADOS COM UTILIZAÇÃO DE REGRAS Eder Pazinatto Faculdade Anhanguera de Passo Fundo RESUMO: A busca por mecanismos que implementam segurança

Leia mais

Universidade da Beira Interior. Sistemas Distribuídos - 2014/2015 Curso: Engª Informática. Folha 11. JAX-RS: Java API for RESTful Web Services

Universidade da Beira Interior. Sistemas Distribuídos - 2014/2015 Curso: Engª Informática. Folha 11. JAX-RS: Java API for RESTful Web Services JAX-RS: Java API for RESTful Web Services A - Creating RESTful Web Services from a Database 1- Comece por criar um projeto do tipo Java Web application, como fez nos exercícios das fichas anteriores. No

Leia mais

Bolsista CNPq: Graduação em Eng. Agrícola, UNICAMP, Campinas-SP, fabiooquendo@gmail.com.

Bolsista CNPq: Graduação em Eng. Agrícola, UNICAMP, Campinas-SP, fabiooquendo@gmail.com. UM SISTEMA PARA ORGANIZAÇÃO DE INFORMAÇÕES DE SOLOS BRASILEIROS FÁBIO O. SILVA 1 ; FERNANDO KUNINARI 2 ; STANLEY R. M. OLIVEIRA 3 12605 RESUMO Com o objetivo de possibilitar o armazenamento e a disponibilização

Leia mais

BIBLIOGRAFIA. Faupel, A. & Sharp, P. (2003). Promoting emotional literacy. Guidelines for schools, local authorities and

BIBLIOGRAFIA. Faupel, A. & Sharp, P. (2003). Promoting emotional literacy. Guidelines for schools, local authorities and RESUMO EXPANDIDO Pode definir-se Literacia Emocional como a capacidade para reconhecer, compreender, expressar e gerir estados emocionais, do próprio e de outras pessoas, existindo associações entre esta

Leia mais

Select a single or a group of files in Windows File Explorer, right-click and select Panther Print

Select a single or a group of files in Windows File Explorer, right-click and select Panther Print Quick Start Guide SDI Panther Print Panther Print SDI Panther products make sharing information easier. Panther Print is an intuitive dialog box that provides a thumbnail view of the file to print, depicting

Leia mais

NCE/09/00492 Decisão de apresentação de pronúncia - Novo ciclo de estudos

NCE/09/00492 Decisão de apresentação de pronúncia - Novo ciclo de estudos NCE/09/00492 Decisão de apresentação de pronúncia - Novo ciclo de estudos NCE/09/00492 Decisão de apresentação de pronúncia - Novo ciclo de estudos Decisão de Apresentação de Pronúncia ao Relatório da

Leia mais

Meta Programming. Nelson Ferraz nferraz@gmail.com

Meta Programming. Nelson Ferraz nferraz@gmail.com Meta Programming Nelson Ferraz nferraz@gmail.com Resumo Meta Programming Code Generation AppML 23/11/07 Nelson Ferraz 2 Meta Programming Programas que manipulam programas Geração de

Leia mais

Treinamento PostgreSQL - Aula 03

Treinamento PostgreSQL - Aula 03 Treinamento PostgreSQL - Aula 03 Eduardo Ferreira dos Santos SparkGroup Treinamento e Capacitação em Tecnologia eduardo.edusantos@gmail.com eduardosan.com 29 de Maio de 2013 Eduardo Ferreira dos Santos

Leia mais

CARLA ALEXANDRA SEVES DE ANDRADE CANOTILHO

CARLA ALEXANDRA SEVES DE ANDRADE CANOTILHO Escola Superior de Tecnologia e Gestão Instituto Politécnico da Guarda R E L AT Ó R I O D E AT I V I D A D E P R O F I S S I O N A L N A J. V A R G A S - G A B I N E T E T É C N I C O D E G E S T Ã O E

Leia mais

Reitor / President Marcos Macari, Ph.D. Vice-Reitor /Vice-President Herman Jacobus Cornelis Voorwald, Ph.D.

Reitor / President Marcos Macari, Ph.D. Vice-Reitor /Vice-President Herman Jacobus Cornelis Voorwald, Ph.D. UNIVERSIDADE ESTADUAL PAULISTA JULIO DE MESQUITA FILHO Reitor / President Marcos Macari, Ph.D. Vice-Reitor /Vice-President Herman Jacobus Cornelis Voorwald, Ph.D. Pró-Reitora de Pós-Graduação / Graduate

Leia mais

ACEF/1112/02477 Decisão de apresentação de pronúncia

ACEF/1112/02477 Decisão de apresentação de pronúncia ACEF/1112/02477 Decisão de apresentação de pronúncia ACEF/1112/02477 Decisão de apresentação de pronúncia Decisão de Apresentação de Pronúncia ao Relatório da Comissão de Avaliação Externa 1. Tendo recebido

Leia mais

Protective circuitry, protective measures, building mains feed, lighting and intercom systems

Protective circuitry, protective measures, building mains feed, lighting and intercom systems Tecnologia de instalações electrónicas Training systems / trainers for electrical wiring/building management systems: Protective circuitry, protective measures, building mains feed, lighting and intercom

Leia mais

Análise Probabilística de Semântica Latente aplicada a sistemas de recomendação

Análise Probabilística de Semântica Latente aplicada a sistemas de recomendação Diogo Silveira Mendonça Análise Probabilística de Semântica Latente aplicada a sistemas de recomendação Dissertação de Mestrado Dissertação apresentada como requisito parcial para obtenção do título de

Leia mais

LICENCIATURA EM ENG. DE SISTEMAS E INFORMÁTICA Redes e Serviços de Banda Larga. Laboratório 4. OSPF Backbone

LICENCIATURA EM ENG. DE SISTEMAS E INFORMÁTICA Redes e Serviços de Banda Larga. Laboratório 4. OSPF Backbone Laboratório 4 OSPF Backbone Equipamento necessário: Três OmniSwitches Objectivo: Este laboratório tem como objectivo familiarizar os alunos com as configurações RIP em comutadores OmniSwitch. Sintaxe dos

Leia mais

6 Só será permitido o uso de dicionário INGLÊS/INGLÊS.

6 Só será permitido o uso de dicionário INGLÊS/INGLÊS. 1 2 3 4 5 Confira se os dados contidos na parte inferior desta capa estão corretos e, em seguida, assine no espaço reservado para isso. Se, em qualquer outro local deste Caderno, você assinar, rubricar,

Leia mais

Comandos de Manipulação

Comandos de Manipulação SQL - Avançado Inserção de dados; Atualização de dados; Remoção de dados; Projeção; Seleção; Junções; Operadores: aritméticos, de comparação,de agregação e lógicos; Outros comandos relacionados. SQL SQL

Leia mais

Margarida Isabel A Auditoria Tributária e a Deteção. Melo de Oliveira de Comportamento Evasivo

Margarida Isabel A Auditoria Tributária e a Deteção. Melo de Oliveira de Comportamento Evasivo Universidade de Aveiro Instituto Superior de Contabilidade e Administração 2012 Margarida Isabel A Auditoria Tributária e a Deteção Melo de Oliveira de Comportamento Evasivo 1 Universidade de Aveiro Instituto

Leia mais

SUPLEMENTO AO DIPLOMA DA UNIVERSIDADE DO MINHO MESTRADO EM CONSTRUÇÃO E REABILITAÇÃO SUSTENTÁVEIS (2º CICLO)

SUPLEMENTO AO DIPLOMA DA UNIVERSIDADE DO MINHO MESTRADO EM CONSTRUÇÃO E REABILITAÇÃO SUSTENTÁVEIS (2º CICLO) SUPLEMENTO AO DIPLOMA DA UNIVERSIDADE DO MINHO MESTRADO EM CONSTRUÇÃO E REABILITAÇÃO SUSTENTÁVEIS (2º CICLO) 1 Principal(ais) área(s) de estudo da qualificação: Engenharia Civil 2 Língua(s) de aprendizagem/avaliação:

Leia mais

Accessing the contents of the Moodle Acessando o conteúdo do Moodle

Accessing the contents of the Moodle Acessando o conteúdo do Moodle Accessing the contents of the Moodle Acessando o conteúdo do Moodle So that all the available files in the Moodle can be opened without problems, we recommend some software that will have to be installed

Leia mais

PROGRAMA DAS UNIDADES CURRICULARES

PROGRAMA DAS UNIDADES CURRICULARES 1. Unidade Curricular (máx. 100 caracteres) Modelação de Dados Curricular Unit (máx. 100 caracteres) Data Modelling 2. Ciclo de Estudos (máx. 100 caracteres) Comunicação e Design Multimédia Study Cycle

Leia mais

PROGRAMA. Aquisição dos conceitos teóricos mais importantes sobre bases de dados contextualizados à luz de exemplos da sua aplicação no mundo real.

PROGRAMA. Aquisição dos conceitos teóricos mais importantes sobre bases de dados contextualizados à luz de exemplos da sua aplicação no mundo real. PROGRAMA ANO LECTIVO: 2005/2006 CURSO: LICENCIATURA BI-ETÁPICA EM INFORMÁTICA ANO: 2.º DISCIPLINA: BASE DE DADOS DOCENTE RESPONSÁVEL PELA REGÊNCIA: Licenciado Lino Oliveira Objectivos Gerais: Aquisição

Leia mais

MySQL, Como e Por que Utilizar? por Dimas Cassimiro dimascnf@lsd.ufcg.edu.br

MySQL, Como e Por que Utilizar? por Dimas Cassimiro dimascnf@lsd.ufcg.edu.br MySQL, Como e Por que Utilizar? por Dimas Cassimiro dimascnf@lsd.ufcg.edu.br Por que estou aqui? O que vamos ver? Agenda O que é MySQL? Por que MySQL? História MySQLComnunity Server Por que utilizar o

Leia mais

Bases de Dados 2007/2008. Aula 1. Referências

Bases de Dados 2007/2008. Aula 1. Referências Bases de Dados 2007/2008 Aula 1 Sumário 1. SQL Server 2000: configuração do acesso ao servidor. 1.1. SQL Server Service Manager. 1.2. SQL Server Enterprise Manager. 1.3. SQL Query Analyzer. 2. A base de

Leia mais

INFORMATION SECURITY IN ORGANIZATIONS

INFORMATION SECURITY IN ORGANIZATIONS INFORMATION SECURITY IN ORGANIZATIONS Ana Helena da Silva, MCI12017 Cristiana Coelho, MCI12013 2 SUMMARY 1. Introduction 2. The importance of IT in Organizations 3. Principles of Security 4. Information

Leia mais

A Cloud Computing Architecture for Large Scale Video Data Processing

A Cloud Computing Architecture for Large Scale Video Data Processing Marcello de Lima Azambuja A Cloud Computing Architecture for Large Scale Video Data Processing Dissertação de Mestrado Dissertation presented to the Postgraduate Program in Informatics of the Departamento

Leia mais

Introdução à Banco de Dados. Nathalia Sautchuk Patrício

Introdução à Banco de Dados. Nathalia Sautchuk Patrício Introdução à Banco de Dados Nathalia Sautchuk Patrício Histórico Início da computação: dados guardados em arquivos de texto Problemas nesse modelo: redundância não-controlada de dados aplicações devem

Leia mais

NCE/10/00806 Decisão de apresentação de pronúncia - Novo ciclo de estudos

NCE/10/00806 Decisão de apresentação de pronúncia - Novo ciclo de estudos NCE/10/00806 Decisão de apresentação de pronúncia - Novo ciclo de estudos NCE/10/00806 Decisão de apresentação de pronúncia - Novo ciclo de estudos Decisão de Apresentação de Pronúncia ao Relatório da

Leia mais

Tese / Thesis Work Análise de desempenho de sistemas distribuídos de grande porte na plataforma Java

Tese / Thesis Work Análise de desempenho de sistemas distribuídos de grande porte na plataforma Java Licenciatura em Engenharia Informática Degree in Computer Science Engineering Análise de desempenho de sistemas distribuídos de grande porte na plataforma Java Performance analysis of large distributed

Leia mais

Introdução à linguagem SQL

Introdução à linguagem SQL Introdução à linguagem SQL 1 Histórico A linguagem de consulta estruturada (SQL - Structured Query Language) foi desenvolvida pela empresa IBM, no final dos anos 70. O primeiro banco de dados comercial

Leia mais

UNIVERSIDADE FEDERAL DO AMAZONAS DEPARTAMENTO DE COMUNICAÇÃO SOCIAL PROGRAMA DE PÓS-GRADUAÇÃO EM CIÊNCIAS DA COMUNICAÇÃO

UNIVERSIDADE FEDERAL DO AMAZONAS DEPARTAMENTO DE COMUNICAÇÃO SOCIAL PROGRAMA DE PÓS-GRADUAÇÃO EM CIÊNCIAS DA COMUNICAÇÃO UNIVERSIDADE FEDERAL DO AMAZONAS DEPARTAMENTO DE COMUNICAÇÃO SOCIAL PROGRAMA DE PÓS-GRADUAÇÃO EM CIÊNCIAS DA COMUNICAÇÃO A VEICULAÇÃO, CIRCULAÇÃO E QUALIDADE DAS INFORMAÇÕES SOBRE CIÊNCIA NOS BLOGS BRASILEIROS

Leia mais

DESENVOLVIMENTO DE INTERFACE PARA ACESSO AO BANCO DE DADOS METEOROLÓGICOS DO CPTEC/INPE.

DESENVOLVIMENTO DE INTERFACE PARA ACESSO AO BANCO DE DADOS METEOROLÓGICOS DO CPTEC/INPE. DESENVOLVIMENTO DE INTERFACE PARA ACESSO AO BANCO DE DADOS METEOROLÓGICOS DO CPTEC/INPE. Bianca Antunes de S. R. Alves 1, Luciana M. C. Mira 2, Ana Paula Tavarez 3, José Alberto Ferreira 4, Luíz Henrique

Leia mais

Analysis, development and monitoring of business processes in Corporate environment

Analysis, development and monitoring of business processes in Corporate environment Analysis, development and monitoring of business processes in Corporate environment SAFIRA is an IT consulting boutique known for transforming the way organizations do business, or fulfil their missions,

Leia mais

Cyclic loading. Yield strength Maximum strength

Cyclic loading. Yield strength Maximum strength Cyclic Test Summary Results SAFECAST Project Yield strength Maximum strength Cyclic loading Yield displacement (d y ) Ultimate displacement Total energy dissipated by the connection Total energy dissipated

Leia mais

Sistemas de Cache para Web: Um Estudo de Caso Utilizando MySQL e MongoDB

Sistemas de Cache para Web: Um Estudo de Caso Utilizando MySQL e MongoDB Sistemas de Cache para Web: Um Estudo de Caso Utilizando MySQL e MongoDB Heron Y. Inouye, Luís H. C. N. Ferreira, Rafael M. Coutinho, Alexandre C. B. Ramos Departamento de Matemática e Computação - Universidade

Leia mais

MINIMIZAÇÃO DOS EFEITOS DA FUMAÇA SOBRE O CÁLCULO DO NDVI

MINIMIZAÇÃO DOS EFEITOS DA FUMAÇA SOBRE O CÁLCULO DO NDVI MINISTÉRIO DA CIÊNCIA E TECNOLOGIA INSTITUTO NACIONAL DE PESQUISAS ESPACIAIS INPE-8976-TDI/810 MINIMIZAÇÃO DOS EFEITOS DA FUMAÇA SOBRE O CÁLCULO DO NDVI Marcelo Lima de Moura Dissertação de Mestrado em

Leia mais

MODELOS DE REFERÊNCIA PARA BIBLIOTECAS: a experiência do SIBi/USP

MODELOS DE REFERÊNCIA PARA BIBLIOTECAS: a experiência do SIBi/USP MODELOS DE REFERÊNCIA PARA BIBLIOTECAS: a experiência do SIBi/USP Teresinha das Graças Coletta 1, Maria Helena Di Francisco 2, Fabio Muller Guerrini³, Thyerre de Castro Ramazzi 4 1 Mestrado, Escola de

Leia mais

FICHAS DE UNIDADES CURRICULARES

FICHAS DE UNIDADES CURRICULARES FICHAS DE UNIDADES CURRICULARES a. Unidade curricular Course unit title: Construção da Imagem Fílmica Construction of the Filmic Image Código: 01343927 Code: 01343927 b. ECTS: 5.0 c. Horas de contacto

Leia mais

O PAPEL DAS NOVAS TECNOLOGIAS NA COMUNICAÇÃO EXTERNA DA ORGANIZAÇÃO: O CASO TAP PORTUGAL

O PAPEL DAS NOVAS TECNOLOGIAS NA COMUNICAÇÃO EXTERNA DA ORGANIZAÇÃO: O CASO TAP PORTUGAL O PAPEL DAS NOVAS TECNOLOGIAS NA COMUNICAÇÃO EXTERNA DA ORGANIZAÇÃO: O CASO TAP PORTUGAL Júlio Viana Dissertação de Mestrado em Ciências da Comunicação Área de Especialização em Comunicação Estratégica

Leia mais

Grupo de Arquitetos Microsoft Brasil

Grupo de Arquitetos Microsoft Brasil Grupo de Arquitetos Microsoft Brasil Luciano Condé Markus Christen Otávio Pecego Coelho Waldemir Cambiucci Azure Academy Waldemir Cambiucci Arquiteto de Soluções Microsoft Brasil http://blogs.msdn.com/wcamb

Leia mais

DevOps. Carlos Eduardo Buzeto (@_buzeto) IT Specialist IBM Software, Rational Agosto 2013. Accelerating Product and Service Innovation

DevOps. Carlos Eduardo Buzeto (@_buzeto) IT Specialist IBM Software, Rational Agosto 2013. Accelerating Product and Service Innovation DevOps Carlos Eduardo Buzeto (@_buzeto) IT Specialist IBM Software, Rational Agosto 2013 1 O desenvolvedor O mundo mágico de operações Como o desenvolvedor vê operações Como operações vê uma nova release

Leia mais

NetApp Visão Geral Alguns Desafios de uma Infraestrutura em Nuvem Integração com o System Center 2012

NetApp Visão Geral Alguns Desafios de uma Infraestrutura em Nuvem Integração com o System Center 2012 Agenda NetApp Visão Geral Alguns Desafios de uma Infraestrutura em Nuvem Integração com o System Center 2012 Monitoramento, Relatórios e Recomendações Pronto para sua Nuvem: System Center Orchestrator

Leia mais

SOFTWARE PARA CÁLCULO DOS COMPONENTES DO BALANÇO HÍDRICO DE PALMER

SOFTWARE PARA CÁLCULO DOS COMPONENTES DO BALANÇO HÍDRICO DE PALMER SOFTWARE PARA CÁLCULO DOS COMPONENTES DO BALANÇO HÍDRICO DE PALMER Rodrigo Cézar Limeira 1, Pedro Vieira de Azevedo 2, Wagner de Aragão Bezerra 3, Josefa Morgana Viturino de Almeida 3, Lindenberg Lucena

Leia mais

Easy Linux! FUNAMBOL FOR IPBRICK MANUAL. IPortalMais: a «brainmoziware» company www.iportalmais.pt. Manual Jose Lopes

Easy Linux! FUNAMBOL FOR IPBRICK MANUAL. IPortalMais: a «brainmoziware» company www.iportalmais.pt. Manual Jose Lopes IPortalMais: a «brainmoziware» company www.iportalmais.pt FUNAMBOL FOR IPBRICK MANUAL Easy Linux! Title: Subject: Client: Reference: Funambol Client for Microsoft Outlook Doc.: Author: N/Ref.: Date: 2009-04-17

Leia mais

REPÚBLICA DE MOÇAMBIQUE MINISTÉRIO DA AGRICULTURA PROGRAMA DE APOIO AO DESENVOLVIMENTO RURAL NAS PROVINCIAS DE MANICA E SOFALA - PADR

REPÚBLICA DE MOÇAMBIQUE MINISTÉRIO DA AGRICULTURA PROGRAMA DE APOIO AO DESENVOLVIMENTO RURAL NAS PROVINCIAS DE MANICA E SOFALA - PADR REPÚBLICA DE MOÇAMBIQUE MINISTÉRIO DA AGRICULTURA PROGRAMA DE APOIO AO DESENVOLVIMENTO RURAL NAS PROVINCIAS DE MANICA E SOFALA - PADR Concurso com Previa Qualificação Convite para a Manifestação de Interesse

Leia mais

Design de Armazéns: uma revisão sistemática da literatura.

Design de Armazéns: uma revisão sistemática da literatura. Nayara Nogueira da Costa Design de Armazéns: uma revisão sistemática da literatura. Dissertação de Mestrado Dissertação apresentada como requisito parcial para obtenção do grau de Mestre pelo Programa

Leia mais

Young Talent for Sciences Program

Young Talent for Sciences Program 1 Young Talent for Sciences Program J. B. M. Maria, Oliveira P. R. M., Oliveira P. A. W, M. S. Dahmouche, V. Cascon (presenter), V. F. Guimarães and P.C. B. Arantes Fundação CECIERJ Rua Visconde de Niterói,

Leia mais

SAP Cloud for Analytics. Alexandre Ribeiro

SAP Cloud for Analytics. Alexandre Ribeiro SAP Cloud for Analytics Alexandre Ribeiro Meu nome é Alexandre Ribeiro Presales Specialist SAP Brasil 2 3 Por que o Dados Analítico na Nuvem? Nos próximos 2 Anos 36% Já migrou ou irá migrar para BI na

Leia mais

Geração automática de suíte de teste para GUI a partir de Rede de Petri

Geração automática de suíte de teste para GUI a partir de Rede de Petri Raquel Jauffret Guilhon Geração automática de suíte de teste para GUI a partir de Rede de Petri Dissertação de Mestrado Dissertação apresentada como requisito parcial para obtenção do grau de Mestre pelo

Leia mais

Spirit Sampler Guia Rápido de Operação Manual Doc Number SpiritSampler-02-201406 - Tradução

Spirit Sampler Guia Rápido de Operação Manual Doc Number SpiritSampler-02-201406 - Tradução Spirit Sampler Guia Rápido de Operação Manual Doc Number SpiritSampler-02-201406 - Tradução Offices: Ocean Optics, Inc. World Headquarters 830 Douglas Ave., Dunedin, FL, USA 34698 Phone 727.733.2447 Fax

Leia mais

Efficient Locally Trackable Deduplication in Replicated Systems. www.gsd.inesc-id.pt. technology from seed

Efficient Locally Trackable Deduplication in Replicated Systems. www.gsd.inesc-id.pt. technology from seed Efficient Locally Trackable Deduplication in Replicated Systems João Barreto and Paulo Ferreira Distributed Systems Group INESC-ID/Technical University Lisbon, Portugal www.gsd.inesc-id.pt Bandwidth remains

Leia mais

Versão: 1.0. Segue abaixo, os passos para o processo de publicação de artigos que envolvem as etapas de Usuário/Autor. Figura 1 Creating new user.

Versão: 1.0. Segue abaixo, os passos para o processo de publicação de artigos que envolvem as etapas de Usuário/Autor. Figura 1 Creating new user. Órgão: Ministry of Science, Technology and Innovation Documento: Flow and interaction between users of the system for submitting files to the periodicals RJO - Brazilian Journal of Ornithology Responsável:

Leia mais

Normalização e interoperabilidade da informação geográfica

Normalização e interoperabilidade da informação geográfica Normalização e interoperabilidade da informação geográfica perspetivas para a formação em Engenharia Geográfica João Catalão Departamento de Engenharia Geográfica, Geofísica e Energia Faculdade de Ciências

Leia mais

booths remain open. Typical performance analysis objectives for the toll plaza system address the following issues:

booths remain open. Typical performance analysis objectives for the toll plaza system address the following issues: booths remain open. Typical performance analysis objectives for the toll plaza system address the following issues: What would be the impact of additional traffic on car delays? Would adding Simulação

Leia mais

學 術 研 究 獎 學 金 申 請 表. Bolsas de Investigação Académica Boletim de Candidatura. Academic Research Grant Application Form

學 術 研 究 獎 學 金 申 請 表. Bolsas de Investigação Académica Boletim de Candidatura. Academic Research Grant Application Form 澳 門 特 別 行 政 區 政 府 Governo da Região Administrativa Especial de Macau 文 化 局 Instituto Cultural 學 術 研 究 獎 學 金 申 請 表 ( 根 據 學 術 研 究 獎 學 金 規 章 第 九 條 第 一 款 ) Bolsas de Investigação Académica Boletim de Candidatura

Leia mais

A meus pais, Ari e Célia, sempre presentes, todo o meu amor incondicional!

A meus pais, Ari e Célia, sempre presentes, todo o meu amor incondicional! ii A meus pais, Ari e Célia, sempre presentes, todo o meu amor incondicional! iii Agradeço à Deus, esta força maior, pela vida, pela sabedoria e pelo amor. Mas, sobretudo, por me ensinar saber fazer ser

Leia mais

Curso CP100A - Google Cloud Platform Fundamentals (8h)

Curso CP100A - Google Cloud Platform Fundamentals (8h) Curso CP100A - Google Cloud Platform Fundamentals (8h) Este curso virtual liderado por um instrutor, com 8 horas de duração, introduz os participantes aos produtos e serviços do Google Cloud Platform.

Leia mais

Design de Multimédia e Interacção

Design de Multimédia e Interacção índice 1. Interacção 1.1 Definições 2.1 Definições 2.2 Definições - diagrama 1 2.3 Definições - sumário 2.4 Princípios - diagrama 2 2.5 So, What is Interaction Design? Bibliografia 1. Interacção 1.1 Definições

Leia mais

Aplicações - SQL. Banco de Dados: Teoria e Prática. André Santanchè e Luiz Celso Gomes Jr Instituto de Computação UNICAMP Agosto de 2013

Aplicações - SQL. Banco de Dados: Teoria e Prática. André Santanchè e Luiz Celso Gomes Jr Instituto de Computação UNICAMP Agosto de 2013 Aplicações - SQL Banco de Dados: Teoria e Prática André Santanchè e Luiz Celso Gomes Jr Instituto de Computação UNICAMP Agosto de 2013 Picture by Steve Kelley 2008 SQL SQL Structured Query Language Originalmente:

Leia mais

Types of Investments: Equity (9 companies) Convertible Notes (10 companies)

Types of Investments: Equity (9 companies) Convertible Notes (10 companies) IMPACT INVESTING WE STARTED... A Venture Capital Fund Focused on Impact Investing Suport: Financial TA Criterias to select a company: Social Impact Profitabilty Scalability Investment Thesis (Ed, HC,

Leia mais

Intellectual Property. IFAC Formatting Guidelines. Translated Handbooks

Intellectual Property. IFAC Formatting Guidelines. Translated Handbooks Intellectual Property IFAC Formatting Guidelines Translated Handbooks AUTHORIZED TRANSLATIONS OF HANDBOOKS PUBLISHED BY IFAC Formatting Guidelines for Use of Trademarks/Logos and Related Acknowledgements

Leia mais

Air Quality Photochemical Simulations using the system MM5 SMOKE CMAQ for Brazil

Air Quality Photochemical Simulations using the system MM5 SMOKE CMAQ for Brazil NCQAr LAMMA UFRJ UFRJ CCMN IGEO LAMMA NCQAr Universidade Federal do Rio de Janeiro Centro de Ciências Matemáticas e da Natureza Instituto de Geociências - Departamento de Meteorologia Laboratório de Modelagem

Leia mais

Mestrado em Ciências Jurídicas Especialização em História do Direito 2015-16

Mestrado em Ciências Jurídicas Especialização em História do Direito 2015-16 Mestrado em Ciências Jurídicas Especialização em História do Direito Unidade curricular História do Direito Português I (1º sem). Docente responsável e respectiva carga lectiva na unidade curricular Prof.

Leia mais

Company Presentation COMPANY

Company Presentation COMPANY COMPANY ATRIA is a integrator of systems of Automation enclosing the most diverse segments of market. We count on the excellency technique and more than 15 years experience of our team in the Industrial

Leia mais

SciELO Brasil Crossref

SciELO Brasil Crossref SciELO Brasil Crossref Sobre o SciELO (About SciELO) Lançado no Brasil em 1997 pela FAPESP e BIREME (Launched in Brazil in 1997 by a FAPESP-BIREME joint project) FAPESP (The State of São Paulo Research

Leia mais

Utilização de um banco de dados relacional no Sistema de Informações Geográfica (SIG) para o cadastro florestal

Utilização de um banco de dados relacional no Sistema de Informações Geográfica (SIG) para o cadastro florestal Utilização de um banco de dados relacional no Sistema de Informações Geográfica (SIG) para o cadastro florestal Use of relational database in a Geographical Information System (GIS) for forest register

Leia mais

Quebrando paradigmas: a disponibilização de dados de biodiversidade - o exemplo do PPBio Amazônia Ocidental

Quebrando paradigmas: a disponibilização de dados de biodiversidade - o exemplo do PPBio Amazônia Ocidental Quebrando paradigmas: a disponibilização de dados de biodiversidade - o exemplo do PPBio Amazônia Ocidental Flávia Fonseca Pezzini, Ricardo Braga-Neto, Debora Drucker, William Magnusson flaviapezzini@gmail.com

Leia mais

Multicriteria Impact Assessment of the certified reference material for ethanol in water

Multicriteria Impact Assessment of the certified reference material for ethanol in water Multicriteria Impact Assessment of the certified reference material for ethanol in water André Rauen Leonardo Ribeiro Rodnei Fagundes Dias Taiana Fortunato Araujo Taynah Lopes de Souza Inmetro / Brasil

Leia mais

User interface evaluation experiences: A brief comparison between usability and communicability testing

User interface evaluation experiences: A brief comparison between usability and communicability testing User interface evaluation experiences: A brief comparison between usability and communicability testing Kern, Bryan; B.S.; The State University of New York at Oswego kern@oswego.edu Tavares, Tatiana; PhD;

Leia mais

Proposta de Criação do Mestrado em Gestão Logística. III - Informação Relativa ao Suplemento ao Diploma

Proposta de Criação do Mestrado em Gestão Logística. III - Informação Relativa ao Suplemento ao Diploma Proposta de Criação do Mestrado em Logística III - Informação Relativa ao Suplemento ao Diploma De acordo com o Despacho RT 41/2005 de 19 de Setembro Universidade do Minho Escola de Economia e Departamento

Leia mais

Oficinas de ciência na era digital: muito além da cartolina e do lápis de cor

Oficinas de ciência na era digital: muito além da cartolina e do lápis de cor RELATOS DE EXPERIÊNCIAS Oficinas de ciência na era digital: muito além da cartolina e do lápis de cor Fabio Nauras Akhras Grupo de Tecnologias de Mídia para a Inclusão Social. Centro de Tecnologia da Informação

Leia mais

MARCELO DE LIMA BRAZ REDUÇÃO DA QUANTIDADE DE REPROCESSO NO SETOR DE PRODUÇÃO DE CALDOS ALIMENTÍCIOS NA EMPRESA DO RAMO ALIMENTÍCIO (ERA).

MARCELO DE LIMA BRAZ REDUÇÃO DA QUANTIDADE DE REPROCESSO NO SETOR DE PRODUÇÃO DE CALDOS ALIMENTÍCIOS NA EMPRESA DO RAMO ALIMENTÍCIO (ERA). MARCELO DE LIMA BRAZ REDUÇÃO DA QUANTIDADE DE REPROCESSO NO SETOR DE PRODUÇÃO DE CALDOS ALIMENTÍCIOS NA EMPRESA DO RAMO ALIMENTÍCIO (ERA). Poços de Caldas / MG 2014 MARCELO DE LIMA BRAZ REDUÇÃO DA QUANTIDADE

Leia mais

UNIVERSIDADE ESTADUAL DE CAMPINAS COORDENADORIA DE RELAÇÕES INTERNACIONAIS International Relations Office

UNIVERSIDADE ESTADUAL DE CAMPINAS COORDENADORIA DE RELAÇÕES INTERNACIONAIS International Relations Office UNIVERSIDADE ESTADUAL DE CAMPINAS COORDENADORIA DE RELAÇÕES INTERNACIONAIS International Relations Office FORMULÁRIO DE CANDIDATURA PARA ESTUDANTE DE INTERCÂMBIO EXCHANGE STUDENT APPLICATION FORM Semestre

Leia mais

11ª Conferência Internacional da LARES Centro Brasileiro Britânico, São Paulo - Brasil 14, 15 e 16 de Setembro de 2011

11ª Conferência Internacional da LARES Centro Brasileiro Britânico, São Paulo - Brasil 14, 15 e 16 de Setembro de 2011 11ª Conferência Internacional da LARES Centro Brasileiro Britânico, São Paulo - Brasil 14, 15 e 16 de Setembro de 2011 O Programa de Desenvolvimento Gerencial para Empresas de Projeto Flavia Rodrigues

Leia mais