• Refine Query
  • Source
  • Publication year
  • to
  • Language
  • 2
  • 1
  • 1
  • Tagged with
  • 4
  • 4
  • 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

ESTRUTURA E DINÂMICA DO FUNCIONAMENTO PSÍQUICO DE HOMENS ENVOLVIDOS EM VIOLÊNCIA DOMÉSTICA / Structure and dynamics of psychic functioning of men involved in domestic violence

Hokama, Erica 27 March 2015 (has links)
Made available in DSpace on 2016-08-03T16:34:37Z (GMT). No. of bitstreams: 1 Erica Hokama.pdf: 943258 bytes, checksum: 00eb62ff59de2a5d73eebf6d111921e9 (MD5) Previous issue date: 2015-03-27 / Coordenação de Aperfeiçoamento de Pessoal de Nível Superior / Violence of any kind and nature, is a phenomenon that happens since the beginning. The World Health Organization defines violence as the intentional use of physical force or power, real or threatened, against oneself, against another person, against a group or community, which can result in death, injury, psychological damage, problems of development or privation. Domestic violence is defined by the APA (2007) as any action that causes physical injury to one or more members of your family unit and can occur from a generation conflict (against children) and gender (violence against women) by setting up a physical assault, sexual abuse, psychological abuse, neglect within the family, perpetrated by an aggressor in superiority conditions (physical, age, social, psychological and / or hierarchical). This research aims to investigate the structure and dynamics of Psychic Functioning of Men Involved in Domestic Violence. We used the qualitative method, with four men in domestic violence situations. We used the qualitative method, with four men in domestic violence situations. As form of data collection was used an interview and Test of Object Relations (TRO) Phillipson. When analyzing the results, it can be observed that the fragile ego fears loneliness, the loss situations, and destructive attacks of the id and the permissive superego not contain them, and to support the persecutory attacks of objects, and depending on the paranoid and persecutory guilt the ego uses massive projective identification and idealization to hedge its destructiveness, staying in the paranoid-schizoid position. We conclude that the analysis of the structure and psychic dynamics and psychological treatment (individual or group) of men involved in domestic violence, together with other legal and social measures are necessary actions, therefore, can be a way of help- them cope with their limitations, deal with their anxieties, understand and control impulses, review and understand their beliefs and work your self-esteem. Starting from the assumption that domestic violence occurs in the relationship between men and women, treatment and understanding of the psychological aspects of men involved in domestic violence are extremely important to minimize this phenomenon, and should be combined with those already addressed to women. / A violência, de qualquer tipo e natureza, é um fenômeno que acontece desde os primórdios. A Organização Mundial de Saúde define violência como o uso intencional da força física ou do poder, real ou por ameaça, contra a própria pessoa, contra outra pessoa, contra um grupo ou uma comunidade, que pode resultar em morte, lesão, dano psicológico, problemas de desenvolvimento ou privação. A violência doméstica é definida pela APA como qualquer ação que causa dano físico a um ou mais membros de sua unidade familiar e pode ocorrer a partir de um conflito de gerações e de gênero, configurando-se por agressão física, abuso sexual, abuso psicológico, negligência, dentro da família, perpetradas por um agressor em condições de superioridade (física, etária, social, psíquica e/ou hierárquica). Esta pesquisa tem como objetivo investigar a Estrutura e dinâmica do Funcionamento Psíquico de Homens Envolvidos em Violência Doméstica. Utilizou-se o método clínico-qualitativo, com quatro homens em situação de violência doméstica. Como forma de coleta de dados foi empregada uma entrevista e o Teste das Relações Objetais (TRO) de Phillipson. Ao analisar os resultados, pode-se observar que o ego fragilizado teme a solidão, as situações de perda, e os ataques destrutivos do id e o superego permissivo não os contêm, e para suportar os ataques persecutórios dos objetos, e em função da persecutoriedade e da culpa persecutória o ego recorre a identificação projetiva maciça e a idealização para proteger-se da destrutividade, permanecendo na posição esquizoparanóide. Conclui-se que a análise da estrutura e da dinâmica psíquica e o tratamento psicológico (individual ou em grupo) de homens envolvidos em violência doméstica, em conjunto com outras medidas judiciais e sociais são ações necessárias, pois, pode ser uma forma de ajudá-los a enfrentar suas limitações, lidar com suas angústias, entender e controlar os impulsos, rever e compreender suas crenças e trabalhar sua autoestima. Partindo-se do pressuposto que a violência doméstica ocorre na relação entre homem-mulher, o tratamento e o entendimento dos aspectos psicológicos de homens envolvidos em violência doméstica são de extrema importância para minimizar este fenômeno, e deve ser aliado às ações, já existentes dirigidas às mulheres.
2

Capturing JUnit Behavior into Static Programs : Static Testing Framework

Siddiqui, Asher January 2010 (has links)
<p>In this research paper, it evaluates the benefits achievable from static testing framework by analyzing and transforming the <em>JUnit3.8 </em>source code and static execution of transformed code. Static structure enables us to analyze the code statically during creation and execution of test cases. The concept of research is by now well established in static analysis and testing development. The research approach is also increasingly affecting the static testing process and such research oriented work has proved particularly valuable for those of us who want to understand the reflective behavior of <em>JUnit3.8 Framework</em>.</p><p><em> JUnit3.8 Framework</em> uses <em>Java Reflection API</em> to invoke core functionality (test cases creation and execution) dynamically. However, <em>Java Reflection API</em> allows developers to access and modify structure and behavior of a program.  Reflection provides flexible solution for creating test cases and controlling the execution of test cases. Java reflection helps to encapsulate test cases in a single object representing the test suite. It also helps to associate each test method with a test object. Where reflection is a powerful tool to perform potential operations, on the other hand, it limits static analysis. Static analysis tools often cannot work effectively with reflection.</p><p>In order to avoid the reflection, <em>Static Testing Framework</em> provides a static platform to analyze the <em>JUnit3.8</em> source code and transform it into non-reflective version that emulates the dynamic behavior of <em>JUnit3.8</em>. The transformed source code has possible leverage to replace reflection with static code and does same things in an execution environment of <em>Static Testing Framework</em> that reflection does in <em>JUnit3.8</em>. More besides, the transformed code also enables execution environment of <em>Static Testing Framework</em> to run test methods statically. In order to measure the degree of efficiency, the implemented tool is evaluated. The evaluation of <em>Static Testing Framework</em> draws results for different Java projects and these statistical data is compared with <em>JUnit3.8</em> results to measure the effectiveness of <em>Static Testing Framework</em>. As a result of evaluation, <em>STF</em> can be used for static creation and execution of test cases up to <em>JUnit3.8</em> where test cases are not creating within a test class and where real definition of constructors is not required. These problems can be dealt as future work by introducing a middle layer to execute test fixtures for each test method and by generating test classes as per real definition of constructors.</p>
3

Capturing JUnit Behavior into Static Programs : Static Testing Framework

Siddiqui, Asher January 2010 (has links)
In this research paper, it evaluates the benefits achievable from static testing framework by analyzing and transforming the JUnit3.8 source code and static execution of transformed code. Static structure enables us to analyze the code statically during creation and execution of test cases. The concept of research is by now well established in static analysis and testing development. The research approach is also increasingly affecting the static testing process and such research oriented work has proved particularly valuable for those of us who want to understand the reflective behavior of JUnit3.8 Framework. JUnit3.8 Framework uses Java Reflection API to invoke core functionality (test cases creation and execution) dynamically. However, Java Reflection API allows developers to access and modify structure and behavior of a program.  Reflection provides flexible solution for creating test cases and controlling the execution of test cases. Java reflection helps to encapsulate test cases in a single object representing the test suite. It also helps to associate each test method with a test object. Where reflection is a powerful tool to perform potential operations, on the other hand, it limits static analysis. Static analysis tools often cannot work effectively with reflection. In order to avoid the reflection, Static Testing Framework provides a static platform to analyze the JUnit3.8 source code and transform it into non-reflective version that emulates the dynamic behavior of JUnit3.8. The transformed source code has possible leverage to replace reflection with static code and does same things in an execution environment of Static Testing Framework that reflection does in JUnit3.8. More besides, the transformed code also enables execution environment of Static Testing Framework to run test methods statically. In order to measure the degree of efficiency, the implemented tool is evaluated. The evaluation of Static Testing Framework draws results for different Java projects and these statistical data is compared with JUnit3.8 results to measure the effectiveness of Static Testing Framework. As a result of evaluation, STF can be used for static creation and execution of test cases up to JUnit3.8 where test cases are not creating within a test class and where real definition of constructors is not required. These problems can be dealt as future work by introducing a middle layer to execute test fixtures for each test method and by generating test classes as per real definition of constructors.
4

Skener elektromagnetických polí a jeho využití při měření elektromagnetické kompatibility / Electromagnetic field scanner and its utilization in EMC measurement

Chupáč, Michal January 2013 (has links)
Master’s thesis is focused on making the acquaintance of EMC issues and ways of electromagnetic field scanner RS321 utilization for pre-compliance measurements. First part contains analysis of available equipment’s influence on measurement results on the basis of gathered specification. Next part includes an example measurement used as operational manual for scanner and its controlling program. The most important part is correction evaluation for performed EMI measurement of signal generator using its EMC certification protocol and application of gained correction curve on independent EMI measurement of device tested by EMC testing laboratory. Other possibilities of scanner utilization are mentioned in the next chapters. Last part of the thesis contains suitability evaluation of EMC scanner on the basis of findings from performed measurements.

Page generated in 0.0494 seconds