• Title/Summary/Keyword: 구조해석 소프트웨어

Search Result 267, Processing Time 0.023 seconds

Welding Technology for the Process Optimization by the Computer Code SYSWELD (SYSWELD를 이용한 용접 프로세스 제어 기술)

  • 이재경;이기훈
    • Journal of Welding and Joining
    • /
    • v.15 no.1
    • /
    • pp.36-45
    • /
    • 1997
  • 용접 구조물에 대한 프로세스 제어를 위하여 매우 효과적인 수단이 될 수 있는 SYSWELD 소프트웨어의 이론적인 개념 및 응용 기술에 대하여 소개하였다. 전술한 바와 같이 SYSWELD는 일반적으로 알려져 있는 범용 열 및 구조해석 상용 Code와는 달리 야금학적 이론이 접목되므로써 이전에는 고려하기 곤란했던 제어 인자들에 대하여 보다 정확한 정보를 얻을 수 있기 때문에 용접 프로세스 분야에 매우 적합한 시뮬레이션 Code라고 판단된다. 이와 같이 수치해석 기술을 응용함으로써 연구기관에서는 제반 현상들에 대하여 실험적인 접근방법보다 보다 효과적으로 이해할 수 있게 되어 궁극적으로 이론적 발전 및 실용화를 이룰 수 있으며, 또한 산업체에서는 현업에서 발생하는 결함의 제어 및 구조물이나 프로세스의 최적 설계 방안을 수립하는 일이 가능하기 때문에, 현재 용접 분야에 대한 컴퓨터 시뮬레이션 응용 기술에 대하여 관심이 집중되고 있다. 이에 당사는 SYSWELD를 비롯하여 공학 분야의 유용한 상용 Code에대한 공급 및 기술 지원 뿐만 아니라 엔지니어링 능력을 갖추고 이와 같은 추세에 부응하고자 하는 노력중에 있는 바, 용접 시뮬레이션 응용 기술에 대한 현황을 소개하고자 하였으므로 참고가 되기를 바란다.

  • PDF

Range Detection of Wa/Kwa Parallel Noun Phrase using a Probabilistic Model and Modification Information (확률모형과 수식정보를 이용한 와/과 병렬사구 범위결정)

  • Choi, Yong-Seok;Shin, Ji-Ae;Choi, Key-Sun
    • Journal of KIISE:Software and Applications
    • /
    • v.35 no.2
    • /
    • pp.128-136
    • /
    • 2008
  • Recognition of parallel structure at early stage of sentence parsing can reduce the complexity of parsing. In this paper, we propose an unsupervised language-independent probabilistic model for recongition of parallel noun structures. The proposed model is based on the idea of swapping constituents, which replies the properties of symmetry (two or more identical constituents are repeated) and of reversibility (the order of constituents is inter-changeable) in parallel structures. The non-symmetric patterns that cannot be captured by the general symmetry rule are resolved additionally by the modifier information. In particular this paper shows how the proposed model is applied to recognize Korean parallel noun phrases connected by "wa/kwa" particle. Our model is compared with other models including supervised models and performs better on recongition of parallel noun phrases.

Application of The Boundary Element Analysis Software BEASY in Engineering Pratice (공학실무에서의 경계요소해석 소프트웨어 BEASY의 적용)

  • Huh, Young;Cho, Jun-Sang
    • Proceedings of the Computational Structural Engineering Institute Conference
    • /
    • 1994.10a
    • /
    • pp.31-37
    • /
    • 1994
  • BEASY is a soft-ware tool which may be used to solve problems in heat transfer(linear and non-linear, steady state and transient) and linear elastic stress analysis. It is based on the boundary element method. The central part is the analysis module, called BEASY. For pre- and post-processing the BEASY Interactive Modeling System BEASY-IMS can be used. Three examples are devoted to show the capability of BEASY.

  • PDF

Incremental Interpreter based on Action Equations (작용 식 기반 점진 해석기)

  • Han, Jeong-Ran;Lee, Gi-Ho
    • Journal of KIISE:Software and Applications
    • /
    • v.26 no.8
    • /
    • pp.1018-1027
    • /
    • 1999
  • 속성 문법은 언어의 정적인 의미구조를 표현하는 형식적인 표기법으로 동적인 의미구조를 표현하기는 부적절하다. 동적 의미구조를 잘 명세하고 명세된 언어를 구현하기 위해서 기존의 속성 문법을 확장하여 언어 구현에 필요한 동적인 작용들(actions)을 잘 표현해야 한다. 본 논문에서는 속성 문법을 확장하여 정적이고 동적인 의미구조를 잘 표현할 수 있는 새로운 작용 식(action equation)을 제시한다. 제시된 작용 식(action equation)의 동적인 의미 구조로 부터 SIMP 언어의 점진 해석기(incremental interpreter)를 설계하고 구현한다. 점진 해석기는 언어 기반의 프로그래밍 환경에서 수정된 부분만을 번역하여 프로그램의 전체 실행 결과를 얻는 해석기를 의미한다. 본 해석기는 SUN 1000에서 Lex와 Yacc을 사용해서 C 언어로 설계하고 구현하였다. 예제 프로그램을 실행시켰을 때 배정 문이나 IF문의 경우는 매우 효율적이었고 Loop의 경우는 재실행될 필요가 있는 영향받는 명령문들이 적을수록 점진 해석이 더 효율적으로 수행된다.Abstract Attribute grammars are a formal notation which expresses the static semantics of programming languages, but they are not suitable for expressing dynamic semantics. To describe dynamic semantics and implement a specified language, we extend attribute grammars and present new action equations which describe static and dynamic semantics. The incremental interpreter of a SIMP language is designed and implemented from the dynamic semantics of presented action equations. The incremental interpreter is to translate only modified part in the language-based programming environments and have results of whole program.Our interpreter is implemented in C with Lex and Yacc on SUN 1000. When we execute example programs, the incremental evaluation of any assignment and IF statements executes efficiently. But in the case of loop, we execute efficiently when the effected statements to be reexecuted in the loop are of small number.

Development on Location Analysis Model of GIS in Torrential Stream (GIS기법을 이용한 야계사방 입지해석 모델 개발)

  • Kim, Ki-Heung;Jung, Hea-Reyn;Park, Sang-Heyn;Ma, Ho-Seop;Park, Jae-Hyeon
    • Proceedings of the Korea Water Resources Association Conference
    • /
    • 2010.05a
    • /
    • pp.1822-1826
    • /
    • 2010
  • 본 연구의 지리정보시스템(GIS)을 이용한 야계의 입지해석모델 개발은 사방댐 하류 야계에 대한 야계사방사업의 위치 선정, 하도계획 및 구조물 계획 등을 기 구축되어 있는 국가 DB와 강우 강도 산정, 홍수유출해석 및 수리계산 소프트웨어를 연계하여 체계적으로 표준화된 시스템을 구축하는 것이 목표이다. 따라서, 본 연구에서는 강우, 지형 지질 토지이용 자료를 이용하여 홍수유출해석을 통해 기본 홍수량을 산정하고, 홍수량과 수치지형도 및 항공사진으로부터 추출한 야계의 종단, 평면 및 횡단지형정보를 기본자료로 HEC-RAS의 지형자료(geometry data) 및 흐름자료(flow data)를 구축하여 수리계산을 수행하였다. 수리계산 결과를 토대로 종단, 평면, 횡단의 하도계획과 호안, 수제 및 하상유지공 등 구조물 계획 등에 필요한 야계입지해석모델을 개발하고자 하였다. 연구결과 강우, 지형 지질 토지이용, 항공사진 자료 등 국가 DB자료만을 이용하여 야계입지를 해석할 수 있는 시스템을 개발하였으며, 1 : 5000의 수치지형도 및 항공사진으로부터 야계부분에 대한 지형도를 분리하여 1m 간격의 등고선으로 된 수치지형도에서 야계의 종단, 평면 및 횡단지형정보를 기본자료로 수리계산을 위한 HEC-RAS의 지형자료(geometry data)를 구축할 수 있음을 제시하였다. 또한 수리계산 결과를 토대로 최심하상고, 수위, 수심, 유속, 소류력, Froude수 등 종단, 평면, 횡단의 하도계획과 호안, 수제 및 하상유지공 등 야계 구조물 계획 등에 필요한 수리학적 인자를 추출할 수 있었으며, 시험유역에 대한 적용 가능성을 검토한 결과 야계사방사업의 입지선정을 위한 수단으로 활용할 수 있음를 제시하였다.

  • PDF

Development of a 3D FDEM-Based Static-Dynamic Sequential Damage Analysis Method for Optimal Mechanical Demolition Processes for Large-Scale Aging Structures (대형 노후 구조물의 최적 기계식 해체 공정을 위한 3D FDEM 기반 정적-동적 손상 순차 해석 기법 개발)

  • Gyeong-Gyu Kim;Chan-Hwi Shin;Gyeong-Jo Min;Daisuke Fukuda;Kyong-Pil Jang;Tae-Hyeob Song;Sang-Ho Cho
    • Explosives and Blasting
    • /
    • v.42 no.3
    • /
    • pp.9-22
    • /
    • 2024
  • As buildings constructed in the 1980s during a period of rapid urbanization and economic growth have aged, the demand for demolition, especially of reinforced concrete structures, has increased. In large-scale structures such as industrial buildings, a mixed approach utilizing both mechanical demolition and explosive demolition methods is being employed. As the demand for demolition rises, so do safety concerns, making structural stability during demolition a crucial issue. In this study, drones and LiDAR were used to collect actual structural data, which was then used to build a simulation model. The analysis method employed was a combination of the Finite Element Method (FEM) and the Discrete Element Method (DEM), known as the Combined Finite-Discrete Element Method (FDEM), which was used to perform dynamic structural analysis during various demolition phases. The results were compared and analyzed with the commercial software ELS to assess its applicability.

Prediction of the Structural Safety of a Relief Valve Using Metamodel (메타모델을 이용한 압력방출밸브의 구조안전성 예측)

  • Kim, Nam-Hee;Lee, Kwon-Hee
    • Journal of the Korea Academia-Industrial cooperation Society
    • /
    • v.16 no.9
    • /
    • pp.5763-5768
    • /
    • 2015
  • A relief valve is a mechanical element to keep safety by controlling high pressure. Usually, the high pressure is relieved by using the spring force and letting the fluid to flow from another way out of system. When its normal pressure is reached, the relief valve can return to initial state. The relief valve should be designed for smooth operation and should satisfy the structural safety requirement under operating condition. The commercial software ANSYS/WORKBENCH is utilized for flow and structural analysis. Very high pressure may cause structural problem due to severe stress. The study suggests the design satisfying the structural design requirement

Mixed-Flow Pump Impeller-Diffuser Optimization Method by Using CFX and HEEDS (CFX 와 HEEDS 를 이용한 사류펌프 임펠러-디퓨저 최적화방법)

  • Lee, Yong Kab;Park, In Hyung;Shin, Jae Hyok;Kim, Sung;Lee, Kyoung Yong;Choi, Young Seok
    • Transactions of the Korean Society of Mechanical Engineers B
    • /
    • v.39 no.10
    • /
    • pp.831-842
    • /
    • 2015
  • An optimization process was developed to improve mixed-flow pump performance. The optimization process was combined with CFX (a computational fluid dynamics (CFD) code) and HEEDS (an optimization code). CFX is a widely used CFD software for turbo machinery, whereas HEEDS, which uses the SHERPA algorithm, is a newly introduced optimization code. HEEDS can use a large number of optimization variables; thus, it is possible to effectively consider interaction effects. In this paper, an impeller model, which is already optimized with design of experiments (DOE), is used as the base model. The optimization process developed in this paper shows an improved design within an acceptable timeframe.

A Design and Implementation of Quality Evaluation Tool based on the Object Oriented Software metrics (객체 지향 소프트웨어 메트릭스를 근거로 한 품질 평가 도구의 설계 및 구현)

  • 신행렬;최은만
    • Proceedings of the Korean Information Science Society Conference
    • /
    • 1998.10b
    • /
    • pp.460-462
    • /
    • 1998
  • 객체 지향 방법론을 이용한 소프트웨어의 개발은 최근에 대중적인 개념으로 자리를 잡고 있다. 이러한 객체 지향 개념은 전통적인 구조화 개발 방법론과 많은 차이점을 가지고 있다. 따라서 소프트웨어의 품질 특성을 평가하는 메트릭스도 객체 지향 개념에 맞게 재정의되는 연구들이 많이 이루어지고 있다. 이 논문에서는 이러한 메트릭스를 품질 측정 척도의 관점에서 객체 지향의 핵심 개념으로 평가하였다. 그리고 이를 바탕으로 품질 척도로서의 기능을 잘 발휘하는 메트릭스를 선별 적용하고, 적용한 결과를 사용자에게 해석하여주며, 코딩 스타일도 함께 검증하여서 사용자에게 실질적인 도움이 될 수 있도록 도구를 설계 및 구현하였다.

Computer Simulation of Deformation Behavior of the Rubber Diaphragm (고무 다이아프램의 변형거동 전산해석)

  • Cho, Seong-Do-Seong;Kim, Wan-Doo
    • Elastomers and Composites
    • /
    • v.35 no.1
    • /
    • pp.4-11
    • /
    • 2000
  • A rubber diaphragm is a critical element of accumulators. The material of a diaphragm is nitrile rubber so as to recover and adjust the large deformation under external pressure fluctuation. The performance of accumulators is influenced by the deformation behaviors of the diaphragm. A large deformation behavior of the diaphragm has been investigated using the commercial finite element program MARC K7.1. The several elastic moduli have been used in linear analysis and Ogden's coefficients have been used in non-linear analysis. As a result, it has been shown that the deformation behavior with a elastic modulus of $0.3 kg/mm^2$ is similar to the behavior of non-linear analysis. And, the modified diaphragm shape to reduce the stress concentration has been proposed.

  • PDF