• 제목/요약/키워드: Computation program

검색결과 418건 처리시간 0.026초

다중 분산부하 전압강하산정 프로그램 연구 (A Study of the Voltage drops computation program on multi-distributed random loads)

  • 강차녕;권세혁;조성필
    • 한국조명전기설비학회:학술대회논문집
    • /
    • 한국조명전기설비학회 2006년도 춘계학술대회 논문집
    • /
    • pp.37-42
    • /
    • 2006
  • 전선에서 전압강하는 열 손실을 의미한다. 이 열은 절연체의 특성을 변화시켜 절연성능을 저하시키게 되고 나아가 누전, 감전, 정전 및 화재 등의 사고를 일으키는 원인이 되기도 한다. 그러므로 전압강하에 대한 최적화 설계는 전기설비의 안전성과 경제성을 보장하는 중요한 요소가 되고 있다. 이에 저압의 전기설비인 가로등, 빌딩, 지하철역사 등 공공의 안전확보가 요구되는 다중 분산부하계통에서의 전압강하가 전기배선에 미치는 영향을 분석하고, 안전성 및 경제성 확보를 위한 전압강하산정 프로그램 및 최적화 방안을 연구 제시하고자 한다.

  • PDF

표준정규분포의 확률계산 프로그램 개발 (Development of Probability Computation Program for Standard Normal Distribution)

  • 송서일
    • 품질경영학회지
    • /
    • 제25권1호
    • /
    • pp.182-192
    • /
    • 1997
  • The well-known standard normal distribution has been used within the limit of standard variable value of u=3.59. However, the probability values above the limit are not given in the literature. In this study, a probability computation program for standard normal distribution to u=5.99 with the proportional normal distribution a, pp.oximation suggested by Abramowitz and Stegun, Hastings is developed. The new standard normal distribution table developed by the program is presented and will be of help to estimate of probability values for testing and estimation of process mean value, lot acceptable probability, defective percentage of PPM unit of an out-of specification limit, process capability, test power of control charts, probability and statistics.

  • PDF

코드 오프로딩 환경에서 프로그램 분할과 데이터 보호에 대한 연구 (Study on Program Partitioning and Data Protection in Computation Offloading)

  • 이은영;박수희
    • 정보처리학회논문지:소프트웨어 및 데이터공학
    • /
    • 제9권11호
    • /
    • pp.377-386
    • /
    • 2020
  • 모바일 클라우드 컴퓨팅은 클라우드 컴퓨팅 환경에서 클라이언트 기기로 모바일이나 임베디드 디바이스가 사용되는 경우를 말하며, 단말 기기의 뛰어난 이동성과 상대적으로 낮은 연산 자원의 신뢰도를 그 특징으로 한다. 스마트폰과 소형 주변기기의 확산으로 최근 모바일 클라우드 컴퓨팅에 대한 연구가 급증하고 있다. 코드 오프로딩은 무선 네트워크 연결되어 있는 모바일 시스템이 연산 작업의 일부를 보다 빠른 속도를 가진 서버로 옮겨서 진행함으로써 효율을 향상시키는 기법이다. 코드 오프로딩은 모바일 클라우드 환경에서 모바일 디바이스가 가지는 제한된 자원을 극복하는 중요한 기법의 하나로 각광받고 있다. 본 논문에서는 코드 오프로딩의 성능을 좌우하는 요소를 분석하고, 다양한 요소 중에서 프로그램 정적 분할 기법과 데이터 보호에 관련된 최근 연구동향을 요소별로 분석한다. 또한 현재까지 진행되고 있는 다양한 연구와 관련 분야 신기술을 고려한 향후 발전 방향을 논의한다.

GPGPU의 멀티 쓰레드를 활용한 고성능 병렬 LU 분해 프로그램의 구현 (Implementation of high performance parallel LU factorization program for multi-threads on GPGPUs)

  • 신봉희;김영태
    • 인터넷정보학회논문지
    • /
    • 제12권3호
    • /
    • pp.131-137
    • /
    • 2011
  • GPGPU는 원래 그래픽 계산을 위한 프로세서인 GPU를 일반 계산에 활용하여 저전력으로 고성능의 효율을 보이는 신개념의 계산 장치이다. 본 논문에서는 GPGPU에서 계산을 하기 위한 병렬 LU 분해법의 알고리즘을 제안하였다. Nvidia GPGPU에서 프로그램을 실행하기 위한 CUDA 계산 환경에서는 계산하고자 하는 데이터 도메인을 블록으로 나누고 각 블록을 쓰레드들이 동시에 계산을 하는데, 이 때 블록들의 계산 순서는 무작위로 진행이 되기 때문에 블록간의 데이터 의존성을 가지는 LU 분해 프로그램에서는 결과가 정확하지 않게 된다. 본 논문에서는 병렬 LU 분해법에서 블록간의 계산 순서를 인위적으로 정하는 구현 방식을 제안하며 아울러 LU 분해법의 부분 피벗팅을 계산하기 위한 병렬 reduction 알고리즘도 제안한다. 또한 구현된 병렬프로그램의 성능 분석을 통하여 GPGPU의 멀티 쓰레드 기반으로 고성능으로 계산할 수 있는 병렬프로그램의 효율성을 보인다.

GP-GPU의 캐시메모리를 활용하기 위한 병렬 블록 LU 분해 프로그램의 구현 (Implementation of parallel blocked LU decomposition program for utilizing cache memory on GP-GPUs)

  • 김영태;김두한;유명한
    • 인터넷정보학회논문지
    • /
    • 제14권6호
    • /
    • pp.41-47
    • /
    • 2013
  • GP-GPU는 그래픽 처리를 위한 GPU의 다중쓰레드를 일반 수치 계산에 활용하여 초고속으로 계산하는 장치이다. GP-GPU에서는 CPU의 캐시메모리와는 달리 다중쓰레드가 공유하는 공유메모리의 형태로 캐시메모리를 제공하며, 공유메모리는 사용자 프로그램에서 직접 제어할 수 있다. 본 연구에서는 GP-GPU의 캐시메모리를 사용하여 계산 성능을 향상시키기 위한 블록 구조의 병렬 LU 분해 프로그램을 구현하였다. Nvidia CUDA C로 구현된 병렬 블록 LU 분해 프로그램은 동일한 GP-GPU 상에서 일반 LU 분해 프로그램에 비교하여 7~8배 이상의 속도 개선을 보였다.

Functional Privacy-preserving Outsourcing Scheme with Computation Verifiability in Fog Computing

  • Tang, Wenyi;Qin, Bo;Li, Yanan;Wu, Qianhong
    • KSII Transactions on Internet and Information Systems (TIIS)
    • /
    • 제14권1호
    • /
    • pp.281-298
    • /
    • 2020
  • Fog computing has become a popular concept in the application of internet of things (IoT). With the superiority in better service providing, the edge cloud has become an attractive solution to IoT networks. The data outsourcing scheme of IoT devices demands privacy protection as well as computation verification since the lightweight devices not only outsource their data but also their computation. Existing solutions mainly deal with the operations over encrypted data, but cannot support the computation verification in the same time. In this paper, we propose a data outsourcing scheme based on an encrypted database system with linear computation as well as efficient query ability, and enhance the interlayer program in the original system with homomorphic message authenticators so that the system could perform computational verifying. The tools we use to construct our scheme have been proven secure and valid. With our scheme, the system could check if the cloud provides the correct service as the system asks. The experiment also shows that our scheme could be as effective as the original version, and the extra load in time is neglectable.

F1 in Schools 프로그램을 이용한 초등학생 대상 공학 기술 교육에 관한 연구 (Research on Engineering & Technology Education for Elementary School Student by using F1 in Schools Program)

  • 박소라;남현욱
    • 공학교육연구
    • /
    • 제11권1호
    • /
    • pp.85-100
    • /
    • 2008
  • 이 연구의 목적은 초등학교 학생들을 대상으로 한 'F1 in Schools Program'을 개발하여 적용하여 보고 학생, 학부모, 학교의 반응을 조사하여 현장 적용가능성을 평가하고자 하는데 있다. 충청북도 청주시 소재의 W 초등학교 5학년 15명의 어린이를 대상으로 'F1 in Schools Program'(초등학교 학생용 워크북)을 개발한 후 현장 적용 가능성을 평가하기 위해 2007년 1월 22일부터 2월 2일까지 총 60차시에 걸쳐 수업을 진행하고 학생, 학부모, 학교의 반응을 조사하였다. 본 프로그램에서 활용하고 있는 CAD(Computer Aided Design), CFD(Computation Fluid Dynamics), CAM(Computer Aided Manufacturing), CNC Machine의 프로그램은 학생들이 직접 해볼 수 있는 참여와 신기성과 같은 특성으로 흥미를 끌기에 좋은 소재가 되고 있으나 프로그램을 조작하기에 초등학생의 인지 발달 수준 및 공작 능력이 미치지 못하는 것으로 나타났다. 학생, 학부모, 학교의 프로그램에 대한 만족도는 비교적 높았으나 학생의 경우 시간이 부족하다 응답하였고, 학부모와 학교의 경우 프로그램에 대한 이해가 부족함을 알 수 있었다. 학생들은 프로그램 실시 전보다 실시 후에 자동차의 속력과 관계된 과학적 개념이 향상되는 결과를 얻었다.

다단계 프로그램에서 프로그램 생성 단계의 자유변수 제거 (Closed-code-conversion: Transforming Open Code Multi-staged Programs into Closed Ones)

  • 어현준;이광근
    • 한국정보과학회논문지:소프트웨어및응용
    • /
    • 제36권3호
    • /
    • pp.244-251
    • /
    • 2009
  • 다단계 프로그래밍이란 매크로 프로그래밍, 부분 계산(partial evaluation), 실행시간 코드 생성(runtime code generation)등을 포섭하는 일반적인 방법론으로, 계산을 여러 단계로 나누어 각 단계에 주어진 부분 입력을 통해 다음 단계를 전문화(specialize)함으로써 효율적인 계산을 수행하게 해 준다. 다단계 프로그램은 일반적인 계산 외에 코드(다음 단계의 프로그램)를 생성, 조림 및 실행시킬 수 있다. 본 논문은 코드에 자유변수를 허용하는 다단계 프로그램을 코드에 자유변수가 없는 다단계 프로그램으로 변환하는 방법을 제안한다. 코드에 존재하는 자유변수는 동적으로 바인딩(binding)되기 때문에 이를 구현하기 어려운 문제가 있다. 자유변수가 있는 코드는 환경을 입력으로 받는 함수의 코드로 변환하고, 필요한 환경은 코드를 조립하는 시점에 넘겨줌으로써 코드에서 자유변수를 제거할 수 있다. 이렇게 자유변수가 제거된 다단계 프로그램은 Davies와 Pfenning이 제안한 방법에 의해 단계가 없는 람다 계산(lambda-calculus)으로 변환된 후 람다 계산법에 의해 실행되어질 수 있다.

Wire-Grid 기법을 이용한 안테나특성 예측 (Prediction of antenna characteristics using Wire-Grid method)

  • 조웅희;간종만;이응주
    • 한국전자파학회지:전자파기술
    • /
    • 제3권2호
    • /
    • pp.10-15
    • /
    • 1992
  • The electromagentic characteristics of antennas in the complicated metallic structures were analyzed using the electric field integral equation. The accurancy of computer program was confirmed by comparing the computation result with NELC brass model study. And computation result of antenna characteristics in metallic structures was in good argreement with our measuring result.

  • PDF

광속전달법에서의 효율적인 Form Factor 계산방법에 관한 연구 (The Study on form Factor Computation Methods in the Luminous Flux Transfer Method)

  • 최안섭
    • 한국조명전기설비학회:학술대회논문집
    • /
    • 한국조명전기설비학회 2001년도 학술대회논문집
    • /
    • pp.17-22
    • /
    • 2001
  • This paper gave a review of form factor computations in the luminous flux transfer method and practical application of DiLaura's recently developed form factor computation. A systematic analysis of how the results of a contour integration solution differ from those of existing numeric solutions were undertaken with a developed computer simulation program. Various situations between sending and receiving surfaces were considered, including the facing, size, and distance between surfaces.

  • PDF