• Refine Query
  • Source
  • Publication year
  • to
  • Language
  • 3
  • 2
  • 2
  • 1
  • Tagged with
  • 8
  • 8
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • About
  • The Global ETD Search service is a free service for researchers to find electronic theses and dissertations. This service is provided by the Networked Digital Library of Theses and Dissertations.
    Our metadata is collected from universities around the world. If you manage a university/consortium/country archive and want to be added, details can be found on the NDLTD website.
1

Évaluation, par simulation, des performances de serveurs de commerce électronique : étude de cas : le serveur GNP

Bah, Slimane January 2003 (has links)
Mémoire numérisé par la Direction des bibliothèques de l'Université de Montréal.
2

Epistémologie et pratiques psychométriques / Epistemology and psychometric practices

Bernard, Jean-Louis 04 February 2016 (has links)
Cette thèse expose les résultats d’une recherche praticienne inédite menée pendant plusieurs décennies auprès de psychologues du travail exerçant une fonction de sélection-orientation, dans un organisme public, auprès d’une population d’adultes dans des conditions professionnelles et techniques strictement identiques. Toute évaluation d’un potentiel intellectuel réalisée selon la méthode des tests psychométriques n’est pas réductible aux résultats obtenus. Ceux-ci doivent nécessairement être interprétés par le psychologue pratiquant l’examen. C’est une exigence méthodologique inhérente à la pratique des tests. Dans cette phase d’interprétation se trouve à l’œuvre un processus décisionnel que l’on peut supposer d’autant plus opaque qu’il est sous l’emprise d’un pouvoir discrétionnaire : celui du praticien en charge de l’évaluation. Cette nécessité du processus d’interprétation d’une performance obtenue à un test pourrait être de nature à contrarier, voire contredire, les règles de rigueur et de stricte objectivité de la méthode expérimentale à laquelle se référent les tests psychométriques. Il est donc légitime d’avancer l’hypothèse que la conclusion émise par l’évaluateur ne peut échapper pour une part à sa subjectivité. Ne résulte-t-il pas alors un hiatus induisant une rupture épistémologique ? L’ampleur des données recueillies à partir de près de 40.000 dossiers psychotechniques permet une étude différentielle de la « production » de ces psychologues du travail. Par une approche statistique, nous avons analysé la variabilité des interprétations et des décisions associées au sein de l’échantillon des évaluateurs. Il ressort des analyses des données qu’est confirmée l’hypothèse initiale d’un défaut, intrinsèquement lié à leurs mise en pratique, des techniques de tests psychométriques pour parvenir à un niveau d’objectivité satisfaisant permettant d’appuyer l’orientation des sujets candidats. Ces travaux de recherche qui réunissent en définitive les caractéristiques et les conditions d’une approche docimologique apportent une preuve supplémentaire que ces techniques d’évaluation ne sauraient prétendre au niveau d’objectivité scientifique dont elles se réclament. Ils mettent en évidence l’empreinte subjective liée à toute évaluation à base de tests psychométriques conduisant à s’interroger sur la pertinence des discours habituellement tenus sur l’utilité sociale de celle-ci. / This thesis presents the results of unprecedented practitioner research conducted for several decades with work psychologists holding a position of selection and work orientation, in a public organization, in a population of adults in strictly identical professional and technical conditions.Any assessment of intellectual potential realized according to psychometric testing method is not reducible to the results obtained. These must necessarily be interpreted by the psychologist doing examination. This is an inherent methodological requirement to conducting tests. In this phase of interpretation there is a decision-making process that we can assume even more opaque for it is under the influence of discretion: that of a practitioner in charge of the evaluation.This necessity of the interpretation process of a test performance might be likely to impede or even contradict the rules of rigor and of strict objectivity of the experimental method to which the psychometric tests refer. It is therefore legitimate to advance the hypothesis that the conclusion issued by the evaluator can not avoid in part his subjectivity. Does not it follow then a hiatus inducing an epistemological break?The extent of data collected from nearly 40,000 psychotechnical records allows a different study of the "production" of these work psychologists. With a statistical approach, we have analyzed the variability of interpretations and associated decisions within the sample of evaluators. It appears from the data analysis that was confirmed the initial assumption of a flaw, intrinsically bound to their implementation, psychometric testing techniques to achieve a satisfactory level of objectivity that will support the orientation of candidates.This research project that ultimately brings together the characteristics and conditions of a docimological approach provides an additional evidence that these assessment techniques can not assert the level of scientific objectivity which they claim. They highlight the subjective mark of any assessment based on psychometric tests leading to wonder about a relevance of position usually held on the social utility of assessment.
3

Extending Peass to Detect Performance Changes of Apache Tomcat

Rosenlund, Stefan 07 August 2023 (has links)
New application versions may contain source code changes that decrease the application’s performance. To ensure sufficient performance, it is necessary to identify these code changes. Peass is a performance analysis tool using performance measurements of unit tests to achieve that goal for Java applications. However, it can only be utilized for Java applications that are built using the tools Apache Maven or Gradle. This thesis provides a plugin for Peass that enables it to analyze applications built with Apache Ant. Peass utilizes the frameworks Kieker and KoPeMe to record the execution traces and measure the response times of unit tests. This results in the following tasks for the Peass-Ant plugin: (1) Add Kieker and KoPeMe as dependencies and (2) Execute transformed unit tests. For the first task, our plugin programmatically resolves the transitive dependencies of Kieker and KoPeMe and modifies the XML buildfiles of the application under test. For the second task, the plugin orchestrates the process that surrounds test execution—implementing performance optimizations for the analysis of applications with large codebases—and executes specific Ant commands that prepare and start test execution. To make our plugin work, we additionally improved Peass and Kieker. Therefore, we implemented three enhancements and identified twelve bugs. We evaluated the Peass-Ant plugin by conducting a case study on 200 commits of the open-source project Apache Tomcat. We detected 14 commits with 57 unit tests that contain performance changes. Our subsequent root cause analysis identified nine source code changes that we assigned to three clusters of source code changes known to cause performance changes.:1. Introduction 1.1. Motivation 1.2. Objectives 1.3. Organization 2. Foundations 2.1. Performance Measurement in Java 2.2. Peass 2.3. Apache Ant 2.4. Apache Tomcat 3. Architecture of the Plugin 3.1. Requirements 3.2. Component Structure 3.3. Integrated Class Structure of Peass and the Plugin 3.4. Build Modification Tasks for Tomcat 4. Implementation 4.1. Changes in Peass 4.2. Changes in Kieker and Kieker-Source-Instrumentation 4.3. Buildfile Modification of the Plugin 4.4. Test Execution of the Plugin 5. Evaluative Case Study 5.1. Setup of the Case Study 5.2. Results of the Case Study 5.3. Performance Optimizations for Ant Applications 6. Related Work 6.1. Performance Analysis Tools 6.2. Test Selection and Test Prioritization Tools 6.3. Empirical Studies on Performance Bugs and Regressions 7. Conclusion and Future Work 7.1. Conclusion 7.2. Future Work / Neue Versionen einer Applikation können Quelltextänderungen enthalten, die die Performance der Applikation verschlechtern. Um eine ausreichende Performance sicherzustellen, ist es notwendig, diese Quelltextänderungen zu identifizieren. Peass ist ein Performance-Analyse-Tool, das die Performance von Unit-Tests misst, um dieses Ziel für Java-Applikationen zu erreichen. Allerdings kann es nur für Java-Applikationen verwendet werden, die eines der Build-Tools Apache Maven oder Gradle nutzen. In dieser Arbeit wird ein Plugin für Peass entwickelt, das es ermöglicht, mit Peass Applikationen zu analysieren, die das Build-Tool Apache Ant nutzen. Peass verwendet die Frameworks Kieker und KoPeMe, um Ausführungs-Traces von Unit-Tests aufzuzeichnen und Antwortzeiten von Unit-Tests zu messen. Daraus resultieren folgende Aufgaben für das Peass-Ant-Plugin: (1) Kieker und KoPeMe als Abhängigkeiten hinzufügen und (2) Transformierte Unit-Tests ausführen. Für die erste Aufgabe löst das Plugin programmbasiert die transitiven Abhängigkeiten von Kieker und KoPeMe auf und modifiziert die XML-Build-Dateien der zu testenden Applikation. Für die zweite Aufgabe steuert das Plugin den Prozess, der die Testausführung umgibt, und führt spezielle Ant-Kommandos aus, die die Testausführung vorbereiten und starten. Dabei implementiert es Performanceoptimierungen, um auch Applikationen mit einer großen Codebasis analysieren zu können. Um die Lauffähigkeit des Plugins sicherzustellen, wurden zusätzlich Verbesserungen an Peass und Kieker vorgenommen. Dabei wurden drei Erweiterungen implementiert und zwölf Bugs identifiziert. Um das Peass-Ant-Plugin zu bewerten, wurde eine Fallstudie mit 200 Commits des Open-Source-Projekts Apache Tomcat durchgeführt. Dabei wurden 14 Commits mit 57 Unit-Tests erkannt, die Performanceänderungen enthalten. Unsere anschließende Ursachenanalyse identifizierte neun verursachende Quelltextänderungen. Diese wurden drei Clustern von Quelltextänderungen zugeordnet, von denen bekannt ist, dass sie eine Veränderung der Performance verursachen.:1. Introduction 1.1. Motivation 1.2. Objectives 1.3. Organization 2. Foundations 2.1. Performance Measurement in Java 2.2. Peass 2.3. Apache Ant 2.4. Apache Tomcat 3. Architecture of the Plugin 3.1. Requirements 3.2. Component Structure 3.3. Integrated Class Structure of Peass and the Plugin 3.4. Build Modification Tasks for Tomcat 4. Implementation 4.1. Changes in Peass 4.2. Changes in Kieker and Kieker-Source-Instrumentation 4.3. Buildfile Modification of the Plugin 4.4. Test Execution of the Plugin 5. Evaluative Case Study 5.1. Setup of the Case Study 5.2. Results of the Case Study 5.3. Performance Optimizations for Ant Applications 6. Related Work 6.1. Performance Analysis Tools 6.2. Test Selection and Test Prioritization Tools 6.3. Empirical Studies on Performance Bugs and Regressions 7. Conclusion and Future Work 7.1. Conclusion 7.2. Future Work
4

Hodnocení motorické výkonnosti a držení těla u dětí mladšího školního věku / Assessment of motor performance and body holding in young school-age children

Pinkasová, Lenka January 2018 (has links)
Title: Assessment of motor performance and body holding in young school-age children Objectives: The aim of this thesis is the assessment of motor performance, body holding and basic information concerning movement activity in young school-age children and to reveal any possible interrelations between these data. Hypothesis: 1. The volume of movement load in young school-age children affects their motor performance and body holding. 2. Motor performance evaluated by a modification of the UNIFITTEST has a significant correlation with body holding in young school age children. Methods: In order to determine the level of motor performance of the children, I used a modification of the UNIFITTEST (Měkota et al., 2002), while I also evaluated their basic somatic parameters. Their body holding was evaluated according to Mathias (Hošková and Matoušová 2007), Jaroš and Lomníček (Hošková and Matoušová 2007) and Adams's Test (Haladová and Nechvátalová 2005). Information about the frequency of the children's sports activities and their lifestyle, I collected with the form of a short survey. The research group consists of 19 boys and 11 girls with an average age of 9 years old (age range 8-11 years - by 1.1.2018), mean body height of 1.4 m (σ=8,2 cm) and mean body weight of 36.5 kg (σ=9,1 kg). Results:...
5

Desenvolvimento e validaÃÃo de metodologia cromatogrÃfica para determinaÃÃo de bisfenol A em simulantes de alimentos de ensaios de migraÃÃo / Development and validation of chromatographic method for the determination of bisphenol A in food simulants of migration tests.

Gilberto Ferreira Linhares Junior 25 May 2012 (has links)
CoordenaÃÃo de AperfeiÃoamento de Pessoal de NÃvel Superior / Este trabalho teve como objetivo o desenvolvimento e metodologia cromatogrÃfica para a determinaÃÃo de bisfenol A em quatro diferentes simulantes de alimentos utilizando cromatografia lÃquida de alta eficiÃncia e detector de arranjo de diodo (PDA) para suporte em enasios de migraÃÃo. Os simulantes utilizados foram A (Ãgua purificada), B (soluÃÃo aquosade Ãcido acÃtico a 3%), C (soluÃÃo aquosa de etanol a 10%) e D (soluÃÃo aquosa de etanol a 95%). A avaliaÃÃo preliminar das condiÃÃes de anÃlise foi conduzida com a finalidade de estabelecer aquelas que conferem os melhores resultados, os quais foram o sistema de fase mÃvel acetonitrila-Ãgua na proporÃÃo volumÃtrica 70:30, temperatura de 40ÂC do forno da coluna e comprimento de onda em 201 nm. O tempo de retenÃÃo do bisfenol A encontrado foi de 3,25 minutos. Para os simulantes, o mÃtodo de tratamento consistiu da evaporaÃÃo de 1 ml de amostra amostra a 60ÂC com duraÃÃo de 1 hora e 45 minutos (A e C), 2 horas (B) e 1 hora (D). Em sequÃncia, o mÃtodo foi avaliado com relaÃÃo aos parÃmetros de validaÃÃo analÃtica, incluindo linearidade, limite de detecÃÃo e de quantificaÃÃo, repetibilidade, precisÃo intermediÃria entre analistas diferentes e entre dias diferentes, recuperaÃÃo,seletividade e robustez. O mÃtodo desenvolvido para o simulante A apresentou coeficiente de determinaÃÃo (rÂ) 0,9988 ou superior no intervalo testado (50 a 2000 ppb); limite de detecÃÃo e de quantificaÃÃo , respectivamente, 14,7 ppb e 48,9 ppb; coeficiente de variaÃÃo para repetibilidade de 2,07%, para a precisÃo inter-dias de 1,05% e para a precisÃo inter-analistas de 1,76%; recuperaÃÃo de 97,9% (CV= 1,3%) (50 ppb), 99,2% (CV= 0,7%) (1000 ppb) e 103,6% (CV= 0,4%). Os resultados obtidos para o simulante B incluem coeficiente de determinaÃÃo (rÂ) 0,9972 ou superior; limite de detecÃÃo e de quantificaÃÃo, respectivamente, 7,8 ppb e 26,0 ppb; coeficientes de variaÃÃo para repetibilidade de 3,74%, precisÃo inter-dias de 0,14% e precisÃo inter-analistas de 0,2%; recuperaÃÃo de 94,8% (CV= 4,8%) (50 ppb), 99,8% (CV= 0,2%) (1000 ppb) e 92,3% (CV= 1,2%) (2000 ppb). Para o simulante C os resultados incluem coeficiente de determinaÃÃo (rÂ) 0,9988 ou superior; limite de detecÃÃo e de quantificaÃÃo, respectivamente, 4,8 ppb e 16,1 ppb; coeficiente de variaÃÃo para repetibilidade de 2,84%, precisÃo inter-dias de 1,37%e precisÃo inter-analistas de 0,14%; recuperaÃÃo de104,6% (CV= 2,5%) (50 ppb), 99,8% (CV= 1,3%) (1000 ppb) e 102,5% (CV= 2,9%) (2000 ppb). Os resultados para o simulante D foram r 0,9984 ou superior; limite de detecÃÃo e de quantificaÃÃo,respectivamente, 13,7 ppb e 45,6 ppb; coeficiente de variaÃÃo para repetibilidade de 2,0%, precisÃo inter-dias de 1,9% e precisÃo inter-analistas de1,2%; recuperÃÃo de 92,6% (CV= 1,76%) (50 ppb), 99,9% (CV= 0,9%) (1000 ppb) e 104,8% (CV= 2,7%) (2000 ppb). NÃo foram observados interferentes importantes para o mÃtodo testado, mostrando-se robusto. / This study aimed to develop and chromatographic method for the determination of bisphenol A in four different food simulants using high performance liquid chromatography and diode array detector (PDA) to support in enasios migration. The simulating used were A (purified water), B (solution aquosade 3% acetic acid), C (aqueous 10% ethanol) and D (aqueous 95% ethanol). Preliminary assessment of the analytical conditions was conducted in order to establish those that confer the best results, which were the system of mobile phase acetonitrile-water in the ratio 70:30 by volume, 40  C oven and length of the column wavelength of 201 nm. The retention time of the bisphenol A was found to be 3.25 minutes. For simulating the method of treatment consists of evaporation of sample 1 ml of sample at 60  C with duration of 1 hour and 45 minutes (A and C), 2 hours (B) and 1 hour (D). In sequence, the method was evaluated with respect to the parameters of analytical validation, including linearity, limit of detection and quantification, repeatability, intermediate precision between different analysts and between different days, recovery, selectivity and robustness. The method for simulating the coefficient for determining (r Â) or greater than 0.9988 in the range tested (50 to 2000 ppb); detection limit and quantitation, respectively, 14.7 ppb and 48.9 ppb; coefficient variation in repeatability of 2.07% for the inter-day precision of 1.05% and the accuracy of inter-Analyst 1.76%, recovery of 97.9% (CV = 1.3%) (50 ppb ), 99.2% (CV = 0.7%) (1000 ppb) and 103.6% (CV = 0.4%). The results for the simulant B includes coefficient of determination (r Â) 0.9972 or higher; limit of detection and quantification, respectively, 7.8 ppb and 26.0 ppb; coefficients of variation for repeatability of 3.74%, inter day precision, accuracy and 0.14% cross-Analyst 0.2%, 94.8% recovery (CV = 4.8%) (50 ppb) and 99.8% (CV = 0.2% ) (1000 ppb) and 92.3% (CV = 1.2%) (2000 ppb). For the simulant C results include a coefficient of determination (r Â) 0.9988 or higher; limit of detection and quantification, respectively, 4.8 ppb and 16.1 ppb, coefficient of variation for repeatability of 2.84%, accuracy inter-day precision of 1.37% and inter-analysts of 0.14%; de104 recovery, 6% (CV = 2.5%) (50 ppb), 99.8% (CV = 1.3%) ( 1000 ppb) to 102.5% (CV = 2.9%) (2000 ppb). The results for simulating D was 0.9984 r  or more, detection limit and quantitation, respectively, 13.7 ppb and 45.6 ppb; coefficient of variation of 2.0% to repeatability, accuracy of an inter-day 9% and accurate inter-de1 analysts, 2%; recuperÃÃo 92.6% (CV = 1.76%) (50 ppb) and 99.9% (CV = 0.9%) (1000 ppb) and 104 8% (CV = 2.7%) (2000 ppb). There were no significant interferences to the method tested and proved to be robust.
6

Cross-fertilizing formal approaches for protocol conformance and performance testing / Approches formelles croisées pour les tests de protocole de conformité et de performance

Che, Xiaoping 26 June 2014 (has links)
Les technologies de communication et les services web sont devenus disponibles dans notre vie numérique, les réseaux informatiques continuent de croître et de nouveaux protocoles de communication sont constamment définis et développés. Par la suite, la standardisation et la normalisation des protocoles sont dispensables pour permettre aux différents systèmes de dialoguer. Bien que ces normes peuvent être formellement vérifiés, les développeurs peuvent produire des erreurs conduisant à des implémentations défectueuses. C'est la raison pour laquelle leur mise en œuvre doit être strictement examinée. Cependant, la plupart des approches de tests actuels exigent une stimulation de l’exécution dans le cadre des tests (IUT). Si le système ne peut être consulté ou interrompu, l'IUT ne sera pas en mesure d'être testé. En outre, la plupart des travaux existants sont basées sur des modèles formels et très peu de travaux s'intéressent à la formalisation des exigences de performance. Pour résoudre ces problèmes, nous avons proposé une approche de test basé sur la logique "Horn" afin de tester passivement la conformité et la performance des protocoles. Dans notre approche, les exigences peuvent être formalisées avec précision. Ces exigences formelles sont également testées par des millions de messages collectés à partir des communicants réels. Les résultats satisfaisants des expériences effectuées ont prouvé le bon fonctionnement et l'efficacité de notre approche. Aussi pour satisfaire les besoins croissants de tests distribués en temps réel, nous avons également proposé un cadre de tests distribués et un cadre de tests en ligne et nous avons mis en œuvre notre plateforme dans un environnement réel à petite échelle avec succès / While today’s communications are essential and a huge set of services is available online, computer networks continue to grow and novel communication protocols are continuously being defined and developed. De facto, protocol standards are required to allow different systems to interwork. Though these standards can be formally verified, the developers may produce some errors leading to faulty implementations. That is the reason why their implementations must be strictly tested. However, most current testing approaches require a stimulation of the implementation under tests (IUT). If the system cannot be accessed or interrupted, the IUT will not be able to be tested. Besides, most of the existing works are based on formal models and quite few works study formalizing performance requirements. To solve these issues, we proposed a novel logic-based testing approach to test the protocol conformance and performance passively. In our approach, conformance and performance requirements can be accurately formalized using the Horn-Logic based syntax and semantics. These formalized requirements are also tested through millions of messages collected from real communicating environments. The satisfying results returned from the experiments proved the functionality and efficiency of our approach. Also for satisfying the increasing needs in real-time distributed testing, we also proposed a distributed testing framework and an online testing framework, and performed the frameworks in a real small scale environment. The preliminary results are obtained with success. And also, applying our approach under billions of messages and optimizing the algorithm will be our future works
7

Rolandic epilepsy : a neuroradiological, neuropsychological and oromotor study /

Lundberg, Staffan, January 2004 (has links)
Diss. (sammanfattning) Uppsala : Univ., 2004. / Härtill 5 uppsatser.
8

Desenvolvimento e validação de metodologia cromatográfica para determinação de bisfenol A em simulantes de alimentos de ensaios de migração / Development and validation of chromatographic method for the determination of bisphenol A in food simulants of migration tests.

Linhares Junior, Gilberto Ferreira January 2012 (has links)
LINHARES JUNIOR, Gilberto Ferreira. Desenvolvimento e validação de metodologia cromatográfica para determinação de bisfenol A em simulantes de alimentos de ensaios de migração. 2012. 101 f. : Dissertação (mestrado) - Universidade Federal do Ceará, Centro de Ciências Agrárias, Departamento de Tecnologia de Alimentos, Fortaleza-CE, 2012 / Submitted by Nádja Goes (nmoraissoares@gmail.com) on 2016-06-08T15:09:14Z No. of bitstreams: 1 2012_dis_gflinharesjunior.pdf: 1691103 bytes, checksum: 0abb8d914beb4b36dee06bc962679c7b (MD5) / Approved for entry into archive by Nádja Goes (nmoraissoares@gmail.com) on 2016-06-08T15:09:30Z (GMT) No. of bitstreams: 1 2012_dis_gflinharesjunior.pdf: 1691103 bytes, checksum: 0abb8d914beb4b36dee06bc962679c7b (MD5) / Made available in DSpace on 2016-06-08T15:09:30Z (GMT). No. of bitstreams: 1 2012_dis_gflinharesjunior.pdf: 1691103 bytes, checksum: 0abb8d914beb4b36dee06bc962679c7b (MD5) Previous issue date: 2012 / This study aimed to develop and chromatographic method for the determination of bisphenol A in four different food simulants using high performance liquid chromatography and diode array detector (PDA) to support in enasios migration. The simulating used were A (purified water), B (solution aquosade 3% acetic acid), C (aqueous 10% ethanol) and D (aqueous 95% ethanol). Preliminary assessment of the analytical conditions was conducted in order to establish those that confer the best results, which were the system of mobile phase acetonitrile-water in the ratio 70:30 by volume, 40 ° C oven and length of the column wavelength of 201 nm. The retention time of the bisphenol A was found to be 3.25 minutes. For simulating the method of treatment consists of evaporation of sample 1 ml of sample at 60 ° C with duration of 1 hour and 45 minutes (A and C), 2 hours (B) and 1 hour (D). In sequence, the method was evaluated with respect to the parameters of analytical validation, including linearity, limit of detection and quantification, repeatability, intermediate precision between different analysts and between different days, recovery, selectivity and robustness. The method for simulating the coefficient for determining (r ²) or greater than 0.9988 in the range tested (50 to 2000 ppb); detection limit and quantitation, respectively, 14.7 ppb and 48.9 ppb; coefficient variation in repeatability of 2.07% for the inter-day precision of 1.05% and the accuracy of inter-Analyst 1.76%, recovery of 97.9% (CV = 1.3%) (50 ppb ), 99.2% (CV = 0.7%) (1000 ppb) and 103.6% (CV = 0.4%). The results for the simulant B includes coefficient of determination (r ²) 0.9972 or higher; limit of detection and quantification, respectively, 7.8 ppb and 26.0 ppb; coefficients of variation for repeatability of 3.74%, inter day precision, accuracy and 0.14% cross-Analyst 0.2%, 94.8% recovery (CV = 4.8%) (50 ppb) and 99.8% (CV = 0.2% ) (1000 ppb) and 92.3% (CV = 1.2%) (2000 ppb). For the simulant C results include a coefficient of determination (r ²) 0.9988 or higher; limit of detection and quantification, respectively, 4.8 ppb and 16.1 ppb, coefficient of variation for repeatability of 2.84%, accuracy inter-day precision of 1.37% and inter-analysts of 0.14%; de104 recovery, 6% (CV = 2.5%) (50 ppb), 99.8% (CV = 1.3%) ( 1000 ppb) to 102.5% (CV = 2.9%) (2000 ppb). The results for simulating D was 0.9984 r ² or more, detection limit and quantitation, respectively, 13.7 ppb and 45.6 ppb; coefficient of variation of 2.0% to repeatability, accuracy of an inter-day 9% and accurate inter-de1 analysts, 2%; recuperção 92.6% (CV = 1.76%) (50 ppb) and 99.9% (CV = 0.9%) (1000 ppb) and 104 8% (CV = 2.7%) (2000 ppb). There were no significant interferences to the method tested and proved to be robust. / Este trabalho teve como objetivo o desenvolvimento e metodologia cromatográfica para a determinação de bisfenol A em quatro diferentes simulantes de alimentos utilizando cromatografia líquida de alta eficiência e detector de arranjo de diodo (PDA) para suporte em enasios de migração. Os simulantes utilizados foram A (água purificada), B (solução aquosade ácido acético a 3%), C (solução aquosa de etanol a 10%) e D (solução aquosa de etanol a 95%). A avaliação preliminar das condições de análise foi conduzida com a finalidade de estabelecer aquelas que conferem os melhores resultados, os quais foram o sistema de fase móvel acetonitrila-água na proporção volumétrica 70:30, temperatura de 40°C do forno da coluna e comprimento de onda em 201 nm. O tempo de retenção do bisfenol A encontrado foi de 3,25 minutos. Para os simulantes, o método de tratamento consistiu da evaporação de 1 ml de amostra amostra a 60°C com duração de 1 hora e 45 minutos (A e C), 2 horas (B) e 1 hora (D). Em sequência, o método foi avaliado com relação aos parâmetros de validação analítica, incluindo linearidade, limite de detecção e de quantificação, repetibilidade, precisão intermediária entre analistas diferentes e entre dias diferentes, recuperação,seletividade e robustez. O método desenvolvido para o simulante A apresentou coeficiente de determinação (r²) 0,9988 ou superior no intervalo testado (50 a 2000 ppb); limite de detecção e de quantificação , respectivamente, 14,7 ppb e 48,9 ppb; coeficiente de variação para repetibilidade de 2,07%, para a precisão inter-dias de 1,05% e para a precisão inter-analistas de 1,76%; recuperação de 97,9% (CV= 1,3%) (50 ppb), 99,2% (CV= 0,7%) (1000 ppb) e 103,6% (CV= 0,4%). Os resultados obtidos para o simulante B incluem coeficiente de determinação (r²) 0,9972 ou superior; limite de detecção e de quantificação, respectivamente, 7,8 ppb e 26,0 ppb; coeficientes de variação para repetibilidade de 3,74%, precisão inter-dias de 0,14% e precisão inter-analistas de 0,2%; recuperação de 94,8% (CV= 4,8%) (50 ppb), 99,8% (CV= 0,2%) (1000 ppb) e 92,3% (CV= 1,2%) (2000 ppb). Para o simulante C os resultados incluem coeficiente de determinação (r²) 0,9988 ou superior; limite de detecção e de quantificação, respectivamente, 4,8 ppb e 16,1 ppb; coeficiente de variação para repetibilidade de 2,84%, precisão inter-dias de 1,37%e precisão inter-analistas de 0,14%; recuperação de104,6% (CV= 2,5%) (50 ppb), 99,8% (CV= 1,3%) (1000 ppb) e 102,5% (CV= 2,9%) (2000 ppb). Os resultados para o simulante D foram r² 0,9984 ou superior; limite de detecção e de quantificação,respectivamente, 13,7 ppb e 45,6 ppb; coeficiente de variação para repetibilidade de 2,0%, precisão inter-dias de 1,9% e precisão inter-analistas de1,2%; recuperção de 92,6% (CV= 1,76%) (50 ppb), 99,9% (CV= 0,9%) (1000 ppb) e 104,8% (CV= 2,7%) (2000 ppb). Não foram observados interferentes importantes para o método testado, mostrando-se robusto.

Page generated in 0.1081 seconds